/* Eco Gift Baskets Template - Main CSS */
/* Bootstrap 5 Compatible - No Overrides */

:root {
  /* Primary Eco-Friendly Color Palette */
  --primary-green: #4a7c4e;
  --secondary-sage: #8eb69b;
  --accent-earth: #c5a572;
  --neutral-cream: #f5f3f0;
  --accent-brown: #7d5a3b;
  
  /* Light/Dark Shades */
  --light-green: #6b9a6f;
  --dark-green: #2d4a30;
  --light-sage: #a8c7b1;
  --dark-sage: #6a9575;
  --light-cream: #fdfcfa;
  --dark-cream: #e8e4df;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --section-padding-mobile: 3rem 0;
}

/* Global Styles */
body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--dark-green);
  background-color: var(--light-cream);
    overflow-x: hidden;
}

/* Conservative Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

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

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

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

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

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

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

.hero-decorative {
  position: relative;
  overflow: hidden;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: var(--secondary-sage);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

.hero-decorative::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 150px;
  height: 150px;
  background: var(--accent-earth);
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

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

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

/* Card Styles */
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

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

.card-header {
  background-color: var(--neutral-cream);
  border-bottom: 2px solid var(--secondary-sage);
  font-weight: 600;
  color: var(--primary-green);
}

/* Service Cards */
.service-card {
  text-align: center;
  padding: 2rem;
  background: white;
  margin-bottom: 2rem;
}

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

/* Team Cards */
.team-card {
  text-align: center;
  background: white;
  padding: 2rem;
}

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

/* Review Cards */
.review-card {
  background: white;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--secondary-sage);
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
}

/* Form Styles */
.form-control {
  border: 2px solid var(--neutral-cream);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

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

.form-label {
  color: var(--dark-green);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

footer h5 {
  color: white;
  margin-bottom: 1.5rem;
}

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

footer a:hover {
  color: white;
}

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

/* Gallery Styles */
.gallery-item {
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 8px;
}

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

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  margin-bottom: 2rem;
  position: relative;
}

.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;
}

/* Timeline Items */
.timeline-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--secondary-sage);
}

/* Breadcrumb Styles */
.breadcrumb {
  background: none;
  padding: 1rem 0;
  margin-bottom: 2rem;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

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

/* Background Sections */
.bg-light-section {
  background-color: var(--neutral-cream);
}

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

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

.text-sage {
  color: var(--secondary-sage);
}

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

/* Icon Styles for FontAwesome */
.fa {
  color: var(--primary-green);
  margin-right: 0.5rem;
}

/* Contact Info */
.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.contact-info i {
  color: var(--primary-green);
  margin-right: 1rem;
  width: 20px;
  text-align: center;
}

/* Blog Grid */
#blog_grid .card {
  height: 100%;
}

.blog-excerpt {
  color: var(--dark-green);
  font-size: var(--font-size-small);
}

/* FAQ Cards */
.faq-card {
  background: white;
  margin-bottom: 1rem;
  border-radius: 8px;
  padding: 1.5rem;
}

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

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


.hero-section h1 {
    padding-top: 200px;
}


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