/* Zero-Waste Wedding Planning Service - Main Styles */

/* CSS Variables for Color Palette */
:root {
  --primary-sage: #87A96B;
  --primary-cream: #F5F2E8;
  --primary-terracotta: #D4A574;
  --primary-forest: #2F4F2F;
  --primary-blush: #E8D5C4;
  
  /* Light/Dark Shades */
  --sage-light: #A3C585;
  --sage-dark: #6B8A52;
  --cream-light: #FEFCF6;
  --cream-dark: #E8E4D8;
  --terracotta-light: #E1B88A;
  --terracotta-dark: #C19660;
  --forest-light: #3D6B3D;
  --forest-dark: #1F3A1F;
  --blush-light: #F0E2D6;
  --blush-dark: #D9C5B0;
}

/* Base Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--forest-dark);
  background-color: var(--cream-light);
  line-height: 1.6;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest-dark);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest-dark);
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--forest-dark);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sage-dark);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--sage-dark);
}

p {
  font-size: 1rem;
  color: var(--forest-light);
}

/* Header Styles */
.navbar {
  background-color: var(--cream-light);
  border-bottom: 1px solid var(--sage-light);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--forest-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--sage-dark);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--blush-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-decorative-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--sage-light);
  border-radius: 50%;
  opacity: 0.1;
  top: 20%;
  right: 10%;
  z-index: 1;
}

.hero-decorative-shape::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--terracotta-light);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  opacity: 0.8;
}

/* About Section */
.about-section {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.about-feature-card {
  background: white;
  border: 1px solid var(--sage-light);
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(47, 79, 47, 0.1);
}

.about-feature-icon {
  color: var(--sage-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--blush-light);
  padding: 5rem 0;
}

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-image {
  height: 200px;
  background: var(--sage-light);
  position: relative;
  flex-shrink: 0;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card .p-4 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h4 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-price {
  background: var(--terracotta-dark);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  color: var(--terracotta-dark);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--sage-light);
  padding: 5rem 0;
}

.price-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  position: relative;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.price-card:hover {
  border-color: var(--terracotta-dark);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

/* Team Section */
.team-section {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--sage-light);
  margin: 0 auto 1.5rem;
  border: 4px solid var(--cream-dark);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--blush-light);
  padding: 5rem 0;
}

.review-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--sage-dark);
}

.review-author {
  font-weight: 600;
  color: var(--forest-dark);
  margin-top: 1rem;
}

/* Case Study Section */
.casestudy-section {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.casestudy-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--sage-light);
}

/* Process Section */
.process-section {
  background-color: var(--forest-light);
  color: white;
  padding: 5rem 0;
}

.process-step {
  background: white;
  color: var(--forest-dark);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.process-number {
  background: var(--terracotta-dark);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.timeline-item {
  padding: 1.5rem;
  border-left: 3px solid var(--sage-dark);
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 1.5rem;
  width: 12px;
  height: 12px;
  background: var(--terracotta-dark);
  border-radius: 50%;
}

/* Career Section */
.career-section {
  background-color: var(--blush-light);
  padding: 5rem 0;
}

.career-item {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--sage-light);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--sage-light);
  padding: 5rem 0;
}

.coreinfo-item {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.contact-form {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  border: 1px solid var(--sage-light);
}

.form-control {
  border: 2px solid var(--cream-dark);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 0.2rem rgba(135, 169, 107, 0.25);
}

.btn-primary {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--forest-dark);
  border-color: var(--forest-dark);
  transform: translateY(-2px);
}

.contact-info-item {
  padding: 1rem;
  text-align: center;
}

.contact-info-icon {
  color: var(--sage-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--blush-light);
  padding: 5rem 0;
}

.blog-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
  border: 1px solid var(--cream-dark);
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background: var(--sage-light);
}

.blog-content {
  padding: 2rem;
}

.blog-link {
  color: var(--sage-dark);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--forest-dark);
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  background-color: var(--cream-light);
  padding: 5rem 0;
}

.faq-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--sage-light);
}

.faq-question {
  color: var(--forest-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--forest-light);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--sage-light);
  padding: 5rem 0;
}

.gallery-item {
  margin-bottom: 1.5rem;
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.75rem;
  background: var(--cream-dark);
}

/* Footer */
.footer {
  background-color: var(--forest-dark);
  color: var(--cream-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--sage-light);
  margin-bottom: 1.5rem;
}

.footer a {
  color: var(--cream-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--sage-light);
}

.footer-bottom {
  border-top: 1px solid var(--forest-light);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--cream-dark);
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--cream-dark);
  padding: 1rem 0;
}

.breadcrumb-image {
  height: 30px;
  width: auto;
}

/* Utility Classes */
.section-padding {
  padding: 5rem 0;
}

.text-sage {
  color: var(--sage-dark);
}

.text-forest {
  color: var(--forest-dark);
}

.bg-sage {
  background-color: var(--sage-light);
}

.bg-cream {
  background-color: var(--cream-light);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.hero-section h1 {
    padding-top: 175px;
}


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
