@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Poppins:wght@300;400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #003b52;
    /*#0F766E  #000000 #003b52*/
}

/* WEBSITE BLUR AT START */
#website-content {
    filter: blur(15px);
    transition: all .8s ease;
}

/* PRELOADER OVERLAY */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    background: rgba(10, 10, 10, .25);

    transition: all .8s ease;
}

/* CARD */
.loader-card {
    width: min(680px, 90vw);
    max-width: 90%;
    padding: 40px;

    text-align: center;

    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);

    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);

    border-radius: 25px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .4);

    animation: cardFloat 2s ease-in-out infinite;
}

.loader-card img {
    width: 100%;
    max-width: 590px;
    height: auto;
    margin-bottom: 15px;
}

.loader-card h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 30px;
}

.loader-card p {
    color: #ddd;
    margin-bottom: 25px;
}

/* LOADING BAR */
.loader-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50px;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 0;

    background: linear-gradient(90deg,
            #f7e7ce,
            #d4af37);

    animation: loadBar 3s linear forwards;
}

@keyframes loadBar {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes cardFloat {
    50% {
        transform: translateY(-8px);
    }
}

/* =========================
   TABLETS (1024px and below)
========================= */
@media (max-width: 1024px) {

    .loader-card {
        width: 600px;
        padding: 35px;
    }

    .loader-card img {
        width: 100%;
        max-width: 500px;
    }

    .loader-card h2 {
        font-size: 28px;
    }

    .loader-card p {
        font-size: 16px;
    }
}

/* =========================
   LARGE MOBILE / SMALL TABLET
========================= */
@media (max-width: 768px) {

    .loader-card {
        width: 90%;
        padding: 30px 25px;
        border-radius: 20px;
    }

    .loader-card img {
        width: 100%;
        max-width: 400px;
        margin-bottom: 12px;
    }

    .loader-card h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .loader-card p {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .loader-bar {
        height: 5px;
    }
}

/* =========================
   MOBILE DEVICES
========================= */
@media (max-width: 480px) {

    #preloader {
        padding: 20px;
    }

    .loader-card {
        width: 100%;
        padding: 25px 18px;
        border-radius: 18px;
    }

    .loader-card img {
        width: 100%;
        max-width: 280px;
        margin-bottom: 10px;
    }

    .loader-card h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    .loader-card p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .loader-bar {
        height: 4px;
    }
}

/* =========================
   EXTRA SMALL DEVICES
========================= */
@media (max-width: 360px) {

    .loader-card {
        padding: 20px 15px;
    }

    .loader-card img {
        max-width: 220px;
    }

    .loader-card h2 {
        font-size: 18px;
    }

    .loader-card p {
        font-size: 13px;
    }

    .loader-bar {
        height: 3px;
    }
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.menu-toggle.active span {
    background: #000;
    /* or #fff depending on menu */
}


.logo-wrapper {
    position: absolute;
    left: 50%;
    top: -55px;
    opacity: 0;
    animation: logoCinematic 1s ease forwards;
    animation-delay: .4s;
}

@keyframes logoCinematic {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(.6);
        filter: blur(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        filter: blur(0);
    }
}

.navbar {
    opacity: 0;
    filter: blur(30px);
    transform: translateY(-60px) scale(.96);
    animation: cinematicNavbar 1.2s cubic-bezier(.19, 1, .22, 1) forwards;
}

@keyframes cinematicNavbar {
    0% {
        opacity: 0;
        filter: blur(30px);
        transform: translateY(-60px) scale(.96);
    }

    60% {
        opacity: .7;
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

.mobile-menu {
    z-index: 100000;
}

.menu-toggle {
    z-index: 100001;
}


.navbar {
    width: 95%;
    max-width: 1600px;
    position: relative;
    margin: 40px auto 20px;
    overflow: visible;
    background: #F7E7CE;
    border: 1px solid rgba(240, 197, 120, .4);
    border-radius: 30px;
    z-index: 1000000;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, .35);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    border-bottom: 1.5px solid rgba(156, 102, 0, 0.25);
}

.top-left {
    display: flex;
    gap: 40px;
    color: #000000;
    font-size: 17px;
    font-weight: 600;
}

.top-right {
    display: flex;
    gap: 20px;
}

.top-right a {
    color: #000000;
    font-size: 20px;
    transition: .3s;
}

.top-right a:hover {
    transform: translateY(-3px);
}

.main-nav {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 110px;
}

.nav-left,
.nav-right {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-left {
    margin-right: 130px;
    transform: none;
    margin-top: -2px;
    /* move HOME ABOUT MENU downward */
}

.partners-box {
    position: absolute;
    left: 20px;
    top: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.book-btnn {
    display: inline-block;
    padding: 10px 30px;
    background: #f0c578;
    color: #000000 !important;
    font-size: 16px;
    /* not 1px */
    font-weight: 700;
    font-family: Georgia, serif;
    border-radius: 12px;
    text-decoration: none;
    transition: .3s ease;
    white-space: nowrap;
    /* prevents line break */
}

.partner-logos {
    display: flex;
    gap: 12px;
}

.partner-logos a {
    width: 75px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    margin-top: -7px;
    overflow: hidden;
    border: 2px solid #f0c578;
    transition: .3s;
}

.partner-logos a:hover {
    transform: translateY(0px) scale(0.8);
}

.partner-logos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-right {
    margin-left: 130px;
    transform: none;
}

.main-nav a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Crete Round", serif;
    transition: .3s;
}

.main-nav a:hover {
    color: #b6852b;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    top: -55px;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: #031b49;
    border: 3px solid #f0c578;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 0 25px rgba(240, 197, 120, .15);
}

.logo-wrapper img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 50%;
}

.book-btn {
    position: absolute;
    right: 30px;
    padding: 15px 30px;
    background: #f0c578;
    color: #000000 !important;
    font-weight: 600;
    border-radius: 8px;
    transition: .3s;
}

.book-btn:hover {
    background: #000000;
    transform: translateY(-3px);
    color: #ffffff !important;
}

.main-nav::before {
    content: "❦";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f0c578;
    font-size: 45px;
}

/* =========================
   HAMBURGER
========================= */



.menu-toggle {
    display: none;
    position: fixed;
    top: 30px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 99999999;
}

.menu-toggle span {
    position: absolute;
    left: 7px;
    width: 30px;
    height: 3px;
    background: #000;
    transition: all .35s ease;
}

.menu-toggle span:nth-child(1) {
    top: 12px;
}

.menu-toggle span:nth-child(2) {
    top: 21px;
}

.menu-toggle span:nth-child(3) {
    top: 30px;
}

.menu-toggle.active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;

    background: #F7E7CE;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;

    transform: translateX(100%);
    transition: transform .45s ease;

    z-index: 999999;

    box-shadow: -10px 0 30px rgba(0, 0, 0, .25);

    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav li {
    margin: 18px 0;
}

.mobile-nav a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "Crete Round", serif;
    transition: .3s;
}

.mobile-nav a:hover {
    color: #b6852b;
}

/* =========================
   MOBILE PARTNER
========================= */

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

.mobile-partners h4 {
    margin-bottom: 15px;
    color: #b6852b;
    letter-spacing: 2px;
}

.mobile-partners img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #f0c578;
    background: #fff;
}

/* =========================
   MOBILE ORDER BUTTON
========================= */

.mobile-order {
    display: inline-block;
    padding: 14px 28px;
    background: #f0c578;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
}

/* =========================
   TABLET & MOBILE
========================= */

@media (max-width:1373px) {

    .top-bar {
        display: none;
    }

    .partners-box,
    .book-btn,
    .nav-left,
    .nav-right {
        display: none !important;
    }

    .menu-toggle {
        display: block;
        top: 39px;
        right: 25px;
        transform: none;
    }

    .main-nav {
        justify-content: flex-start;
        align-items: center;
        height: 110px;
        padding-left: 20px;
    }

    .logo-wrapper {
        left: 90px;
        top: 10px;
        width: 90px;
        height: 90px;
    }

    .logo-wrapper img {
        width: 95px;
        height: 95px;
    }

    .main-nav::before {
        display: none;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:576px) {

    .navbar {
        width: 96%;
        margin: 15px auto;
    }

    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }

    .logo-wrapper {
        width: 85px;
        height: 85px;
        left: 80px;
        top: 12px;
    }

    .logo-wrapper img {
        width: 85px;
        height: 85px;
    }

    .menu-toggle {
        right: 20px;
        margin-top: -5px;
    }
}


/* HERO SECTION */
.hero {
     min-height: 90vh;          /* was 90vh */
    padding: 60px 7% 20px;    
    background: #003f56;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 7%;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    margin-top: -140px;
}

/* TOP TAG */
.hero-tag {
    display: inline-block;
    border: 1px solid rgba(236, 191, 108, .6);
    color: #ecbf6c;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* TITLE */
.hero-title h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    line-height: .9;
    font-weight: 700;
    color: #f6f4f0;
}

.title-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-title .bites {
    color: #ecbf6c;
}

/* INDIAN CUISINE BADGE */
.indian-cuisine {
    display: flex;
    flex-direction: column;
    width: 130px;
}

.indian {
    background: #f28c1b;
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 10px 0;
    letter-spacing: 2px;
}

.cuisine {
    background: #1fa24b;
    color: #fff;
    text-align: center;
    font-weight: 700;
    padding: 10px 0;
    letter-spacing: 2px;
}

/* SUBTITLE */
.hero h3 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: #ecbf6c;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* DESCRIPTION */
.hero p {
    color: #d6d6d6;
    font-size: 1.2rem;
    line-height: 2;
    max-width: 650px;
    margin-bottom: 35px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: .3s;
}

.btn-primary {
    background: #ecbf6c;
    color: #112233;
}

.btn-primary:hover {
    background: #f5ca7c;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid #ecbf6c;
    color: #ecbf6c;
    background: transparent;
}

.btn-secondary:hover {
    background: #ecbf6c;
    color: #003f56;
}

/* STATS */
.hero-stats {
    display: flex;
    gap: 60px;
}

.hero-stats h4 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.hero-stats span {
    color: #cfcfcf;
    font-size: 1rem;
}

/* IMAGE */
.hero-image {
    flex-shrink: 0;
    margin-top: -120px;
}

.hero-image img {
    width: 520px;
    max-width: 100%;
    display: block;
}

/* RESPONSIVE */
/* =========================
   LARGE TABLETS / SMALL LAPTOPS
   ========================= */
@media (max-width:1200px) {

    .hero {
        padding: 60px 5%;
    }

    .hero-content {
        margin-top: -120px;
        max-width: 600px;
    }

    .hero-title h1 {
        font-size: 6rem;
    }

    .hero-image {
        margin-top: -100px;
    }

    .hero-image img {
        width: 450px;
    }
}


/* =========================
   TABLETS
   ========================= */
@media (max-width:992px) {

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 120px 5% 80px;
        gap: 40px;
        padding: 120px 5% 40px; 
    }

    .hero-content {
        margin-top: 0;
        max-width: 100%;
        margin-top: -120px;
    }

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

    .hero-title h1 {
        font-size: 5rem;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .hero-image {
        margin-top: 0;
    }

    .hero-image img {
        width: 400px;
        margin: auto;
    }
}


/* =========================
   MOBILE DEVICES
   ========================= */
@media (max-width:768px) {

    .hero {
        min-height: auto;
        padding: 100px 20px 30px;  
        margin-top: 70px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 8px 18px;
    }

    .hero-slider {
        margin-top: -100px;
    }

    .hero-title h1 {
        font-size: 4rem;
    }

    .hero h3 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 15px 25px;
    }

    .indian-cuisine {
        width: 110px;
    }

    .hero-image img {
        width: 390px;
        margin-top: -10px;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stats h4 {
        font-size: 1.6rem;
    }
}


/* =========================
   SMALL MOBILES
   ========================= */
@media (max-width:576px) {

    .hero-title h1 {
        font-size: 3rem;
        line-height: 1;
    }

    .hero-slider {
        margin-top: -100px;
    }

    .hero h3 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: .95rem;
    }

    .hero-image img {
        width: 320px;
        margin-top: -10px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stats h4 {
        font-size: 1.4rem;
    }

    .hero-tag {
        letter-spacing: 1px;
        font-size: 11px;
    }

    .indian-cuisine {
        width: 100px;
    }

    .indian,
    .cuisine {
        font-size: 12px;
        padding: 8px 0;
    }
}


/* =========================
   EXTRA SMALL DEVICES
   ========================= */
@media (max-width:400px) {

    .hero {
        padding: 90px 15px 25px;
        
    }

    .hero-slider {
        margin-top: -100px;
    }

    .hero-title h1 {
        font-size: 2.5rem;
    }

    .hero h3 {
        font-size: 1.1rem;
    }

    .hero-image img {
        width: 320px;
        margin-top: -10px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: .95rem;
        padding: 14px 20px;
    }
}


/* SECTION */
.about-section {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    margin-top: -20px;
}

/* HEADING */
.section-heading {
    position: absolute;
    top: 25px;
    text-align: center;
}

.section-heading span {
    color: #D4AF37;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
}

.section-heading h1 {
    color: #fff;
    font-size: 70px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.section-heading p {
    max-width: 700px;
    color: #c8c8c8;
    line-height: 1.9;
}

/* CENTER IMAGE */
.center-image {
    position: relative;
    width: 650px;
    height: 650px;
    margin-top: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wheel {
    position: absolute;
    width: 100%;
    object-fit: contain;
}

.plate {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #D4AF37;
    z-index: 2;
}

/* PREMIUM CARD */
.premium-card {
    position: absolute;
    width: 350px;
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, .35);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, .5),
        0 0 20px rgba(212, 175, 55, .15);
    transition: .4s;
}

.premium-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, .6),
        0 0 30px rgba(212, 175, 55, .3);
}

