﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    padding-bottom: 60px;
}
body::-webkit-scrollbar {
    display: none;
  }

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f8f8;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.nav-brand-link {
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    align-items: center;
    display: flex;
}

.nav-brand-link:hover {
    color: #333;
    transform: scale(1.05);
}
.nav-brand img {
    width: auto; 
    height: 50px;   /* keep aspect ratio */
    display: block; /* remove extra space below inline images */
}

.nav-brand-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Home Section */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 0;
    position: relative;
}

.home-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
}
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover; /* makes video cover entire section */
    z-index: -1; 
    filter: brightness(60%); /* optional: darkens video for better text contrast */
}
.glass-overlay {
    position: absolute;
    inset: 0;                     /* top:0; right:0; bottom:0; left:0; */
    z-index: 0;                   /* below content (content has z-index:1) */
    pointer-events: none;         /* don't block clicks */
    border-radius: 0;             /* change if your section has rounded corners */
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.10) 0%,
      rgba(255,255,255,0.06) 50%,
      rgba(0,0,0,0.12) 100%
    ); /* subtle tint + gradient for depth */
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    backdrop-filter: blur(8px) saturate(120%);
    /* subtle inner border and shadow for "glass" edge */
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 6px 18px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .glass-card {
    background: rgba(255,255,255,0.12); /* semi-transparent base for fallback */
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    backdrop-filter: blur(6px) saturate(120%);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  }

  @media (max-width: 768px) {
    .glass-overlay {
      -webkit-backdrop-filter: blur(6px) saturate(115%);
      backdrop-filter: blur(6px) saturate(115%);
      background: linear-gradient(
        180deg,
        rgba(255,255,255,0.09) 0%,
        rgba(255,255,255,0.04) 50%,
        rgba(0,0,0,0.14) 100%
      );
    }
  
    .glass-card {
      background: rgba(255,255,255,0.14);
      padding: 1rem;
    }
  }
.home-left {
    position: relative;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    /* border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.product-image {
    width: 100%;
    height: 530px;
    object-fit:contain;
    transition: all 0.3s ease;
    animation: popIn 1s ease-out;
    position: relative;
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.home-right {
    padding: 2rem 0;
}

.brand-logo {
    font-size: 3.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.brand-tagline {
    font-size: 1.9rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.about-description {
    font-size: 1.3rem;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: fadeInUp 1s ease-out 0.9s both;
}
.about-description ul {
    padding-left: 15px;
}
.about-description ul li {

    color: #fff;
}
.coming-soon-contiainer {
    margin-top: 30px;
    min-height: 250px;
}
.coming-soon-text {
    color:#fff;
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: left;
    min-height: 2em;
    line-height: 1.5;
}

.about-description p {
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.8;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Nutritional Benefits Section */
.nutritional-benefits {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.nutritional-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.nutritional-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.nutritional-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-height: 0;
}

.nutritional-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.nutritional-image.animate {
    animation: popIn 0.8s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
}

.nutritional-center {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefits-list {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    flex: 1;
}

.benefit-item {
    margin-bottom: 0;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #555;
    line-height: 1.6;
}

.nutritional-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 2rem;
}

.nutrition-chart {
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nutrition-chart h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.typewriter-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typewriter-text {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    min-height: 1.5em;
    line-height: 1.5;
}

.typewriter-cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Recipes Section */
.recipes {
    padding: 100px 0;
    background-color: #fff;
}

.recipes-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.recipes .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 400px;
    padding: 10px 10px 10px 10px;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.recipe-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.recipe-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.recipe-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.recipe-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    padding: 1rem 1rem 0.5rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.recipe-description {
    padding: 0 1rem 1rem;
    color: #555;
    line-height: 1.6;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}



.carousel-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 1);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.carousel-btn:hover::before {
    transform: translateX(100%);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0);
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* .carousel-btn.prev {
    left: 0;
} */


.carousel-btn {
  color: #000; /* default black arrows */
}

.carousel-btn:hover {
  color: #fff; /* white arrows on hover */
}

.carousel-btn.next {
    right: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f8f8f8;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.submit-btn {
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-container {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
}

.map-placeholder {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}
.social-icons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Icon default */
.social-icons img {
    width: 40px;
    height: 40px;
    filter: grayscale(100%); /* black & white */
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

/* Icon hover when parent div hovered */
.social-icons:hover img {
    filter: grayscale(0%); /* colorful */
    transform: scale(1.1);
}

/* Text default (gray look) */
.insta-text {
    cursor: pointer;
    text-decoration: none;
    color:#555;
    transition: opacity 0.3s ease;
}

/* Text hover when parent div hovered */
.social-icons:hover .insta-text {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1; /* full color */
    
}


/* Footer */
.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.footer-content p {
    font-size: 0.9rem;
}


/* Responsive Design */
@media (min-width: 1400px) {
    .nav,
    .home-container,
    .nutritional-container,
    .recipes-container,
    .contact-container {
        padding: 0 2rem;
    }
    .nav {
        padding: 1.5rem 1.5rem;
    }
}

@media (min-width: 1600px) {
    .nav,
    .home-container,
    .nutritional-container,
    .recipes-container,
    .contact-container {
        max-width: 1600px;
        padding: 0 3rem;
    }
    .nav {
        padding: 1.5rem 1.5rem;
    }

}

@media (max-width: 1024px) {
    .nutritional-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .nutritional-left,
    .nutritional-center,
    .nutritional-right {
        height: auto;
    }
    
    .nutritional-right {
        order: -1;
    }
    
    .benefits-list {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .nutritional-image {
        height: 300px;
    }
    
    .recipe-item {
        min-height: 330px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    .nav-link {
        color: #fff;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .home-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .brand-logo {
        font-size: 2.5rem;
    }
    
    .nutritional-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        margin-bottom: 1rem;
        padding: 1.5rem;
        min-height: auto;
    }
    
    .typewriter-text {
        font-size: 1.4rem;
    }
    
    .typewriter-card {
        padding: 2rem;
        min-height: 120px;
    }
    
    .nutritional-left,
    .nutritional-center,
    .nutritional-right {
        height: auto;
    }
    
    .nutritional-image {
        height: 250px;
    }
    
    .nutrition-chart {
        margin-top: 2rem;
    }
    
    .typewriter-card {
        margin-top: 1rem;
        padding: 1.5rem;
        min-height: 100px;
    }
    
    .typewriter-text {
        font-size: 1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .recipe-item {
        flex: 0 0 calc(50% - 1rem);
        min-height: 320px;
    }
    
    .carousel-controls {
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .home-container,
    .nutritional-container,
    .contact-container,
    .recipes-container {
        padding: 0 1rem;
    }
    
    .brand-logo {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .recipe-item {
        flex: 0 0 100%;
        min-height: 300px;
    }
    
    .product-image,
    .nutritional-image {
        height: 300px;
    }
    
    .carousel-controls {
        display: none;
    }
}
