/* ====================================
   HEALTHY MEALS DELIVERY - MAIN STYLES
   ==================================== */

:root {
  /* Primary Color Palette - 5 Colors */
  --color-primary: #2d784a; /* Sea Green */
  --color-secondary: #ff8880; /* Coral */
  --color-accent: #42e5cc; /* Turquoise */
  --color-warning: #fae451; /* Golden Yellow */
  --color-info: #7f6cfe; /* Purple */
  
  /* Light Shades */
  --color-primary-light: #91f490;
  --color-secondary-light: #ff9bb4;
  --color-accent-light: #9fd8c4;
  --color-warning-light: #ffe9c3;
  --color-info-light: #d693d3;
  
  /* Dark Shades */
  --color-primary-dark: #28624e;
  --color-secondary-dark: #c85c50;
  --color-accent-dark: #41a493;
  --color-warning-dark: #d1c10a;
  --color-info-dark: #4c46e4;
  
  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-black: #33415c;
  --color-gray-light: #F8F9FA;
  --color-gray: #6f7d8c;
  --color-gray-dark: #414a4f;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary), var(--color-warning));
  --gradient-hero: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-light));
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-black);
}

h1 { font-size: 2.62rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.78rem; }
h4 { font-size: 1.61rem; }
h5 { font-size: 1.31rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-gray-dark);
}

/* Header & Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  backdrop-filter: blur(15px);
}

.navbar-brand {
  font-size: 1.53rem !important;
  font-weight: 700;
  color: var(--color-primary) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--color-black) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary) !important;
}

/* Hero Section */
.hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../HAL_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: 1;
}

.hero-content h1 {
  padding-top: 100px !important;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.52rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: 1.53rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 3rem;
  opacity: 0.8;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--color-gray-light);
}

.section-title {
  font-size: 2.58rem;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.26rem;
  text-align: center;
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--color-gray-dark);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Card Styles */
.card {
  background: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.card:hover {
  transform: translateY(-15px);
  box-shadow: 0 22px 25px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  border-radius: 0.5rem;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.card-title {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--color-gray-dark);
  line-height: 1.6;
}

/* Services Section */
.service-card {
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-11px);
}

.service-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-top: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--color-gray-dark);
}

.service-features li::before {
  content: "✓ ";
  color: var(--color-primary);
  font-weight: 700;
}

/* Team Section */
.team-member {
  text-align: center;
  padding: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2rem;
  box-shadow: 0 11px 15px rgba(0, 0, 0, 0.1);
  border: 7px solid var(--color-accent-light);
}

.team-name {
  font-size: 1.31rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.team-role {
  color: var(--color-gray);
  font-style: italic;
}

/* Testimonials/Reviews */
.testimonial-card {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.14rem;
}

/* FAQ Section */
.faq-item {
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  cursor: pointer;
  margin: 0;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--color-primary-dark);
}

.faq-answer {
  padding: 2rem;
  color: var(--color-gray-dark);
  border-top: 1px solid var(--color-gray-light);
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 0.5rem;
  border: 2px solid var(--color-gray-light);
  padding: 1rem;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(33, 123, 65, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Price Plan Section */
.price-card {
  background: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  background: var(--gradient-secondary);
  color: var(--color-white);
  transform: scale(1.05);
}

.price-card-title {
  font-size: 1.56rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.price-card.featured .price-card-title {
  color: var(--color-white);
}

.price-card-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 2rem;
}

.price-card.featured .price-card-price {
  color: var(--color-white);
}

.price-card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}

.price-card-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.price-card-features li::before {
  content: "✓ ";
  color: var(--color-primary);
  font-weight: 700;
  margin-right: 0.5rem;
}

.price-card.featured .price-card-features li::before {
  color: var(--color-white);
}

/* Footer */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.footer p {
  color: var(--color-gray-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--color-accent-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-dark);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
}

/* Blog Section */
.blog-card {
  background: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.40rem;
}

.blog-excerpt {
  color: var(--color-gray-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.blog-link {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--color-secondary-dark);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 2rem 0;
  background: var(--color-gray-light);
}

.breadcrumb-image {
  height: 24px;
  width: auto;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.56rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .card-img-top {
    height: 150px;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
  
  .hero-section h1 {
    padding-top: 150px !important;
}

.hero-section {
    min-height: 80vh;
  }
}



/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
