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

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-sage: #8db6a4;
  --primary-sage-light: #a8c9b8;
  --primary-sage-dark: #6b9485;
  
  --secondary-peach: #f4c2a1;
  --secondary-peach-light: #f7d4b8;
  --secondary-peach-dark: #e5a57b;
  
  --accent-lavender: #b8a8d9;
  --accent-lavender-light: #ccc0e3;
  --accent-lavender-dark: #9b87c7;
  
  --neutral-cream: #f8f5f0;
  --neutral-cream-light: #fbf9f6;
  --neutral-cream-dark: #ede8e0;
  
  --text-charcoal: #2d3748;
  --text-charcoal-light: #4a5568;
  --text-charcoal-dark: #1a202c;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-max-width: 1200px;
}

/* Base Styles */
body {
  font-family: var(--font-primary);
  color: var(--text-charcoal);
  background-color: var(--neutral-cream);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--text-charcoal-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

.navbar-brand {
  font-size: 1.25rem !important;
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--primary-sage-dark);
}

/* Section Spacing */
section {
  padding: var(--section-padding);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--neutral-cream) 0%, var(--neutral-cream-light) 100%);
  display: flex;
  align-items: center;
}

.hero-decoration {
  position: absolute;
  background: var(--primary-sage-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-decoration:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
}

.hero-decoration:nth-child(2) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
}

/* About Section */
.about-section {
  background-color: var(--neutral-cream-light);
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 2px solid var(--primary-sage-light);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

/* Services Section */
.services-section {
  background-color: white;
}

.service-card {
  background: var(--neutral-cream-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--secondary-peach-light);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--secondary-peach);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-sage-dark);
  margin-top: 1rem;
}

/* Features Section */
.features-section {
  background-color: var(--neutral-cream-light);
}

/* Price Plan Section */
.priceplan-section {
  background-color: white;
}

.price-card {
  background: var(--neutral-cream-light);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--accent-lavender-light);
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--accent-lavender);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-sage-dark);
  display: block;
}

/* Team Section */
.team-section {
  background-color: var(--neutral-cream-light);
}

.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--secondary-peach-light);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-sage-light);
}

/* Reviews Section */
.reviews-section {
  background-color: white;
}

.review-card {
  background: var(--neutral-cream-light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-sage);
}

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

.case-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--accent-lavender-light);
}

/* Process Section */
.process-section {
  background-color: white;
}

.process-step {
  background: var(--neutral-cream-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--secondary-peach-light);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

/* Timeline Section */
.timeline-section {
  background-color: var(--neutral-cream-light);
}

.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent-lavender);
}

/* Career Section */
.career-section {
  background-color: white;
}

.career-card {
  background: var(--neutral-cream-light);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--primary-sage-light);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--neutral-cream-light);
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--secondary-peach-light);
}

/* Contact Section */
.contact-section {
  background-color: white;
}

.contact-form {
  background: var(--neutral-cream-light);
  border-radius: 12px;
  padding: 2.5rem;
  border: 2px solid var(--primary-sage-light);
}

.form-control {
  border: 2px solid var(--neutral-cream-dark);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(141, 182, 164, 0.25);
}

.btn-primary {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--primary-sage-dark);
  border-color: var(--primary-sage-dark);
}

/* Blog Section */
.blog-section {
  background-color: var(--neutral-cream-light);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--accent-lavender-light);
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.faq-card {
  background: var(--neutral-cream-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
  border: 2px solid var(--primary-sage-light);
}

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

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

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

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

.footer a {
  color: var(--neutral-cream);
  text-decoration: none;
}

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

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-sage) !important;
}

.bg-primary-custom {
  background-color: var(--primary-sage) !important;
}

.border-primary-custom {
  border-color: var(--primary-sage) !important;
}

/* Animation Classes */
[data-sal] {
  transition-duration: 0.6s;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  [data-sal] {
    transition: none !important;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--neutral-cream-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-sage);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-sage-dark);
}

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


/* 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;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    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;
    }
}