.icon {
    color: #D4AF37;
    font-size: 28px;
    margin-bottom: 18px;
}

.premium-card h3 {
    color: #f0c578;
    margin-bottom: 15px;
    font-size: 27px;
    font-family: 'Cinzel', serif;
}

.premium-card p {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 19px;
}

/* CARD POSITIONS */

.card1 {
    top: 250px;
    left: 280px;
}

.card2 {
    top: 250px;
    right: 250px;
}

/* =========================
   LARGE LAPTOPS (1400px)
   ========================= */
@media (max-width: 1700px) {

    .section-heading h1 {
        font-size: 60px;
    }

    .center-image {
        width: 550px;
        height: 550px;
    }

    .plate {
        width: 220px;
        height: 220px;
    }

    .premium-card {
        width: 300px;
        padding: 25px;
    }

    .premium-card p {
        font-size: 18px;
    }

    .card1 {
        left: 120px;
    }

    .card2 {
        right: 120px;
    }
}


/* =========================
   LAPTOPS (1200px)
   ========================= */
@media (max-width: 1285px) {

    .section-heading h1 {
        font-size: 52px;
    }

    .section-heading p {
        max-width: 600px;
        padding: 0 20px;
    }

    .center-image {
        width: 480px;
        height: 480px;
        margin-top: 220px;
    }

    .plate {
        width: 200px;
        height: 200px;
    }

    .premium-card {
        width: 280px;
        padding: 22px;
    }

    .premium-card h3 {
        font-size: 24px;
    }

    .premium-card p {
        font-size: 17px;
    }

    .card1 {
        left: 40px;
        top: 280px;
    }

    .card2 {
        right: 40px;
        top: 280px;
    }
}


