/* ============================================
   HEALTHY MEALS TEMPLATE - MAIN CSS
   ============================================ */

/* Bootstrap 5 CSS CDN Integration */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   COLOR PALETTE - 5 PRIMARY COLORS + SHADES
   ============================================ */
:root {
  /* Primary Colors */
  --color-primary-1: #3ed9c1;    /* Teal */
  --color-primary-2: #efcf24;    /* Golden Yellow */
  --color-primary-3: #fe7489;    /* Coral Red */
  --color-primary-4: #aeecdf;    /* Mint Green */
  --color-primary-5: #ffaeb1;    /* Soft Pink */
  
  /* Light Shades */
  --color-light-1: #e7fff9;
  --color-light-2: #fff9da;
  --color-light-3: #fffafa;
  --color-light-4: #F0FDF4;
  --color-light-5: #FFF0F0;
  
  /* Dark Shades */
  --color-dark-1: #36897a;
  --color-dark-2: #c6b800;
  --color-dark-3: #df362e;
  --color-dark-4: #4fae86;
  --color-dark-5: #bf7770;
  
  /* Neutral Colors */
  --color-white: #FFFFFF;
  --color-black: #1c1c1c;
  --color-gray-light: #F8F9FA;
  --color-gray-medium: #747b7e;
  --color-gray-dark: #4c5258;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary-1) 0%, var(--color-primary-4) 100%);
  --gradient-hero: linear-gradient(135deg, var(--color-primary-2) 0%, var(--color-primary-3) 100%);
  --gradient-services: linear-gradient(135deg, var(--color-primary-4) 0%, var(--color-primary-1) 100%);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max-width: 1200px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

@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: var(--font-primary);
  line-height: 1.6;
  color: var(--color-gray-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

.container-custom {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-gray-dark);
  margin-bottom: 1rem;
}

h1 { font-size: 2.61rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.53rem; }
h4 { font-size: 1.31rem; }
h5 { font-size: 1.16rem; }
h6 { font-size: 1rem; }

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  color: var(--color-gray-medium);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 23px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar-brand {
  font-size: 1.59rem;
  font-weight: 700;
  color: var(--color-primary-1) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--color-gray-dark) !important;
  margin: 0 0.5rem;
  transition: var(--transition-smooth);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--color-primary-1) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section h1 {
    padding-top: 150px;
}

.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;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  padding-top: 50px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.60rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.68rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.34rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 23px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Decorative Shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.53rem;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.27rem;
  color: var(--color-primary-1);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: var(--font-size-large);
  color: var(--color-gray-medium);
}

/* ============================================
   CARDS & COMPONENTS
   ============================================ */
.card-custom {
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 11px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: var(--transition-smooth);
  border: none;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-11px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.56rem;
  font-size: 1.56rem;
  color: var(--color-white);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--color-light-4);
}

.service-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
  height: 100%;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-content {
  padding: 2rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-1);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--color-gray-medium);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--color-primary-4);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-card {
  background: var(--color-white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.1);
  margin: 1rem;
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 3rem;
  color: var(--color-primary-1);
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  font-size: var(--font-size-large);
  margin-bottom: 1.64rem;
  color: var(--color-gray-dark);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary-1);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--color-primary-4);
  transition: var(--transition-smooth);
}

.team-photo:hover {
  transform: scale(1.05);
  border-color: var(--color-primary-1);
}

.team-name {
  font-size: 1.36rem;
  font-weight: 600;
  margin-bottom: 0.69rem;
  color: var(--color-gray-dark);
}

.team-role {
  color: var(--color-primary-1);
  font-weight: 500;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-item {
  background: var(--color-white);
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-question {
  background: var(--color-light-1);
  padding: 1.5rem;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--color-gray-dark);
  transition: var(--transition-smooth);
  position: relative;
}

.faq-question:hover {
  background: var(--color-primary-1);
  color: var(--color-white);
}

.faq-question::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  transition: var(--transition-smooth);
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-gray-medium);
  display: none;
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll Animation Classes */
.animate-in {
  animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.contact-section .section-title,
.contact-section .section-desc {
  color: var(--color-white);
}

.form-control {
  border: none;
  border-radius: 10px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--color-white);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.btn-primary {
  background: var(--color-white);
  color: var(--color-primary-1);
  border: none;
  border-radius: 50px;
  padding: 1rem 3rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: var(--color-light-1);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-gray-dark);
  color: var(--color-gray-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--color-white);
  margin-bottom: 1.70rem;
}

.footer a {
  color: var(--color-gray-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer a:hover {
  color: var(--color-primary-1);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-medium);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb-section {
  background: var(--color-light-1);
  padding: 2rem 0;
  margin-top: 80px;
}

.breadcrumb-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
}

/* ============================================
   SPACE PAGE
   ============================================ */
#space {
  min-height: 60vh;
  background: var(--color-light-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.56rem;
  color: var(--color-gray-medium);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-hero { background: var(--gradient-hero); }
.bg-gradient-services { background: var(--gradient-services); }

.text-primary-1 { color: var(--color-primary-1); }
.text-primary-2 { color: var(--color-primary-2); }
.text-primary-3 { color: var(--color-primary-3); }
.text-primary-4 { color: var(--color-primary-4); }
.text-primary-5 { color: var(--color-primary-5); }

.bg-light-custom { background: var(--color-light-1); }
.shadow-custom { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }
.rounded-custom { border-radius: 15px; }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  .hero-title { font-size: 2.52rem; }
  .section-title { font-size: 2rem; }
  .hero-section h1 {
    padding-top: 150px;
}

.hero-section { padding: 2rem 0; }
  .section { padding: 60px 0; }
} 


/* 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);
}

.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;
    }
}
