/* Dog Daycare Template - Main CSS */

/* Color Palette Variables */
:root {
  /* Primary Colors */
  --primary-orange: #FF8A65;
  --primary-green: #81C784;
  --primary-blue: #64B5F6;
  --primary-purple: #BA68C8;
  --primary-coral: #F06292;
  
  /* Light Shades */
  --light-orange: #FFB74D;
  --light-green: #A5D6A7;
  --light-blue: #90CAF9;
  --light-purple: #CE93D8;
  --light-coral: #F48FB1;
  
  /* Dark Shades */
  --dark-orange: #FF5722;
  --dark-green: #4CAF50;
  --dark-blue: #2196F3;
  --dark-purple: #9C27B0;
  --dark-coral: #E91E63;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #2C2C2C;
  --gray-light: #F5F5F5;
  --gray-medium: #9E9E9E;
  --gray-dark: #424242;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--primary-coral));
  --gradient-secondary: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  --gradient-hero: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.2rem;
  color: var(--dark-purple);
}

h2 {
  font-size: 1.9rem;
  color: var(--dark-blue);
}

h3 {
  font-size: 1.6rem;
  color: var(--dark-green);
}

h4 {
  font-size: 1.3rem;
  color: var(--dark-orange);
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

.lead {
  font-size: 1.1rem;
  font-weight: 300;
}

/* Header & Navigation */
.navbar {
  background: var(--gradient-primary) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.4rem !important;
  font-weight: 700;
  color: var(--white) !important;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--light-orange) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../INV_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-decorative:nth-child(1) {
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.hero-decorative:nth-child(2) {
  bottom: 20%;
  left: 5%;
  animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--gray-medium);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Services */
.services-section {
  background: var(--gray-light);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin: 1rem 0;
}

/* Team */
.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-green);
}

/* Testimonials */
.testimonials-section {
  background: var(--gradient-secondary);
  color: var(--white);
}

.testimonial-item {
  text-align: center;
  padding: 2rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--light-orange);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* FAQ */
.faq-section {
  background: var(--white);
}

.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--light-orange);
  color: var(--white);
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--primary-orange);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  background: var(--gray-light);
}

.faq-answer.active {
  display: block;
}

/* Contact Form */
.contact-section {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  color: var(--black);
}

.form-control {
  border: 2px solid var(--gray-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 138, 101, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-orange);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--primary-orange);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Breadcrumbs */
.breadcrumb {
  background: var(--gray-light);
  border-radius: 10px;
  padding: 1rem;
  margin: 2rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.rounded-custom {
  border-radius: 20px;
}

/* Space Page Specific */
#space {
  min-height: 80vh;
  background: var(--gray-light);
  border-radius: 20px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gray-medium);
} 