/* =========================
   TABLETS (992px)
   ========================= */
@media (max-width: 1100px) {

    .about-section {
        flex-direction: column;
        padding: 180px 20px 80px;
        min-height: auto;
    }

    .about-section {
        margin-top: -110px;
    }


    .section-heading {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .section-heading h1 {
        font-size: 48px;
    }

    .center-image {
        width: 420px;
        height: 420px;
        margin-top: 30px;
    }

    .plate {
        width: 180px;
        height: 180px;
    }

    .premium-card {
        position: relative;
        width: 100%;
        max-width: 500px;
        margin: 20px auto;
    }

    .card1,
    .card2 {
        top: auto;
        left: auto;
        right: auto;
    }
}


/* =========================
   MOBILE (768px)
   ========================= */
@media (max-width: 768px) {

    .about-section {
        padding: 120px 15px 60px;
    }

    .about-section {
        margin-top: -60px;
    }


    .section-heading span {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .section-heading h1 {
        font-size: 38px;
    }

    .section-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .center-image {
        width: 320px;
        height: 320px;
    }

    .plate {
        width: 140px;
        height: 140px;
        border-width: 4px;
    }

    .premium-card {
        padding: 20px;
        border-radius: 22px;
    }

    .premium-card h3 {
        font-size: 22px;
    }

    .premium-card p {
        font-size: 15px;
    }

    .icon {
        font-size: 24px;
    }
}


/* =========================
   SMALL MOBILE (576px)
   ========================= */
@media (max-width: 576px) {

    .section-heading h1 {
        font-size: 30px;
    }

    .about-section {
        margin-top: -90px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .center-image {
        width: 260px;
        height: 260px;
    }

    .plate {
        width: 120px;
        height: 120px;
    }

    .premium-card {
        width: 100%;
        padding: 18px;
    }

    .premium-card h3 {
        font-size: 20px;
    }

    .premium-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .wheel {
        width: 250px;
        height: 250px;
    }
}


/* =========================
   EXTRA SMALL (400px)
   ========================= */
@media (max-width: 400px) {

    .section-heading h1 {
        font-size: 26px;
    }

    .center-image {
        width: 220px;
        height: 220px;
    }

    .plate {
        width: 100px;
        height: 100px;
    }

    .premium-card {
        padding: 15px;
    }

    .premium-card h3 {
        font-size: 18px;
    }

    .premium-card p {
        font-size: 13px;
    }
}


.section-dividerr {
    width: 100%;
    height: 58px;
    background: #f0c578;
    margin-top: -30px;
}


.menu-section {
    padding: 60px 0 70px;
    margin-top: -20px;
    overflow: hidden;
}

.menu-heading {
    text-align: center;
    margin-bottom: 45px;
}

.menu-heading h5 {
    color: #f0c578;
    letter-spacing: 5px;
    font-size: 22px;
}

.menu-heading h2 {
    color: #fff;
    font-size: 70px;
    font-family: 'Cinzel', serif;
}

.menu-slider {
    overflow: hidden;
    width: 100%;
}

.menu-track {
    display: flex;
    gap: 35px;
    width: max-content;

    animation: foodTrain 25s linear infinite;
}

.food-card {
    width: 320px;
    background: #f0c578;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(247, 160, 0, 0.15);
    transition: .5s ease;
}

.food-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;

    transition: .8s ease;
}

.food-card {
    position: relative;
    width: 340px;
    height: 430px;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    transition: .6s cubic-bezier(.19, 1, .22, 1);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, .35);

    flex-shrink: 0;
}

.food-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 1.2s ease;
}

