/* Zero-Waste Party Supplies Rental - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-green: #7fb069;
  --primary-green-light: #a8d5a8;
  --primary-green-dark: #5a8a4a;
  
  --secondary-cream: #f7f3e9;
  --secondary-cream-light: #faf8f2;
  --secondary-cream-dark: #e8e0d1;
  
  --accent-coral: #ff8a80;
  --accent-coral-light: #ffb3a7;
  --accent-coral-dark: #cc6e66;
  
  --neutral-sage: #9caf88;
  --neutral-sage-light: #b8c9a8;
  --neutral-sage-dark: #7a8a68;
  
  --earth-brown: #8d6e63;
  --earth-brown-light: #a68a7a;
  --earth-brown-dark: #6d5447;
  
  /* Typography */
  --font-size-base: 0.95rem;
  --font-size-small: 0.85rem;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.8rem;
  --font-size-h3: 1.4rem;
  --font-size-h4: 1.2rem;
  --font-size-navbar-brand: 1.1rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --card-border-radius: 12px;
}

/* Global Typography */
body {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--earth-brown-dark);
  background-color: var(--secondary-cream);
    overflow-x: hidden;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  color: var(--primary-green-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 500;
  color: var(--primary-green);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--neutral-sage-dark);
  margin-bottom: 0.6rem;
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
  color: var(--earth-brown);
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--earth-brown-dark);
}

.lead {
  font-size: 1.1rem;
  color: var(--neutral-sage-dark);
}

/* Navbar Styles */
.navbar-brand {
  font-size: var(--font-size-navbar-brand);
  font-weight: 600;
  color: var(--primary-green-dark);
}

.navbar {
  background-color: var(--secondary-cream-light);
  border-bottom: 1px solid var(--primary-green-light);
  padding: 0.8rem 0;
}

.navbar-nav .nav-link {
  color: var(--earth-brown);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

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

.hero-content {
  z-index: 2;
    padding-top: 225px;
}

.hero-image {
  position: relative;
}

.decorative-blob {
  position: absolute;
  background: var(--accent-coral-light);
  border-radius: 50% 30% 70% 40%;
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -30px;
}

.blob-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -20px;
  background: var(--neutral-sage-light);
}

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

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--neutral-sage-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--earth-brown);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Card Styles */
.custom-card {
  border: none;
  border-radius: var(--card-border-radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
  overflow: hidden;
}

.custom-card:hover {
  /* Transform disabled */
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--primary-green-dark);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.card-text {
  color: var(--earth-brown);
  font-size: var(--font-size-small);
}

/* Service Cards */
.service-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-coral);
  margin-top: 1rem;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem 1rem;
  background-color: var(--secondary-cream-light);
  border-radius: var(--card-border-radius);
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Price Plan Cards */
.price-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: white;
  position: relative;
}

.price-card.featured {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--secondary-cream) 100%);
  transform: scale(1.05);
  z-index: 2;
}

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

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

.price-features li {
  padding: 0.3rem 0;
  color: var(--earth-brown);
}

.price-features li:before {
  content: "✓";
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Team Cards */
.team-card {
  text-align: center;
  background-color: white;
  border-radius: var(--card-border-radius);
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  color: var(--primary-green-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--neutral-sage-dark);
  font-size: var(--font-size-small);
}

/* Review Cards */
.review-card {
  background-color: white;
  border-radius: var(--card-border-radius);
  padding: 2rem;
  height: 100%;
  position: relative;
}

.review-text {
  font-style: italic;
  color: var(--earth-brown);
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-green-dark);
}

.review-stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

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

/* FAQ Cards */
.faq-card {
  background-color: white;
  border-radius: var(--card-border-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary-green);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-green-dark);
  margin-bottom: 0.8rem;
}

.faq-answer {
  color: var(--earth-brown);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background-color: white;
  border-radius: var(--card-border-radius);
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-control {
  border: 2px solid var(--primary-green-light);
  border-radius: 8px;
  padding: 0.8rem;
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(127, 176, 105, 0.25);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  /* Transform disabled */
}

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-outline-primary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

/* Gallery */
.gallery-item {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

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

.gallery-item:hover img {
  /* Transform disabled */
}

/* Footer */
#footer {
  background-color: #3d2d20; /* Darker brown for better contrast */
  color: #ffffff; /* Pure white for maximum readability */
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--accent-coral-light); /* Brighter coral for better visibility */
  font-weight: 700; /* Bolder text */
  margin-bottom: 1rem;
  font-size: 1.2rem; /* Slightly larger for better visibility */
}

.footer-link {
  color: #ffffff; /* Pure white for better contrast */
  text-decoration: underline; /* Added underline for better visibility */
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent-coral); /* Using coral for better hover state visibility */
  text-decoration: underline;
  font-weight: 500;
}

#site-copyright {
  color: #ffffff; /* Pure white for better contrast */
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #ffffff; /* White border for better visibility */
  margin-top: 2rem;
}

/* Utility Classes */
.text-eco {
  color: var(--primary-green);
}

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

.bg-eco {
  background-color: var(--primary-green-light);
}

/* Disable all animations as requested */
* {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

/* No-animations class */
.no-animations * {
  animation: none !important;
  transition: none !important;
  transform: none !important;
}

/* Conservative spacing adjustments */
.mb-custom {
  margin-bottom: 2rem;
}

.mt-custom {
  margin-top: 2rem;
}

/* Image responsiveness */
img {
  max-width: 100%;
  height: auto;
}

/* Custom spacing for sections */
.py-section {
  padding: 4rem 0;
}

.py-section-sm {
  padding: 2.5rem 0;
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    /* Transform disabled */
}

.social-link:hover {
    /* Transform disabled */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

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

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
