/* ===== VARIABLES ===== */
:root {
    --primary-red: #ffffff;
    --dark-bg: #102c26;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #eaeaea;

    /* Category Colors */
    --cat-red: #ef5f5f;
    --cat-green: #98B56E;
    --cat-pink: #f1b7c7;
    --cat-peach: #f5d1b3;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-large {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

.text-center {
    text-align: center;
}

.section-title {
    padding-top: 2rem;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--primary-red);
}

/* ===== HEADER ===== */
.site-header {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.site-header.sticky {
    position: fixed;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    animation: slideDown 0.5s ease;
}

.site-header.sticky .main-nav a {
    color: var(--text-dark);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 2.2rem;
    font-style: italic;
    color: var(--white);
    margin: 0;
}

.main-nav ul {
    display: flex;
    gap: 35px;
}

.main-nav a {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 1px;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}



.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--white);
}



/* ===== HELPER ELEMENTS ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(227, 33, 36, 0.3);
}

.scroll-to-top span {
    font-size: 0.6rem;
    font-weight: 600;
    margin-top: -2px;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    background-color: #c91b1d;
}

/* Logo specific */
.logo-img {
    height: 40px;
    width: auto;
    transition: filter 0.3s ease;
}

.site-header.sticky .logo-img {
    filter: invert(1);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-primary {
    background-color: var(--dark-bg);
    color: var(--white);
    border: 2px solid var(--dark-bg);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--dark-bg);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-bg);
    border: 2px solid var(--dark-bg);
}

.btn-outline:hover {
    background-color: var(--dark-bg);
    color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-color: #102c26;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    /* Accounts for header */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1;
    color: var(--white);
    max-width: 600px;
}



.hero-title {
    font-size: 6rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.hero-title .highlight-text {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    font-style: italic;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    max-width: 120%;
    width: 800px;
    transform: translateX(10%);
}

/* Modernize Buttons in Hero */
.hero-section .btn-primary {
    background-color: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
}

.hero-section .btn-primary:hover {
    background-color: var(--dark-bg);
    color: var(--white);
    border-color: var(--dark-bg);
}

.hero-section .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.hero-section .btn-outline:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

/* ===== CATEGORY SECTION ===== */
.category-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.category-card {
    text-align: center;
    width: 200px;
}

.cat-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card:hover .cat-circle {
    transform: translateY(-10px);
}

.cat-circle img {
    max-width: 120px;
    transition: transform 0.3s ease;
}

.category-card:hover .cat-circle img {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin: 0;
}

.category-card h3 a {
    color: var(--text-dark);
}

.category-card h3 a:hover {
    color: var(--primary-red);
}

/* ===== OFFERS SECTION ===== */
.offers-section {
    padding: 20px 0 var(--section-padding);
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.offer-banner {
    border-radius: 20px;
    padding: 60px 50px;
    min-height: 350px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.offer-banner-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    border-radius: inherit;
}

.offer-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.offer-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.offer-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    padding: 80px 0;
    margin-bottom: var(--section-padding);
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('assets/images/crowd.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.counter-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.counter-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.counter-item h2 {
    font-size: 3.5rem;
    color: #ebd197;
    margin-bottom: 5px;
    font-weight: 700;
}

.counter-item p {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== FEATURE SECTION ===== */
.feature-section {
    padding: var(--section-padding);
}

.feature-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.feature-image {
    flex: 1;
    text-align: right;
}

.feature-image img {
    border-radius: 41% 59% 70% 30% / 32% 40% 60% 68%;
    max-width: 500px;
    height: 300px;
    display: inline-block;
}

.feature-content {
    flex: 1;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 450px;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-list i {
    color: #4CAF50;
    font-size: 1.4rem;
}



/* ===== MENU SECTION ===== */
.menu-section {
    background-color: #f7e1d7;
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.menu-shape {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.menu-shape.top {
    top: 0;
}

.menu-shape.bottom {
    bottom: 0;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.menu-desc {
    max-width: 500px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.menu-carousels {
    position: relative;
    z-index: 2;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
}

.carousel-title-vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-right: 40px;
    color: var(--text-dark);
    white-space: nowrap;
}

.menu-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.menu-item {
    text-align: center;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.menu-item img {
    max-width: 100%;
    max-height: 350px;
    object-fit: scale-down;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.menu-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.menu-item .price {
    color: var(--text-light);
    font-weight: 500;
}

/* ===== GOOD STUFF SECTION ===== */
.good-stuff-section {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.good-stuff-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.good-stuff-images {
    flex: 1;
    position: relative;
}

.floating-img1 {
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

.good-stuff-content {
    flex: 1;
    max-width: 500px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-box .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.good-stuff-right-images {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.floating-img2 {
    max-width: 250px;
    z-index: 2;
    animation: float 5s ease-in-out infinite alternate;
}

.floating-shape {
    position: absolute;
    right: -100px;
    top: -50px;
    z-index: 1;
    max-width: 400px;
    opacity: 0.5;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: var(--section-padding) 0 0;
    position: relative;
}

.footer-shape.top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 200px;
    margin: 0 auto;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.widget h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.widget p {
    color: #aaaaaa;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.delivery-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.delivery-link.zomato {
    background-color: #CB202D;
}

.delivery-link.swiggy {
    background-color: #FC8019;
}

.delivery-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.delivery-dropdown {
    position: relative;
    width: 200px;
}

.delivery-submenu {
    display: none;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 8px;
    padding: 8px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-submenu.show {
    display: flex;
    animation: fadeInDown 0.3s ease;
}

.delivery-submenu a {
    color: #e0e0e0 !important;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.delivery-submenu a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white !important;
    padding-left: 20px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-red);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaaaaa;
}

.footer-bottom strong {
    color: var(--white);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-image img {
        width: 600px;
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-utils {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .hero-content {
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-image {
        justify-content: center;
        width: 100%;
    }

    .hero-image img {
        width: 100%;
        max-width: 500px;
        transform: none;
    }

    .menu-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .carousel-wrapper {
        flex-direction: column;
    }

    .carousel-title-vertical {
        writing-mode: horizontal-tb;
        transform: none;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .good-stuff-layout {
        flex-direction: column;
        text-align: center;
    }

    .good-stuff-images,
    .good-stuff-right-images {
        display: none;
    }

    .footer-widgets {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .feature-layout {
        flex-direction: column;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}