/* Variables */
:root {
    --primary-green: #7ca337;
    --dark-bg: #121212;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    margin: 0 15px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-green);
}

/* Buttons */
.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.btn-outline {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    margin-left: 10px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: var(--light-gray);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    background: #e8f5e9;
    color: var(--primary-green);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin: 20px 0;
}

.highlight {
    color: var(--primary-green);
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
}

/* Menu Section */
.menu-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    padding: 20px;
    text-align: center;
}

.item-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-right: 15px;
}

.info-item a {
    color: inherit;
    text-decoration: none;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

/* Legal Section */
.legal-section {
    padding: 60px 0;
    background: #f4f4f4;
}

.legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.legal-box h3 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    background: var(--dark-bg);
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid, .contact-grid, .legal-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        display: none;
    }
}
/* What We Do / About Us Styling */
.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 40px 10px 40px 10px; /* Modern offset corners */
    box-shadow: 20px 20px 0px var(--primary-green); /* Color block shadow */
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background: #1a1a1a;
    color: white;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.about-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 15px 0 25px;
}

.main-para {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
}

.value-list {
    margin-bottom: 40px;
}

.value-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.value-icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 5px;
}

.value-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.value-text p {
    color: #777;
    font-size: 0.95rem;
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-content {
        order: 1;
        text-align: center;
    }
    
    .value-item {
        text-align: left;
    }
}
/* Gallery / Image Section Styling */
.gallery-section {
    padding: 100px 0;
    background: #f8faf5; /* Light green tint for separation */
}

.gallery-section .section-header {
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 column grid */
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    aspect-ratio: 1/1; /* Force square images */
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the square area */
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Hover Overlay Effect */
.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .category {
    font-size: 0.75rem;
    color: var(--primary-green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-item h3 {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
    margin-top: 5px;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 1 column for phones */
        gap: 15px;
    }
}
/* Full Cover Banner Styles */
.hero-banner {
    position: relative;
    height: 100vh; /* Full viewport height */
    width: 100%;
    /* Replace the URL below with your high-res food image */
    background: url('https://images.unsplash.com/photo-1547592166-23ac45744acd?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Dark overlay to make text readable */
.hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness here */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-center h1 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 20px 0;
    text-transform: uppercase;
}

.hero-text-center p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-left: 15px;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: white;
    color: black;
}

/* Animated Scroll Mouse */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: "";
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
    .hero-text-center h1 {
        font-size: 3rem;
    }
    .hero-text-center p {
        font-size: 1.1rem;
    }
    .btn-outline-white {
        display: block;
        margin: 15px auto 0;
        width: fit-content;
    }
}
/* Premium About/What We Do Section */
.about-premium {
    padding: 100px 0;
    background: #ffffff; /* Clean white background */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split layout */
    gap: 60px;
    align-items: center;
}

/* Content Area Styling */
.about-content {
    padding-right: 40px;
}

.about-premium h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 15px 0;
}

.about-premium .highlight {
    color: #7ca337; /* BROTEIN Green */
}

.main-para {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 30px;
}

.value-list {
    list-style: none;
    margin-bottom: 40px;
}

.value-list li {
    font-size: 1.1rem;
    margin: 12px 0;
    display: flex;
    align-items: center;
}

.value-list li i {
    color: #7ca337;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Image Area Styling */
.about-images {
    position: relative;
    height: 100%;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.main-image {
    width: 85%;
    aspect-ratio: 4/5; /* Tall vertical photo */
}

.sub-image {
    position: absolute;
    bottom: -30px; /* Overlaps main image */
    right: 0;
    width: 60%;
    aspect-ratio: 1/1; /* Square photo */
    border: 8px solid white; /* Essential for premium overlapping look */
    z-index: 2;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05); /* Subtle zoom */
}

/* Small label on the image */
.image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(26, 26, 26, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .value-list li {
        justify-content: center;
    }

    .main-image {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .sub-image {
        position: static;
        width: 100%;
        border: none;
    }
}