@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*/
}


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;
    }
}

.catering-section{
    width: 100%;
    padding: 120px 20px;
    position: relative;
    margin-top: -50px;
    overflow: hidden;
}

/* decorative glow */

.catering-section::before{
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: rgba(210,169,64,0.08);
    border-radius: 50%;
    filter: blur(120px);
}

.catering-section::after{
    content: "";
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(13,59,30,0.08);
    border-radius: 50%;
    filter: blur(120px);
}


.catering-heading{
    text-align: center;
    max-width: 900px;
    margin: 0 auto 90px;
    position: relative;
    z-index: 2;
}

.catering-heading h2{
    font-size: 63px;
    color: #f0c578;
    font-family: 'Cormorant Garamond', serif;
    margin: 24px 0 20px;
    line-height: 1.1;
    font-weight: 600;
}

.catering-heading p{
    font-size: 22px;
    line-height: 1.9;
    color: #ffffff;
    max-width: 760px;
    margin: auto;
}


.catering-cta{
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.catering-btn{
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #f0c578, #d4a24f);
    color: #111;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 17px;
    text-decoration: none;
    font-family:'Crete Round',serif;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* shine effect */
.catering-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
    transition: 0.6s;
}

.catering-btn:hover::before{
    left:100%;
}

.catering-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(240,197,120,.25);
}

.catering-container{
    max-width: 1550px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    z-index: 2;
}


.catering-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

/* reverse */

.catering-row.reverse .catering-img{
    order: 2;
}

.catering-row.reverse .catering-text{
    order: 1;
}

.catering-img{
    position:relative;
    overflow:hidden;

    background:rgba(255,255,255,.03);
    border:1px solid rgba(240,197,120,.2);

    border-radius:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.3);

    isolation:isolate;

    transition:.4s ease;
}

.catering-img:hover{
    border-color:#f0c578;
    box-shadow:
    0 15px 35px rgba(0,0,0,.3);
}

.catering-img::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
    linear-gradient(to top,
    rgba(0,0,0,0.18),
    transparent 60%);
    z-index: 1;
}

.catering-img img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;

    transition: 0.7s ease;
}



.catering-row:hover .catering-img img{
    transform: scale(1.06);
}


.catering-text{
    padding: 20px;
    position: relative;
}


.catering-text h2{
    font-size: 35px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #f0c578;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    padding-top: 28px;
}

.catering-text p{
    font-size: 19px;
    line-height: 2;
    color: #ffffff;
    max-width: 560px;
}


.catering-row{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(240,197,120,.2);

    border-radius:25px;
    padding:40px 30px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.3);

    transition:.4s ease;
}

.catering-row:hover{
    border-color:#f0c578;

    transform:translateY(-8px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.35);
}

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

@media (max-width:1400px){

    .catering-container{
        max-width:1200px;
    }

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

    .catering-heading p{
        font-size:20px;
    }

    .catering-row{
        gap:50px;
    }

    .catering-text h2{
        font-size:32px;
    }

    .catering-text p{
        font-size:18px;
    }
}


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

@media (max-width:1200px){

    .catering-section{
        padding:100px 30px;
    }

    .catering-heading{
        margin-bottom:70px;
    }

    .catering-heading h2{
        font-size:48px;
    }

    .catering-heading p{
        font-size:18px;
        max-width:700px;
    }

    .catering-row{
        gap:40px;
        padding:30px;
    }

    .catering-img img{
        height:280px;
    }

    .catering-text h2{
        font-size:30px;
    }

    .catering-text p{
        font-size:17px;
        line-height:1.9;
    }
}


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

@media (max-width:992px){

    .catering-section{
        padding:90px 25px;
    }

    .catering-container{
        gap:50px;
    }

    .catering-row{
        grid-template-columns:1fr;
        gap:30px;
        text-align:center;
    }

    .catering-row.reverse .catering-img,
    .catering-row.reverse .catering-text{
        order:unset;
    }

    .catering-text{
        padding:10px;
    }

    .catering-text p{
        max-width:100%;
        margin:auto;
    }

    .catering-img img{
        height:350px;
    }

    .catering-heading h2{
        font-size:42px;
    }

    .catering-heading p{
        font-size:17px;
    }
}


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