.food-card h3 {
    color: #000000;
    text-align: center;
    padding: 25px;
    font-size: 24px;
}

.food-card:hover {
    transform: translateY(-15px);
    border-color: #f0c578;
    box-shadow:
        0 20px 50px rgba(240, 197, 120, .15);
}

.food-card:hover img {
    transform: scale(1.12);
}

@keyframes foodTrain {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1100px) {
    .menu-section{
        margin-top: -70px;
    }
}


@media (max-width: 768px) {

.menu-section {
    padding: 50px 20px;
    margin-top: -70px;
}
    .menu-heading {
        margin-bottom: 40px;
    }

    .menu-heading h5 {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .menu-heading h2 {
        font-size: 39px;
        line-height: 1.2;
    }

    .menu-track {
        gap: 20px;
    }

 .food-card {
    width: 260px;
    height: 360px;
    border-radius: 20px;
}

    .food-card h3 {
        font-size: 18px;
        padding: 15px;
    }

    /* optional but important: reduce motion on mobile */
    .menu-track {
        animation-duration: 40s;
    }
}


.section-dividerrr {
    width: 100%;
    height: 58px;
    background: #f0c578;
    margin-top: -10px;
}

.catering-section {
    position: relative;
    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

/* ===== IMAGE LAYER (CINEMATIC REVEAL) ===== */
.catering-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: url("../images/catering.png") center center/cover no-repeat;


    transform: scale(1.1);
    transform-origin: left bottom;

    clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%);

    transition:
        clip-path 2.2s cubic-bezier(0.77, 0, 0.18, 1),
        transform 0.2s ease;

    z-index: 0;
}

/* reveal animation trigger */
.catering-section.in-view::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(1);
}

/* ===== DARK CINEMATIC OVERLAY ===== */
.catering-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(90deg,
            rgba(0, 0, 0, .85) 0%,
            rgba(0, 0, 0, .45) 40%,
            rgba(0, 0, 0, .15) 70%,
            rgba(0, 0, 0, .4) 100%);

    z-index: 1;

    opacity: 0;
    transition: opacity 1s ease 0.6s;
}

.catering-section.in-view .catering-overlay {
    opacity: 1;
}

/* ===== CONTENT ===== */
.catering-content {
    position: relative;
    z-index: 2;

    width: 50%;
    padding-left: 8%;
}

/* Subtitle */
.catering-subtitle {
    display: block;
    color: #d8b26a;

    font-size: 30px;
    margin-bottom: 25px;

    font-family: Georgia, serif;

    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
}

/* Headings */
.catering-content h2 {
    color: #fff;
    font-size: clamp(28px, 7vw, 95px);
    line-height: 1;

    margin-bottom: 15px;

    font-family: 'Cinzel', serif;
    font-weight: 500;

    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
}

.catering-content h3 {
    color: #fff;
    font-size: clamp(18px, 4vw, 65px);
    font-weight: 400;

    margin-bottom: 45px;

    font-family: 'Cinzel', serif;

    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
}

/* Button */
.catering-btn {
    display: inline-block;
    font-family: 'Crete Round', serif;
    padding: 18px 55px;
    font-size: 19px;
    background: #c8a060;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .4s ease;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
}

.catering-btn:hover {
    background: #e0bc7f;
    transform: translateY(-5px);
}

/* ===== CINEMATIC TEXT ANIMATION ===== */
.catering-section.in-view .catering-subtitle {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
}

.catering-section.in-view .catering-content h2 {
    animation: fadeUp 1.1s ease forwards;
    animation-delay: 0.4s;
}

.catering-section.in-view .catering-content h3 {
    animation: fadeUp 1.1s ease forwards;
    animation-delay: 0.6s;
}

.catering-section.in-view .catering-btn {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.9s;
}

/* ===== KEYFRAME ===== */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
        filter: blur(8px);
    }

    60% {
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* =========================
   LARGE LAPTOPS
========================= */

@media (max-width:1400px) {

    .catering-content h2 {
        font-size: 80px;
    }

    .catering-content h3 {
        font-size: 55px;
    }

    .catering-subtitle {
        font-size: 26px;
    }
}

/* =========================
   LAPTOPS
========================= */

@media (max-width:1200px) {

    .catering-section {
        min-height: 600px;
    }

    .catering-content {
        width: 60%;
        padding-left: 5%;
    }

    .catering-content h2 {
        font-size: 65px;
    }

    .catering-content h3 {
        font-size: 45px;
    }

    .catering-subtitle {
        font-size: 22px;
    }

    .catering-btn {
        padding: 16px 45px;
        font-size: 17px;
    }
}

/* =========================
   TABLETS
========================= */

@media (max-width:992px) {

    .catering-section {
        min-height: 550px;
    }

    .catering-overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, .80),
                rgba(0, 0, 0, .55));
    }

    .catering-content {
        width: 100%;
        padding: 0 40px;
        text-align: center;
    }

    .catering-content h2 {
        font-size: 55px;
    }

    .catering-content h3 {
        font-size: 38px;
        margin-bottom: 35px;
    }

    .catering-subtitle {
        font-size: 20px;
    }
}

