@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.4.0/css/all.min.css');
@import url('https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css');
@import url('https://cdn.jsdelivr.net/npm/lightbox2@2.11.4/dist/css/lightbox.min.css');

/* Cottagecore Color Palette */
:root {
  --sage-green: #a2b98f;
  --dusty-rose: #d48a61;
  --cream-white: #eae8de;
  --terracotta: #c88361;
  --lavender: #a990bd;
  
  /* Light shades */
  --sage-green-light: #cad6c1;
  --dusty-rose-light: #e9c9a5;
  --cream-white-light: #FBFAF6;
  --terracotta-light: #eca295;
  --lavender-light: #c9b4dd;
  
  /* Dark shades */
  --sage-green-dark: #859b71;
  --dusty-rose-dark: #a77b58;
  --cream-white-dark: #e5e4d0;
  --terracotta-dark: #ba6f54;
  --lavender-dark: #726486;
  
  /* Additional colors */
  --brown: #73472d;
  --brown-light: #9c6054;
  --brown-dark: #572c20;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --line-height-base: 1.6;
}

/* Base Typography */
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--brown-dark);
  background-color: var(--cream-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  color: var(--sage-green-dark);
  font-weight: 600;
}

h1 { font-size: 2.02rem; }
h2 { font-size: 1.77rem; }
h3 { font-size: 1.52rem; }
h4 { font-size: 1.37rem; }
h5 { font-size: 1.37rem; }
h6 { font-size: 1.09rem; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--cream-white) 0%, var(--sage-green-light) 100%);
  border-bottom: 3px solid var(--dusty-rose-light);
  box-shadow: 0 2px 13px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.52rem !important;
  font-weight: 700;
  color: var(--sage-green-dark) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--brown) !important;
  font-weight: 500;
  padding: 0.75rem 1rem !important;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--terracotta) !important;
  background-color: var(--cream-white-light);
  border-radius: 6px;
}

/* Hero Section */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sage-green-light) 0%, var(--dusty-rose-light) 50%, var(--lavender-light) 100%);
  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('../images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-decorative-shape {
  position: absolute;
  background: var(--cream-white);
  opacity: 0.7;
  border-radius: 50%;
}

.shape-1 { width: 200px; height: 200px; top: 10%; right: 10%; }
.shape-2 { width: 150px; height: 150px; bottom: 20%; left: 5%; }

/* Sections */
.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background-color: var(--cream-white-light);
}

.section-title {
  color: var(--sage-green-dark);
  font-size: 2.02rem;
  margin-bottom: 1.14rem;
}

.section-subtitle {
  color: var(--dusty-rose);
  font-size: 1.37rem;
  margin-bottom: 1.59rem;
}

.section-description {
  color: var(--brown);
  font-size: var(--font-size-lg);
  margin-bottom: 3.20rem;
}

/* Service Cards */
.service-card {
  background: var(--cream-white);
  border: 2px solid var(--sage-green-light);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 7px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 9px 25px rgba(0,0,0,0.15);
  border-color: var(--terracotta);
}

.service-price {
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.25rem 0;
  color: var(--brown);
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--sage-green);
  margin-right: 0.5rem;
}

/* Team Cards */
.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--dusty-rose-light);
  margin-bottom: 1.14rem;
}

/* Testimonials */
.testimonial-card {
  background: var(--cream-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 11px 15px rgba(0,0,0,0.1);
  border-left: 6px solid var(--lavender);
}

/* Blog Cards */
.blog-card {
  background: var(--cream-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 13px 25px rgba(0,0,0,0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

/* Contact Form */
.contact-form {
  background: var(--cream-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 2px solid var(--sage-green-light);
}

.form-control {
  border: 2px solid var(--sage-green-light);
  border-radius: 15px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 0.2rem rgba(180, 124, 100, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--terracotta) 100%);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--dusty-rose) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Price Plan Cards */
.price-plan-card {
  background: var(--cream-white);
  border: 2px solid var(--sage-green-light);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.price-plan-card:hover {
  transform: translateY(-5px);
  border-color: var(--lavender);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.price-plan-card.featured {
  border-color: var(--terracotta);
  transform: scale(1.05);
}

.price-plan-price {
  font-size: 2.57rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: 1rem 0;
}

/* FAQ */
.faq-item {
  background: var(--cream-white);
  border: 1px solid var(--sage-green-light);
  border-radius: 10px;
  margin-bottom: 1.14rem;
}

.faq-question {
  background: var(--sage-green-light);
  color: var(--brown-dark);
  border: none;
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: var(--dusty-rose-light);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--brown);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery */
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-icon {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--dusty-rose) 100%);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.02rem;
}

/* Timeline */
.timeline-item {
  border-left: 3px solid var(--dusty-rose);
  padding-left: 2rem;
  margin-bottom: 2.06rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 15px;
  height: 15px;
  background: var(--terracotta);
  border-radius: 50%;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--sage-green-dark) 0%, var(--brown) 100%);
  color: var(--cream-white);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--dusty-rose-light);
  margin-bottom: 1.14rem;
}

.footer a {
  color: var(--cream-white-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--dusty-rose-light);
}

.footer-copyright {
  border-top: 1px solid var(--sage-green);
  padding-top: 1.16rem;
  margin-top: 2.05rem;
  text-align: center;
  color: var(--cream-white-light);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
  padding-top: 50px;
    min-height: 70vh;
    text-align: center;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero-decorative-shape {
    display: none;
  }
  
  h1 { font-size: 1.77rem; }
  h2 { font-size: 1.52rem; }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .price-plan-card.featured {
    transform: none;
  }
}

/* Swiper customizations */
.swiper-pagination-bullet {
  background: var(--dusty-rose) !important;
}

.swiper-pagination-bullet-active {
  background: var(--terracotta) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--sage-green-dark) !important;
}

/* Additional utility classes */
.text-sage { color: var(--sage-green-dark); }
.text-dusty { color: var(--dusty-rose); }
.text-terracotta { color: var(--terracotta); }
.text-lavender { color: var(--lavender); }

.bg-sage { background-color: var(--sage-green-light); }
.bg-dusty { background-color: var(--dusty-rose-light); }
.bg-cream { background-color: var(--cream-white); }

.border-sage { border-color: var(--sage-green-light); }
.border-dusty { border-color: var(--dusty-rose-light); } 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