@media (max-width:768px){

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

    .catering-heading{
        margin-bottom:50px;
    }

    .catering-heading h2{
        font-size:36px;
    }

    .catering-heading p{
        font-size:16px;
        line-height:1.8;
    }

    .catering-btn{
        padding:14px 34px;
        font-size:15px;
    }

    .catering-row{
        padding:20px;
        border-radius:20px;
    }

    .catering-img{
        border-radius:18px;
    }

    .catering-img img{
        height:260px;
    }

    .catering-text h2{
        font-size:28px;
        margin-bottom:18px;
        padding-top:0;
    }

    .catering-text p{
        font-size:16px;
        line-height:1.8;
    }
}


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

@media (max-width:576px){

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

    .catering-heading h2{
        font-size:30px;
    }

    .catering-heading p{
        font-size:15px;
    }

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

    .catering-row{
        padding:15px;
    }

    .catering-img img{
        height:220px;
    }

    .catering-text h2{
        font-size:24px;
    }

    .catering-text p{
        font-size:15px;
        line-height:1.7;
    }
}


/* =========================
   EXTRA SMALL
========================= */

@media (max-width:400px){

    .catering-heading h2{
        font-size:26px;
    }

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

    .catering-img img{
        height:190px;
    }

    .catering-text h2{
        font-size:22px;
    }

    .catering-text p{
        font-size:14px;
    }
}



.catering-events {
    position: relative;
    width: 100%;
    padding: 70px 20px;
    overflow: hidden;
    text-align: center; 
    margin-top: -90px; /* 🔥 center all text */
}

/* Container centered */
.catering-eventss {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;   /* 🔥 center content */
}

/* Text wrapper */
.catering-elevate {
    width: 100%;
}

/* H1 styling */
.catering-elevate h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    font-family:'Cinzel',serif;
    font-weight: bold;
    white-space: nowrap;       /* 🔥 forces ONE line */
}

/* H4 styling */
.catering-elevate h4 {
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f0c578;
}

/* =========================
   LARGE LAPTOP
========================= */

@media (max-width:1200px){

    .catering-events{
        padding:60px 25px;
    }

    .catering-elevate h1{
        font-size:38px;
    }

    .catering-elevate h4{
        font-size:18px;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width:992px){

    .catering-events{
        padding:55px 20px;
    }

    .catering-elevate h1{
        font-size:34px;

        /* allow wrapping on tablets */
        white-space:normal;
        line-height:1.2;
    }

    .catering-elevate h4{
        font-size:17px;
        letter-spacing:1.5px;
    }
}


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

@media (max-width:768px){

    .catering-events{
        padding:50px 18px;
        margin-top:-80px;
    }

    .catering-elevate h1{
        font-size:28px;
        line-height:1.3;
        white-space:normal;
    }

    .catering-elevate h4{
        font-size:15px;
        letter-spacing:1px;
    }
}


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

@media (max-width:576px){

    .catering-events{
        padding:45px 15px;
        margin-top: -80px;
    }

    .catering-elevate h1{
        font-size:24px;
        line-height:1.35;
    }

    .catering-elevate h4{
        font-size:14px;
    }
}


/* =========================
   EXTRA SMALL
========================= */

@media (max-width:400px){

    .catering-elevate h1{
        font-size:20px;
    }

    .catering-elevate h4{
        font-size:13px;
        letter-spacing:.5px;
    }
}


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

.cateringg-container{
    max-width: 1500px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;

    padding: 60px;
    border-radius: 30px;

    background: rgba(255,255,255,.04);
    border: 1px solid rgba(240,197,120,.2);

    backdrop-filter: blur(18px);

    box-shadow: 0 25px 80px rgba(0,0,0,.45);

    transform: translateY(60px);
    opacity: 0;

    animation: fadeUp 1s ease forwards;
}

/* ===============================
   LEFT SIDE TEXT
================================= */

.cateringg-info h2{
    font-size: 60px;
    color: #f0c578;
    font-family:'Cinzel',serif;
    margin-bottom: 20px;
    position: relative;
}

.cateringg-info h2::after{
    content:"";
    width:80px;
    height:3px;
    background:#f0c578;
    position:absolute;
    left:0;
    bottom:-10px;
}

.cateringg-info p{
    font-size: 21px;
    line-height: 1.9;
    color: rgba(255,255,255,.85);
    margin-top: 25px;
}

/* phone highlight */
.cateringg-info a{
    color:#f0c578;
    text-decoration:none;
    font-weight:600;
}

/* ===============================
   FORM CARD
================================= */

.cateringg-form{
    display: flex;
    flex-direction: column;
    gap: 18px;
     width:100%;
    max-width:700px;
    padding: 35px;
    border-radius: 25px;
    background: rgba(0,0,0,.35);
    border: 1px solid rgba(240,197,120,.15);
    box-shadow: inset 0 0 40px rgba(0,0,0,.3);
}

/* inputs */
.cateringg-form input,
.cateringg-form textarea{
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    font-size: 16px;
    background: rgba(255,255,255,.03);
    color: #fff;
    outline: none;
    transition: 0.4s ease;
}

/* focus glow */
.cateringg-form input:focus,
.cateringg-form textarea:focus{
    border-color: #f0c578;
    box-shadow: 0 0 20px rgba(240,197,120,.15);
    transform: translateY(-2px);
}

/* textarea */
.cateringg-form textarea{
    min-height: 120px;
    resize: none;
}

/* ===============================
   BUTTON (PREMIUM CTA)
================================= */

.hero-book{
    padding: 14px 22px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0c578, #d4a24f);
    color: #111;
    font-weight: 600;
    font-size: 16px;
    font-family:'Crete Round',serif;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* shine effect */
.hero-book::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
    transition: 0.6s;
}

.hero-book:hover::before{
    left:100%;
}

.hero-book:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(240,197,120,.25);
}