/* =========================
   LARGE MOBILE
========================= */

@media (max-width:768px) {

    .catering-section {
        min-height: 500px;
    }

    .catering-content {
        padding: 0 25px;
    }

    .catering-content h2 {
        font-size: 42px;
        line-height: 1.1;
    }

    .catering-content h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .catering-subtitle {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .catering-btn {
        padding: 14px 35px;
        font-size: 16px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:576px) {

    .catering-section {
        min-height: 450px;
    }

    .catering-content {
        padding: 0 20px;
    }

    .catering-content h2 {
        font-size: 34px;
    }

    .catering-content h3 {
        font-size: 25px;
    }

    .catering-subtitle {
        font-size: 20px;
    }

    .catering-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 25px;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width:400px) {

    .catering-content h2 {
        font-size: 28px;
    }

    .catering-content h3 {
        font-size: 18px;
    }

    .catering-subtitle {
        font-size: 14px;
    }

    .catering-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
}

.section-dividerrrr {
    width: 100%;
    height: 68px;
    background: #f0c578;
    margin-top: -10px;
}


.reviews-section {
    padding: 120px 5%;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
    margin-top: -50px;
}

.reviews-header span {
    color: #f0c578;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 22px;
}

.reviews-header h2 {
    font-size: 70px;
    color: #ffffff;
    font-family: 'Cinzel', serif;
    margin-top: 15px;
}


.slider {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    position: relative;
    margin-top: -50px;
}

/* soft edge fade (premium touch) */
.slider::before,
.slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* ================= TRACK ================= */
.slide-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scroll 35s linear infinite;
    will-change: transform;
}

.slider:hover .slide-track {
    animation-play-state: paused;
}

/* infinite loop */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================= CARD ================= */
.review-card {
    min-width: 50px;
    height: 240px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: 0.4s ease;
    border-radius: 14px;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ================= STARS ================= */
.review-stars {
    color: #d8a84e;
    font-size: 18px;
    letter-spacing: 3px;
}

/* ================= TEXT ================= */
.review-card p {
    color: #000000;
    font-size: 19px;
    line-height: 1.8;
}

/* ================= FOOTER ================= */
.review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f3e0b5;
}

.review-info h4 {
    font-size: 16px;
    color: #222;
    font-weight: 600;
}

.review-info span {
    font-size: 16px;
    color: #000000;
}

.review-btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.review-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #f0c578;
    color: #111;
    font-size: 19px;
    font-family: 'Crete Round', serif;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
}

/* =========================
   LARGE LAPTOPS
========================= */

@media (max-width:1200px) {

    .reviews-section {
        padding: 100px 5%;
    }

    .reviews-header h2 {
        font-size: 58px;
    }

    .reviews-header span {
        font-size: 18px;
    }
}

/* =========================
   TABLETS
========================= */

@media (max-width:992px) {

    .reviews-section {
        padding: 90px 4%;
    }

    .reviews-header {
        margin-top: 0;
        margin-bottom: 40px;
    }

    .reviews-header h2 {
        font-size: 48px;
    }

    .reviews-header span {
        font-size: 17px;
    }

    .slider {
        margin-top: 0;
        padding: 40px 0;
    }

    .review-card {
        width: 320px;
        height: auto;
        min-height: 240px;
        padding: 28px;
    }

    .review-card p {
        font-size: 17px;
    }
}

/* =========================
   LARGE MOBILE
========================= */

