/* Eco-Friendly Picnic Blanket Template - Main CSS */
/* Strictly Bootstrap 5 compliant - NO overrides */

/* Color Palette - 5 primary colors with light/dark shades */
:root {
  --primary-green: #4a7c59;
  --primary-green-light: #7fb069;
  --primary-green-dark: #2d5735;
  
  --accent-earth: #8b7355;
  --accent-earth-light: #b8996f;
  --accent-earth-dark: #5d4a37;
  
  --neutral-cream: #f5f2e8;
  --neutral-cream-light: #faf8f2;
  --neutral-cream-dark: #e8e2d3;
  
  --natural-brown: #6b4423;
  --natural-brown-light: #8b5a2b;
  --natural-brown-dark: #4a2f18;
  
  --soft-sage: #a8b5a0;
  --soft-sage-light: #c5d0be;
  --soft-sage-dark: #8a967e;
  
  --text-dark: #2c2c2c;
  --text-light: #ffffff;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--neutral-cream);
    overflow-x: hidden;
}

/* Conservative typography - no large fonts */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green-dark);
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-green);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Section styling */
section {
  padding: 4rem 0;
}

.section-title {
  color: var(--primary-green-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--accent-earth);
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-dark);
  margin-bottom: 3rem;
}

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

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

.hero-image {
  position: relative;
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background-color: var(--primary-green);
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--accent-earth);
  bottom: 20%;
  left: 10%;
}

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

.feature-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

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

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

.service-card {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

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

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

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

.price-card {
  background-color: white;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-earth));
}

.price-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green-dark);
}

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

.team-card {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

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

.review-card {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

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

.case-card {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

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

.process-step {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

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

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

.timeline-item {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-green);
}

/* Career Section */
.career-section {
  background-color: var(--soft-sage-light);
}

.career-card {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

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

.info-card {
  background-color: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--accent-earth-light);
}

.contact-form {
  background-color: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background-color: var(--primary-green-dark);
  color: white;
  border-radius: 15px;
  padding: 2.5rem;
}

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

.blog-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background-color: var(--soft-sage-light);
}

.faq-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.faq-answer {
  color: var(--text-dark);
}

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

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

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

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

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

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

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

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

/* Form styles */
.form-control {
  border-radius: 10px;
  border: 2px solid var(--neutral-cream-dark);
  padding: 0.75rem 1rem;
}

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

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

/* Utility classes following Bootstrap conventions */
.text-primary-green {
  color: var(--primary-green);
}

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

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

.bg-accent-earth {
  background-color: var(--accent-earth);
}



/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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

/* Image Loading and Visibility Fixes - Comprehensive */
img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    max-width: 100%;
    height: auto;
    transform: none !important;
    filter: none !important;
}

.lazy {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0.8;
    }
    to {
        opacity: 1;
    }
}

/* Force visibility for all images with specific classes */
.service-image,
.team-photo,
.gallery-image,
.hero-image img,
.blog-image,
.img-fluid {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    z-index: auto !important;
}

/* Override any potential hiding styles */
img[data-src],
img.lazy,
.lazy img,
[class*="image"] img,
[class*="photo"] img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Disable any transforms that might hide images */
.reveal-fade img,
.reveal-slide-left img,
.reveal-slide-right img {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}