.hero-cater{
    padding: 14px 22px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #f0c578, #d4a24f);
    color: #111;
    font-weight: 600;
    font-size: 16px;
    font-family:'Crete Round',serif;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* shine effect */
.hero-cater::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
    transition: 0.6s;
}

.hero-cater:hover::before{
    left:100%;
}

.hero-cater:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(240,197,120,.25);
}

.catering-menu-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 15px;
}

/* ===============================
   ANIMATION
================================= */

@keyframes fadeUp{
    from{
        opacity:0;
        transform: translateY(60px);
    }
    to{
        opacity:1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE
================================= */

/* =========================
   LARGE LAPTOP
========================= */

@media (max-width:1400px){

    .cateringg-container{
        max-width:1200px;
        gap:50px;
    }

    .cateringg-info h2{
        font-size:52px;
    }

    .cateringg-info p{
        font-size:19px;
    }
}


/* =========================
   LAPTOP
========================= */

@media (max-width:1200px){

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

    .cateringg-container{
        padding:45px;
        gap:40px;
    }

    .cateringg-info h2{
        font-size:45px;
    }

    .cateringg-info p{
        font-size:18px;
        line-height:1.8;
    }

    .cateringg-form{
        padding:30px;
    }
}


/* =========================
   TABLET
========================= */

@media (max-width:992px){

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

    .cateringg-container{
        grid-template-columns:1fr;
        gap:40px;
        padding:35px;
        text-align:center;
    }

    .cateringg-info h2{
        font-size:40px;
    }

    .cateringg-info h2::after{
        left:50%;
        transform:translateX(-50%);
    }

    .cateringg-info p{
        font-size:17px;
    }

    .cateringg-form{
        max-width:100%;
        margin:auto;
    }
}


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

@media (max-width:768px){

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

    .cateringg-container{
        padding:25px;
        border-radius:22px;
    }

    .cateringg-info h2{
        font-size:34px;
    }

    .cateringg-info p{
        font-size:16px;
        line-height:1.8;
    }

    .cateringg-form{
        padding:22px;
        border-radius:18px;
    }

    .cateringg-form input,
    .cateringg-form textarea{
        font-size:15px;
        padding:13px 14px;
    }

    .hero-book{
        width:100%;
    }
}


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

@media (max-width:576px){

    .cateringg-container{
        padding:20px;
    }

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

    .cateringg-info h2{
        font-size:28px;
    }

    .cateringg-info p{
        font-size:15px;
    }

    .cateringg-form{
        padding:18px;
    }

    .cateringg-form textarea{
        min-height:100px;
    }
}


/* =========================
   EXTRA SMALL
========================= */

@media (max-width:400px){

    .cateringg-info h2{
        font-size:24px;
    }

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

    .cateringg-info p{
        font-size:14px;
    }

    .cateringg-container{
        padding:15px;
    }

    .cateringg-form{
        padding:15px;
    }
}


.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);
}


@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;
    }
}


.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color:  #f0c578;
  color:  #031b49;
  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: #031b49;
  color: #f0c578;
}

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

.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;
}