@media (max-width:768px) {

    .reviews-section {
        padding: 80px 20px;
    }

    .reviews-header h2 {
        font-size: 40px;
        line-height: 1.2;
    }

    .reviews-header span {
        font-size: 15px;
        letter-spacing: 2px;
    }

    .review-card {
        width: 280px;
        padding: 25px;
    }

    .review-card p {
        font-size: 16px;
        line-height: 1.7;
    }

    .review-stars {
        font-size: 16px;
    }

    .review-card img {
        width: 48px;
        height: 48px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:576px) {

    .reviews-section {
        padding: 70px 15px;
    }

    .reviews-header h2 {
        font-size: 32px;
    }

    .reviews-header span {
        font-size: 13px;
    }

    .slider {
        padding: 30px 0;
    }

    .slide-track {
        gap: 15px;
    }

    .review-card {
        width: 250px;
        padding: 20px;
        border-radius: 12px;
    }

    .review-card p {
        font-size: 15px;
    }

    .review-info h4 {
        font-size: 14px;
    }

    .review-info span {
        font-size: 13px;
    }

    .review-card img {
        width: 42px;
        height: 42px;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width:400px) {

    .reviews-header h2 {
        font-size: 28px;
    }

    .review-card {
        width: 220px;
        padding: 18px;
    }

    .review-card p {
        font-size: 14px;
    }

    .review-stars {
        font-size: 14px;
    }
}

.section-dividerrrrr {
    width: 100%;
    height: 68px;
    background: #f0c578;
    margin-top: -50px;
}


/* FAQ SECTION */

.faq-section {
    padding: 120px 8%;
    position: relative;
    margin-top: -100px;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: #f0c578;
    opacity: .05;
    border-radius: 50%;
    filter: blur(180px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* TITLE */

.faq-title {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 80px;
}

.faq-title span {
    color: #f0c578;
    letter-spacing: 4px;
    font-size: 15px;
}

.faq-title h2 {
    font-size: 75px;
    color: #fff;
    font-family: 'Cinzel', serif;
    margin: 20px 0;
    line-height: 1.1;
}

.faq-title h2 span {
    display: block;
    color: #f0c578;
    font-size: inherit;
    letter-spacing: normal;
}

.faq-title p {
    color: #d8d8d8;
    line-height: 1.8;
    font-size: 22px;
}

/* GRID */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */

.faq-card {
    position: relative;
    overflow: hidden;

    background: rgba(255, 255, 255, .04);

    border: 1px solid rgba(240, 197, 120, .15);

    border-radius: 25px;

    padding: 30px;

    cursor: pointer;

    backdrop-filter: blur(12px);

    transition:
        transform .4s ease,
        border-color .4s ease,
        box-shadow .4s ease;
}

.faq-card:hover {
    transform: translateY(-8px);

    border-color: #f0c578;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .25);

    background: rgba(240, 197, 120, .04);
}

/* GOLD BACKGROUND ANIMATION */

.faq-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 0;

    background:
        linear-gradient(180deg,
            transparent,
            rgba(240, 197, 120, .05));

    transition: .8s ease;
}

.faq-card.active::after {
    height: 100%;
}

/* TOP */

.faq-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-top h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
}

.faq-icon {
    color: #f0c578;
    font-size: 38px;
    font-weight: 300;

    transition: .5s ease;
}

.faq-card.active .faq-icon {
    transform: rotate(45deg);
}

/* ANSWER */

.faq-card p {

    position: relative;
    z-index: 2;

    color: #d8d8d8;
    line-height: 1.9;

    max-height: 0;
    font-size: 19px;

    opacity: 0;

    overflow: hidden;

    transform: translateY(-25px);

    transition:
        max-height .8s cubic-bezier(.23, 1, .32, 1),
        opacity .5s ease,
        transform .6s ease,
        margin-top .5s ease;

    margin-top: 0;
}

.faq-card.active p {

    max-height: 250px;

    opacity: 1;

    transform: translateY(0);

    margin-top: 20px;
}

/* ACTIVE CARD */

.faq-card.active {

    border-color: #f0c578;

    background: rgba(240, 197, 120, .06);

    box-shadow:
        0 0 30px rgba(240, 197, 120, .12);
}


/* ===== INITIAL STATE (hidden for scroll reveal) ===== */
.faq-title,
.faq-card {
    opacity: 0;
    transform: translateY(30px);
}

/* only animate via one system */
.faq-section.in-view .faq-title,
.faq-section.in-view .faq-card {
    animation: revealUp 1s cubic-bezier(.2, .8, .2, 1) forwards;
}

/* stagger */
.faq-section.in-view .faq-card:nth-child(n) {
    animation-delay: calc(var(--i) * 0.1s);
}

/* assign index manually */
.faq-card:nth-child(1) {
    --i: 1;
}

.faq-card:nth-child(2) {
    --i: 2;
}

.faq-card:nth-child(3) {
    --i: 3;
}

.faq-card:nth-child(4) {
    --i: 4;
}

.faq-card:nth-child(5) {
    --i: 5;
}

.faq-card:nth-child(6) {
    --i: 6;
}

.faq-card:nth-child(7) {
    --i: 7;
}

.faq-card:nth-child(8) {
    --i: 8;
}

/* ===== KEYFRAME ===== */
@keyframes revealUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.98);
        filter: blur(12px);
    }

    60% {
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* ===== SUBTLE GRID DEPTH MOVEMENT ===== */
.faq-grid {
    transform: perspective(1200px);
}

.faq-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* hover depth (premium lift) */
.faq-card:hover {
    transform: translateY(-10px) scale(1.01);
}

/* ===== ACTIVE CARD BREATHING GLOW ===== */
.faq-card.active {
    animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 25px rgba(240, 197, 120, .10);
    }

    50% {
        box-shadow: 0 0 45px rgba(240, 197, 120, .18);
    }

    100% {
        box-shadow: 0 0 25px rgba(240, 197, 120, .10);
    }
}

/* ===== ICON MICRO MOTION ===== */
.faq-icon {
    transition: transform 0.5s ease, color 0.4s ease;
}

.faq-card:hover .faq-icon {
    transform: rotate(90deg) scale(1.1);
}

/* MOBILE */

/* =========================
   LARGE LAPTOPS
========================= */

@media (max-width:1400px) {

    .faq-section {
        padding: 100px 6%;
    }

    .faq-title h2 {
        font-size: 65px;
    }

    .faq-title p {
        font-size: 20px;
    }
}

/* =========================
   LAPTOPS
========================= */

@media (max-width:1200px) {

    .faq-section {
        padding: 90px 5%;
    }

    .faq-title {
        margin-bottom: 60px;
    }

    .faq-title h2 {
        font-size: 56px;
    }

    .faq-title p {
        font-size: 18px;
    }

    .faq-top h3 {
        font-size: 20px;
    }

    .faq-card p {
        font-size: 17px;
    }
}

/* =========================
   TABLETS
========================= */

@media (max-width:992px) {

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-title {
        margin-bottom: 50px;
    }

    .faq-title h2 {
        font-size: 48px;
    }

    .faq-title p {
        font-size: 17px;
        line-height: 1.7;
    }

    .faq-card {
        padding: 25px;
    }

    .faq-top h3 {
        font-size: 19px;
        padding-right: 15px;
    }

    .faq-icon {
        font-size: 32px;
    }

    .faq-card.active p {
        max-height: 350px;
    }
}

/* =========================
   LARGE MOBILE
========================= */

