


/* ===============================================
   Your Salad Co. - FINAL PREMIUM STYLESHEET (v4)
=============================================== */

/* 1. IMPORTS & VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary-green: #1A4D2E;   /* Deep Kale */
  --accent-orange: #FF9F1C;   /* Tangerine */
  --light-bg: #F9F7F2;        /* Cream */
  --white: #FFFFFF;
  --text-dark: #2D3748;
  --text-body: #4A5568;
  
  /* Dimensions */
  --radius: 16px;
  --container-width: 1140px;
}

/* 2. GLOBAL RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.2;
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section { padding: 100px 0; position: relative; }
.bg-cream { background-color: var(--light-bg); }

/* 3. BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
}

.btn-primary:hover {
  background-color: #E08C19;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary-green);
  color: var(--white);
}

.btn-secondary:hover { background-color: #143C24; transform: translateY(-2px); }

/* 4. HEADER & NAV */
.main-header {
  position: fixed;
  top: 0; width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  display: flex; align-items: center; gap: 10px;
}
.logo-icon { color: var(--accent-orange); }

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--primary-green); }

.nav-actions { display: flex; align-items: center; gap: 15px; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text-dark); cursor: pointer; }

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed; top: 80px; right: -100%;
  width: 100%; height: calc(100vh - 80px);
  background: white;
  transition: 0.4s ease;
  padding: 40px;
  text-align: center;
  border-top: 1px solid #eee;
}
.mobile-menu.active { right: 0; }
.mobile-links li { margin-bottom: 20px; }
.mobile-links a { font-size: 1.2rem; font-weight: 600; color: var(--text-dark); }

/* 5. HERO SECTION (UPGRADED) */
.hero {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0F291E;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 0;
  animation: slowZoom 20s infinite alternate; /* MOTION */
}

@keyframes slowZoom {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }

.hero-tagline {
  color: var(--accent-orange);
  font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 10px; font-size: 0.9rem;
}

.hero h1 { font-size: 4.5rem; color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--accent-orange); font-style: italic; }

.hero-usps {
  display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; flex-wrap: wrap;
}
.usp-pill {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(5px);
  padding: 5px 15px; border-radius: 20px;
  color: white; font-size: 0.85rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
}
.usp-pill i { margin-right: 5px; color: var(--accent-orange); }

.hero p {
  font-size: 1.25rem; color: rgba(255,255,255,0.9); margin-bottom: 40px;
}

/* Organic Curve Divider */
.custom-shape-divider-bottom-167890 {
    position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0;
}
.custom-shape-divider-bottom-167890 svg {
    position: relative; display: block; width: calc(137% + 1.3px); height: 60px;
}
.custom-shape-divider-bottom-167890 .shape-fill { fill: #FFFFFF; }

/* 6. YOUTUBE DEMO CONTAINER */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; height: 0;
  overflow: hidden; border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15); background: #000;
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* 7. ICON BOXES & CARDS */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 10px; }

.three-col-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.info-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.info-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }

.icon-box {
  width: 70px; height: 70px;
  background-color: #FFF7ED; color: var(--accent-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 20px;
  transition: 0.3s;
}
.info-card:hover .icon-box { background-color: var(--accent-orange); color: white; }

/* 8. DIETARY CONTROL & MENUS */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.personalize-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 40px;
  display: flex; align-items: flex-start; gap: 20px;
  transition: all 0.3s;
}
.personalize-card:hover { border-color: var(--primary-green); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.personalize-card.popular {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  border: 1px solid var(--primary-green);
  position: relative;
}

.badge {
  position: absolute; top: 15px; right: 15px;
  background: var(--primary-green); color: var(--white);
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
}

.card-icon-lg {
  font-size: 2.5rem; color: var(--primary-green);
  background: #E6F4EA; width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; flex-shrink: 0;
}

/* MENU CARD UPGRADES */
.four-col-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

.menu-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

.menu-img-wrap { height: 200px; background: #eee; overflow: hidden; position: relative; }
.menu-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.menu-card:hover .menu-img-wrap img { transform: scale(1.1); }

.menu-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  padding: 4px 10px; border-radius: 4px; color: white;
  font-size: 0.75rem; font-weight: 700;
}
.badge-vegan { background: #48bb78; }
.badge-protein { background: #ed8936; }

.menu-info { padding: 20px; }
.menu-meta { font-size: 0.8rem; color: #a0aec0; margin-bottom: 5px; font-weight: 600; }
.menu-info h3 { font-size: 1.2rem; margin-bottom: 5px; }
.menu-info p { font-size: 0.9rem; color: #718096; }

/* 9. CTA SECTION */
.cta-section {
  background-color: var(--primary-green);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.1); 
}

.cta-section .container { display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 2; }

.cta-section h2 { color: var(--white); font-size: 3.5rem; margin-bottom: 24px; line-height: 1.1; }
.cta-section p { color: rgba(255, 255, 255, 0.9); font-size: 1.25rem; margin-bottom: 40px; }

/* 10. FOOTER & SOCIAL */
.main-footer { background: #0F291E; color: #CBD5E0; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 15px; display: block; }

.footer-links h4 { color: var(--accent-orange); font-family: 'Outfit', sans-serif; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 20px; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links a { color: #A0AEC0; }
.footer-links a:hover { color: var(--white); padding-left: 5px; }

.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: var(--white);
  display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s;
}
.social-icon:hover { background: var(--accent-orange); transform: translateY(-3px); }

/* Newsletter */
.newsletter-form { display: flex; gap: 10px; margin-top: 10px; }
.newsletter-form input { 
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); 
  padding: 10px; border-radius: 4px; color: white; width: 100%;
}
.newsletter-form button {
  background: var(--accent-orange); border: none; color: white; padding: 0 15px; border-radius: 4px; cursor: pointer;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero h1 { font-size: 3rem; }
  .three-col-grid, .two-col-grid, .four-col-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .social-links, .newsletter-form { justify-content: center; }
  .desktop-menu { display: none; }
  .mobile-toggle { display: block; }
  .cta-section h2 { font-size: 2.5rem; }
}

/* Website Header Logo Styling */
.site-logo {
    height: 60px;       /* Sets a fixed height for the navbar */
    width: auto;        /* Keeps the logo from stretching */
    display: block;
    object-fit: contain;
}

/* Optional: Adjusts the link container to remove default spacing */
.main-nav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}