/* Eco-Friendly Event Décor Rental - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --eco-sage: #87a96b;
  --eco-cream: #f8f6f0;
  --eco-terracotta: #d4a574;
  --eco-lavender: #b5a7d6;
  --eco-mint: #a8d8b9;
  
  /* Light/Dark Shades */
  --eco-sage-light: #b4c79b;
  --eco-sage-dark: #5a7147;
  --eco-cream-light: #fcfbf8;
  --eco-cream-dark: #e8e4dc;
  --eco-terracotta-light: #e6c09a;
  --eco-terracotta-dark: #b8834e;
  --eco-lavender-light: #d2c8e8;
  --eco-lavender-dark: #9488b8;
  --eco-mint-light: #c7e5d2;
  --eco-mint-dark: #7cb590;
  
  /* Conservative Typography */
  --font-size-base: 0.95rem;
  --font-size-small: 0.85rem;
  --font-size-large: 1.1rem;
  --line-height-base: 1.6;
}

/* Body and Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: #333;
  background-color: var(--eco-cream);
    overflow-x: hidden;
}

/* Conservative Heading Sizes */
h1 { font-size: 2rem; font-weight: 600; }
h2 { font-size: 1.6rem; font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }
h5 { font-size: 1rem; font-weight: 500; }
h6 { font-size: 0.95rem; font-weight: 500; }

/* Navbar Brand Conservative Size */
.navbar-brand {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: var(--eco-sage-dark);
}

/* Section Styling */
section {
  padding: 4rem 0;
}

#header {
  background-color: var(--eco-cream);
  border-bottom: 1px solid var(--eco-sage-light);
}

#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--eco-cream) 0%, var(--eco-mint-light) 100%);
  display: flex;
  align-items: center;
}

#about {
  background-color: var(--eco-sage-light);
  color: #333;
}

#services {
  background-color: var(--eco-cream);
}

#features {
  background-color: var(--eco-lavender-light);
}

#priceplan {
  background-color: var(--eco-cream);
}

#team {
  background-color: var(--eco-mint-light);
}

#reviews {
  background-color: var(--eco-cream);
}

#casestudy {
  background-color: var(--eco-terracotta-light);
}

#process {
  background-color: var(--eco-cream);
}

#timeline {
  background-color: var(--eco-lavender-light);
}

#career {
  background-color: var(--eco-cream);
}

#coreinfo {
  background-color: var(--eco-mint-light);
}

#contacts {
  background-color: var(--eco-cream);
}

#blog {
  background-color: var(--eco-sage-light);
}

#faq {
  background-color: var(--eco-cream);
}

#gallery {
  background-color: var(--eco-lavender-light);
}

#footer {
  background-color: var(--eco-sage-dark);
  color: var(--eco-cream);
}

/* Cards */
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
}

/* Service Cards */
.service-card {
  background: white;
  padding: 2rem;
  text-align: center;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--eco-sage-dark);
}

/* Team Cards */
.team-card {
  background: white;
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--eco-sage-light);
}

/* Review Cards */
.review-card {
  background: white;
  padding: 2rem;
  border-left: 4px solid var(--eco-sage);
}

/* FAQ Cards */
.faq-card {
  background: white;
  margin-bottom: 1rem;
  padding: 1.5rem;
}

/* Form Styling */
.form-control {
  border: 2px solid var(--eco-sage-light);
  border-radius: 8px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--eco-sage);
  box-shadow: 0 0 0 0.2rem rgba(135, 169, 107, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--eco-sage);
  border-color: var(--eco-sage);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--eco-sage-dark);
  border-color: var(--eco-sage-dark);
}

.btn-outline-primary {
  color: var(--eco-sage);
  border-color: var(--eco-sage);
}

.btn-outline-primary:hover {
  background-color: var(--eco-sage);
  border-color: var(--eco-sage);
}

/* Hero Decorative Elements */
.hero-decoration {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.hero-blob-1 {
  top: 10%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--eco-sage);
  border-radius: 50% 30% 70% 40%;
}

.hero-blob-2 {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--eco-terracotta);
  border-radius: 40% 60% 30% 70%;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  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 {
  padding: 3rem 0 2rem;
}

#footer h5 {
  color: var(--eco-cream);
  margin-bottom: 1rem;
}

#footer p, #footer a {
  color: var(--eco-cream-dark);
}

#footer a:hover {
  color: var(--eco-cream);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .card:hover {
    transform: none;
  }
  
  .gallery-item:hover img {
    transform: none;
  }
}

/* Text Efficiency */
.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: var(--font-size-large);
  color: #666;
  margin-bottom: 1rem;
}

.section-description {
  font-size: var(--font-size-base);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Price Display */
.price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--eco-sage-dark);
}

.price-period {
  font-size: 0.9rem;
  color: #666;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--eco-sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