@media (max-width:768px) {

    .faq-section {
        padding: 80px 20px;
    }

    .faq-title span {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .faq-title h2 {
        font-size: 40px;
        line-height: 1.2;
    }

    .faq-title p {
        font-size: 16px;
    }

    .faq-card {
        padding: 22px;
        border-radius: 20px;
    }

    .faq-top h3 {
        font-size: 18px;
        line-height: 1.5;
    }

    .faq-icon {
        font-size: 28px;
    }

    .faq-card p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:576px) {

    .faq-section {
        padding: 70px 15px;
        margin-top: -40px;
    }
     
    .faq-title {
        margin-bottom: 40px;
        margin-top: -50px;
    }

    .faq-title h2 {
        font-size: 32px;
    }

    .faq-title p {
        font-size: 15px;
        line-height: 1.7;
    }

    .faq-card {
        padding: 20px 18px;
    }

    .faq-top {
        align-items: flex-start;
        gap: 10px;
    }

    .faq-top h3 {
        font-size: 17px;
        width: 85%;
    }

    .faq-icon {
        font-size: 24px;
        min-width: 24px;
    }

    .faq-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .faq-card.active p {
        max-height: 450px;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width:400px) {

    .faq-title h2 {
        font-size: 28px;
    }

    .faq-section{
        margin-top: -40px;
    }

    .faq-title p {
        font-size: 14px;
    }

    .faq-card {
        padding: 18px 15px;
    }

    .faq-top h3 {
        font-size: 15px;
    }

    .faq-card p {
        font-size: 14px;
    }

    .faq-icon {
        font-size: 22px;
    }
}


.contact-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    margin-top: -120px;
    align-items: center;
    justify-content: center;
    gap: 70px;
    padding: 120px 8%;
    overflow: hidden;
}

/* LEFT SIDE */
.contact-left {
    flex: 1;
}

.contact-tag {
    display: inline-block;
    color: #f0c578;
    letter-spacing: 4px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-left h2 {
    font-size: 75px;
    color: #fff;
    font-family: 'Cinzel', serif;
    margin: 20px 0;
    line-height: 1.1;
}

.contact-left h2 span {
    display: block;
    color: #f0c578;
    font-size: inherit;
    letter-spacing: normal;
}

.contact-desc {
    color: #acacac;
    font-size: 23px;
    line-height: 1.9;
    margin-bottom: 50px;
}

/* CONTACT BOX */
.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 26px;
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
}

/* ICON */
.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f6ead7, #fff8ef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* TEXT */
.contact-box h3 {
    font-size: 24px;
    color: #1d1d1d;
    margin-bottom: 8px;
}

.contact-box p {
    color: #000000;
    font-size: 22px;
    line-height: 1.8;
}

/* RIGHT SIDE */
.contact-right {
    flex: 1;
}

.contact-right iframe {
    width: 100%;
    height: 900px;
    border: none;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* HOVER (ONLY SIMPLE, NO ANIMATION) */
.contact-box:hover {
    background: #fafafa;
}


@media (max-width:1200px) {

    .contact-section {
        padding: 100px 6%;
        gap: 50px;
        margin-top: -80px;
    }

    .contact-left h1 {
        font-size: 46px;
    }

    .contact-desc {
        font-size: 18px;
    }

    .contact-box h3 {
        font-size: 22px;
    }

    .contact-box p {
        font-size: 18px;
    }

    .contact-right iframe {
        height: 1000px;
    }
}


/* ===================================
   TABLETS
=================================== */

@media (max-width:992px) {

    .contact-section {
        flex-direction: column;
        gap: 50px;
        padding: 80px 5%;
        min-height: auto;
    }

    .contact-left,
    .contact-right {
        width: 100%;
        flex: none;
    }

    .contact-left h1 {
        font-size: 40px;
    }

    .contact-desc {
        font-size: 17px;
        margin-bottom: 40px;
    }

    .contact-right iframe {
        height: 500px;
    }
}


/* ===================================
   MOBILE TABLETS
=================================== */

@media (max-width:768px) {

    .contact-section {
        padding: 70px 20px;
        gap: 40px;
    }

    .contact-tag {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .contact-left h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .contact-desc {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .contact-box {
        padding: 22px;
        gap: 15px;
        border-radius: 18px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 24px;
    }

    .contact-box h3 {
        font-size: 20px;
    }

    .contact-box p {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-right iframe {
        height: 450px;
        border-radius: 24px;
    }
}


/* ===================================
   MOBILE
=================================== */

@media (max-width:576px) {

    .contact-section {
        padding: 60px 15px;
    }

    .contact-tag {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .contact-left {
        margin-top: -40px;
    }

    .contact-left h1 {
        font-size: 30px;
        margin-bottom: 48px;
    }

    .contact-left h2 {
        font-size: 30px;
       margin-top: -20px;
    }

    .contact-desc {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .contact-box {
        padding: 18px;
        border-radius: 16px;
        margin-bottom: 18px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 14px;
        font-size: 20px;
    }

    .contact-box h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .contact-box p {
        font-size: 14px;
    }

    .contact-right iframe {
        height: 350px;
        border-radius: 20px;
    }
}



@media (max-width:400px) {

    .contact-left h1 {
        font-size: 26px;
    }

    .contact-tag {
        font-size: 13px;
    }

    .contact-desc {
        font-size: 14px;
    }

    .contact-box {
        padding: 15px;
        gap: 12px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }

    .contact-box h3 {
        font-size: 16px;
    }

    .contact-box p {
        font-size: 13px;
    }

    .contact-right iframe {
        height: 280px;
    }
}


.footer {
    background: #F7E7CE;
    color: #030303;
    padding: 25px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left,
.footer-right {
    font-size: 18px;
}

.footer-left {
    margin-left: -50px;
}

.footer-link {
    color: #0a0a0a;
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    justify-content: flex-start;
    margin-left: -110px;
    gap: 10px;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
    margin: 0;
    /* remove spacing */
}

.social-icon:hover {
    background: #d4a94d;
    color: #111;
    transform: translateY(-4px);
}

/* =========================
   LARGE LAPTOPS
========================= */

@media (max-width:1200px) {

    .footer {
        padding: 25px 5%;
    }

    .footer-left {
        margin-left: 0;
    }

    .footer-social {
        margin-left: 0;
    }
}

/* =========================
   TABLETS
========================= */

@media (max-width:992px) {

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

    .footer-left,
    .footer-right {
        font-size: 16px;
        margin-left: 0;
    }

    .footer-social {
        justify-content: center;
        margin-left: 0;
        gap: 12px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:576px) {

    .footer {
        padding: 20px 15px;
        gap: 15px;
    }

    .footer-left,
    .footer-right {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }

    .footer-social {
        gap: 10px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width:400px) {

    .footer {
        padding: 18px 12px;
    }

    .footer-left,
    .footer-right {
        font-size: 13px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 105px;
    /* Places it above the back-to-top button */
    right: 40px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    color: #fff;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #f0c578;
    color: #003b52;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 1000;
    text-decoration: none;
}

.back-to-top:hover {
    background-color: #003b52;
    color: #f0c578;
}

/* Show button when scrolling down */
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* =========================
   TABLETS
========================= */
@media (max-width: 992px) {

    .back-to-top {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 26px;
        right: 25px;
        bottom: 25px;
    }

    .whatsapp-btn {
        width: 48px;
        height: 48px;
        font-size: 26px;
        right: 25px;
        bottom: 88px;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .back-to-top {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 24px;
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
        font-size: 24px;
        right: 20px;
        bottom: 78px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 576px) {

    .back-to-top {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 22px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-btn {
        width: 42px;
        height: 42px;
        font-size: 22px;
        right: 15px;
        bottom: 68px;
    }
}

/* =========================
   VERY SMALL PHONES
========================= */
@media (max-width: 400px) {

    .back-to-top {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 20px;
        right: 12px;
        bottom: 12px;
    }

    .whatsapp-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
        right: 12px;
        bottom: 60px;
    }
}

.hero {
    position: relative;
    overflow: hidden;
}

.floating-food-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Base Item */
.float-item {
    position: absolute;
    width: 130px;
    opacity: 1;
    animation: floatUp linear infinite;
    will-change: transform;
}

/* Positions */
.onion {
    left: 5%;
    bottom: 0;
    animation-duration: 14s;
}

.tomato {
    left: 25%;
    bottom: 0;
    animation-duration: 18s;
}

.leaf {
    left: 45%;
    bottom: 0;
    animation-duration: 16s;
}

.item1 {
    left: 60%;
    bottom: 0;
    animation-duration: 20s;
}

.item2 {
    left: 75%;
    bottom: 0;
    animation-duration: 17s;
}

.item3 {
    left: 88%;
    bottom: 0;
    animation-duration: 22s;
}

.item4 {
    left: 95%;
    bottom: 0;
    animation-duration: 19s;
}

/* Animation */
@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg) scale(.8);
        opacity: 0;
    }

    15%,
    50%,
    85% {
        opacity: 1;
    }

    100% {
        transform: translateY(-120vh) rotate(360deg) scale(1);
        opacity: 0;
    }
}

/* ==========================
   Tablet (768px and below)
   ========================== */
@media (max-width: 768px) {

    .float-item {
        width: 90px;
    }

    .onion {
        left: 3%;
    }

    .tomato {
        left: 20%;
    }

    .leaf {
        left: 38%;
    }

    .item1 {
        left: 55%;
    }

    .item2 {
        left: 70%;
    }

    .item3 {
        left: 83%;
    }

    .item4 {
        left: 92%;
    }

}

/* ==========================
   Mobile (480px and below)
   ========================== */
@media (max-width: 480px) {

    .float-item {
        width: 60px;
    }

    /* Reduce clutter */
    .item3,
    .item4 {
        display: none;
    }

    .onion {
        left: 5%;
    }

    .tomato {
        left: 28%;
    }

    .leaf {
        left: 50%;
    }

    .item1 {
        left: 72%;
    }

    .item2 {
        left: 88%;
    }

}

/* ==========================
   Small Mobile (360px and below)
   ========================== */
@media (max-width: 360px) {

    .float-item {
        width: 45px;
    }

    .item2 {
        display: none;
    }

    .onion {
        left: 8%;
    }

    .tomato {
        left: 35%;
    }

    .leaf {
        left: 65%;
    }

}

.halal-section {
    padding: 120px 8%;
    text-align: center;
    margin-top: -150px;
}

.halal-content h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #ffffff;
    /* White text */
    font-family: 'Cinzel', serif;
    margin-bottom: 50px;
}

.halal-content h2 span {
    color: #f0c578;
    /* Gold/Yellow */
}

.halal-image {
    display: flex;
    justify-content: center;
}

.halal-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
    display: block;
}

/* =========================
   LARGE LAPTOPS
========================= */

@media (max-width:1200px) {

    .halal-section {
        padding: 100px 5%;
    }

    .halal-content h2 {
        font-size: 44px;
        margin-bottom: 40px;
    }

    .halal-image img {
        max-width: 450px;
    }
}

/* =========================
   TABLETS
========================= */

@media (max-width:992px) {

    .halal-section {
        padding: 90px 30px;
        margin-top: -100px;
    }

    .halal-content h2 {
        font-size: 38px;
        margin-bottom: 35px;
    }

    .halal-image img {
        max-width: 400px;
        border-radius: 25px;
    }
}

/* =========================
   LARGE MOBILE
========================= */

@media (max-width:768px) {

    .halal-section {
        padding: 80px 20px;
        margin-top: -80px;
    }

    .halal-content h2 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .halal-image img {
        max-width: 340px;
        border-radius: 20px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:576px) {

    .halal-section {
        padding: 70px 15px;
        margin-top: -80px;
    }

    .halal-content h2 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 25px;
    }

    .halal-image img {
        max-width: 100%;
        border-radius: 18px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width:400px) {

    .halal-content h2 {
        font-size: 24px;
    }

    .halal-section{
        margin-top: -80px;
    }

    .halal-image img {
        border-radius: 15px;
    }
}