/* Zero-Waste Refill Station Kiosks Template - Main CSS */
/* Bootstrap 5 Integration - No Overrides */

:root {
  /* Primary Color Palette - Eco-Friendly Theme */
  --primary-green: #2D5A27;
  --secondary-green: #4A7C59;
  --accent-mint: #A8E6CF;
  --warm-beige: #F7F3E9;
  --earth-brown: #8B4513;
  
  /* Light/Dark Shades */
  --light-green: #E8F5E8;
  --dark-green: #1A3518;
  --light-mint: #D4F1E8;
  --dark-mint: #7BC4A1;
  --light-beige: #FEFCF7;
  --dark-beige: #E8E0D1;
  
  /* Additional Eco Colors */
  --ocean-blue: #4A90B8;
  --sunshine-yellow: #F4D03F;
  
  /* Typography */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --element-margin: 2rem;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-green);
  background-color: var(--light-beige);
}

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

/* Conservative Typography */
h1 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-semibold);
  color: var(--secondary-green);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-normal);
  color: var(--secondary-green);
  margin-bottom: 0.5rem;
}

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

.lead {
  font-size: 1.125rem;
  color: var(--secondary-green);
}

/* Header Styles */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
}

.navbar-nav .nav-link {
  color: var(--secondary-green);
  font-weight: var(--font-weight-normal);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-mint);
}

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

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

.hero-image {
  position: relative;
}

/* Decorative Shapes */
.hero-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--accent-mint);
  border-radius: 50%;
  top: 10%;
  right: 10%;
  opacity: 0.3;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: var(--sunshine-yellow);
  border-radius: 50%;
  bottom: 20%;
  left: 15%;
  opacity: 0.4;
  z-index: 1;
}

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

.section-light {
  background-color: var(--light-beige);
}

.section-mint {
  background-color: var(--light-mint);
}

.section-green {
  background-color: var(--light-green);
}

/* About Section */
.about-section {
  background-color: var(--warm-beige);
}

.feature-card {
  background: white;
  border: none;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--accent-mint);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(45, 90, 39, 0.15);
}

/* Services Section */
.services-section {
  background-color: var(--light-green);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
  border: 2px solid var(--light-mint);
}

.service-card:hover {
  transform: scale(1.05);
  border-color: var(--accent-mint);
}

.service-image {
  width: 100%;
  height: 200px;
  background-color: var(--light-mint);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-green);
  font-size: 3rem;
}

.price-tag {
  background-color: var(--primary-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: var(--font-weight-bold);
  font-size: 1.125rem;
  display: inline-block;
  margin-top: 1rem;
}

/* Team Section */
.team-section {
  background-color: var(--warm-beige);
}

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-photo {
  width: 100%;
  height: 250px;
  background-color: var(--light-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-green);
  font-size: 4rem;
}

.team-info {
  padding: 1.5rem;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-mint);
}

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

/* Process Section */
.process-section {
  background-color: var(--light-green);
}

.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  border: 2px solid var(--accent-mint);
}

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

/* FAQ Section */
.faq-section {
  background-color: var(--warm-beige);
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--ocean-blue);
}

.faq-question {
  font-weight: var(--font-weight-semibold);
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--secondary-green);
  margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--light-beige);
  padding: var(--section-padding);
}

.gallery-item {
  background-color: var(--light-mint);
  border-radius: 10px;
  height: 250px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-green);
  font-size: 2rem;
}

/* Contact Form */
.contact-section {
  background-color: var(--light-green);
}

.form-control {
  border: 2px solid var(--light-mint);
  border-radius: 8px;
  padding: 0.75rem;
  background-color: white;
}

.form-control:focus {
  border-color: var(--accent-mint);
  box-shadow: 0 0 0 0.2rem rgba(168, 230, 207, 0.25);
}

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

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

/* Footer */
.footer {
  background-color: var(--primary-green);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--accent-mint);
  margin-bottom: 1rem;
}

.footer p {
  color: var(--light-mint);
}

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

.footer a:hover {
  color: var(--accent-mint);
}

/* Blog Section */
.blog-section {
  background-color: var(--warm-beige);
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
  border: 2px solid var(--light-mint);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-mint);
}

.blog-image {
  width: 100%;
  height: 200px;
  background-color: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-green);
  font-size: 2rem;
}

.blog-content {
  padding: 1.5rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-mint);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  border: 2px solid var(--accent-mint);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: scale(1.02);
  border-color: var(--primary-green);
}

.price-header {
  border-bottom: 2px solid var(--light-mint);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-green);
}

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

.text-mint {
  color: var(--accent-mint);
}

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section::before,
  .hero-section::after {
    display: none;
  }
  
  :root {
    --section-padding: 3rem 0;
  }
}


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