/* ==========================================================================
   Eco-Conscious Event Swag Rental Platform - Main CSS
   ========================================================================== */

/* Color Variables - Eco-Conscious High Contrast Pastel Palette */
:root {
  /* Primary Colors */
  --eco-forest: #2b4c1f;
  --eco-sage: #89b267;
  --eco-mint: #8edebe;
  --eco-earth: #93764d;
  --eco-sky: #8cbbd3;
  
  /* Light Shades */
  --eco-forest-light: #407333;
  --eco-sage-light: #9ec679;
  --eco-mint-light: #d2f2df;
  --eco-earth-light: #a08365;
  --eco-sky-light: #bbe7ff;
  
  /* Dark Shades */
  --eco-forest-dark: #122b14;
  --eco-sage-dark: #5f7b4d;
  --eco-mint-dark: #6cc089;
  --eco-earth-dark: #746241;
  --eco-sky-dark: #59b3d0;
  
  /* Gradients */
  --eco-primary-gradient: linear-gradient(135deg, var(--eco-forest), var(--eco-sage));
  --eco-secondary-gradient: linear-gradient(135deg, var(--eco-mint), var(--eco-sky));
  --eco-accent-gradient: linear-gradient(135deg, var(--eco-earth), var(--eco-mint));
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-max-width: 1200px;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--eco-forest-dark);
  background-color: #fafafa;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
  color: var(--eco-forest);
}

h1 {
  font-size: 2.59rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.62rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--eco-forest-dark);
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(13px);
  box-shadow: 0 3px 213px rgba(41, 81, 40, 0.10);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.64rem;
  font-weight: 700;
  color: var(--eco-forest);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--eco-forest);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--eco-sage);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--eco-primary-gradient);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../DIG_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  background-color: white;
  padding: 24px;
  color: white;
  text-shadow: 4px 2px 4px rgba(0, 0, 0, 0.3);
    padding-top: 126px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.74rem;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.37rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-desc {
  font-size: 1.17rem;
  margin-bottom: 2rem;
  opacity: 0.8;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--eco-accent-gradient);
  border-radius: 2px;
}

/* About Section */
.about-feature {
  text-align: center;
  margin-bottom: 2rem;
}

.about-feature i {
  font-size: 3rem;
  color: var(--eco-sage);
  margin-bottom: 1rem;
}

.about-feature h4 {
  color: var(--eco-forest);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, var(--eco-mint-light), var(--eco-sky-light));
}

.service-card {
  background: white;
  border-radius: 110px;
  padding: 2rem;
  box-shadow: 0 11px 30px rgba(41, 81, 38, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(46, 84, 43, 0.20);
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.58rem;
}

.service-price {
  font-size: 1.57rem;
  font-weight: 700;
  color: var(--eco-forest);
  margin-top: 1rem;
}

/* Features Section */
.feature-item {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 2.59rem;
  color: var(--eco-sage);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background: var(--eco-secondary-gradient);
}

.price-card {
  background: white;
  border-radius: 19px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(128, 197, 236, 0.10);
  transition: transform 0.3s ease;
  text-align: center;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card .price {
  font-size: 2.65rem;
  font-weight: 700;
  color: var(--eco-forest);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 7px 19px rgba(43, 69, 34, 0.20);
}

.team-member h5 {
  margin-bottom: 0.64rem;
  color: var(--eco-forest);
}

.team-member p {
  color: var(--eco-sage);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background: linear-gradient(135deg, var(--eco-earth-light), var(--eco-mint-light));
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(158, 116, 69, 0.10);
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 4rem;
  color: var(--eco-sage);
  opacity: 0.3;
}

.review-author {
  font-weight: 600;
  color: var(--eco-forest);
  margin-top: 1rem;
}

/* Case Studies Section */
.casestudy-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(42, 85, 28, 0.10);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.casestudy-item:hover {
  transform: translateY(-5px);
}

/* Process Section */
.process {
  background: var(--eco-secondary-gradient);
}

.process-step {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.process-step::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--eco-forest);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.process-container {
  counter-reset: step;
}

/* Timeline Section */
.timeline-item {
  position: relative;
  padding: 1.5rem 0;
  border-left: 3px solid var(--eco-sage);
  margin-left: 2rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 2rem;
  width: 12px;
  height: 12px;
  background: var(--eco-sage);
  border-radius: 50%;
}

/* Career Section */
.career-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(40, 67, 32, 0.10);
  margin-bottom: 2rem;
  border-left: 4px solid var(--eco-sage);
}

/* Core Info Section */
.coreinfo {
  background: linear-gradient(135deg, var(--eco-forest-light), var(--eco-sage-light));
}

.coreinfo-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(48, 82, 35, 0.10);
  margin-bottom: 2rem;
  text-align: center;
}

.coreinfo-item i {
  font-size: 2.53rem;
  color: var(--eco-sage);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(40, 86, 33, 0.10);
}

.form-control {
  border: 2px solid #c9d1db;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--eco-sage);
  box-shadow: 0 0 0 0.2rem rgba(122, 152, 98, 0.25);
}

.btn-primary {
  background: var(--eco-primary-gradient);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--eco-accent-gradient);
  transform: translateY(-2px);
}

/* Blog Section */
.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(51, 110, 41, 0.10);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-link {
  color: var(--eco-sage);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--eco-forest);
}

/* FAQ Section */
.faq {
  background: var(--eco-secondary-gradient);
}

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(53, 101, 40, 0.10);
}

.faq-question {
  padding: 1.5rem;
  background: var(--eco-mint-light);
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--eco-forest);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--eco-mint);
}

.faq-answer {
  padding: 1.5rem;
  background: white;
  border-top: 1px solid #dee7f0;
}

/* Gallery Section */
.gallery {
  background: #f8f9fa;
}

.gallery-item {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(49, 107, 44, 0.10);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: var(--eco-sky-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--eco-mint);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--eco-mint);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--eco-forest);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Utility Classes */
.text-eco-forest { color: var(--eco-forest); }
.text-eco-sage { color: var(--eco-sage); }
.text-eco-mint { color: var(--eco-mint); }
.text-eco-earth { color: var(--eco-earth); }
.text-eco-sky { color: var(--eco-sky); }

.bg-eco-forest { background-color: var(--eco-forest); }
.bg-eco-sage { background-color: var(--eco-sage); }
.bg-eco-mint { background-color: var(--eco-mint); }
.bg-eco-earth { background-color: var(--eco-earth); }
.bg-eco-sky { background-color: var(--eco-sky); }

.bg-gradient-primary { background: var(--eco-primary-gradient); }
.bg-gradient-secondary { background: var(--eco-secondary-gradient); }
.bg-gradient-accent { background: var(--eco-accent-gradient); }

/* Responsive Utilities */
.section-spacing {
  margin-bottom: 4rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; } 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
