/* ================ Main CSS ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}

a {
    text-decoration: none;
}

/* NAVBAR */

.navbar {
    height: 82px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 18px 0;
}

.navbar-brand {
    font-size: 30px;
    font-weight: 700;
    color: #ffb703 !important;
}

.nav-link {
    color: #fff !important;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover {
    color: #ffb703 !important;
}

.btn-premium {
    background: linear-gradient(135deg, #ffb703, #fb8500);
    color: #000;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(255, 183, 3, 0.4);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255, 183, 3, 0.6);
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: #ffb703;
    filter: blur(180px);
    opacity: 0.15;
    top: -100px;
    right: -100px;
}

.hero-text h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text span {
    color: #d27929ff;
}

.hero-text p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 18px;
    max-width: 550px;
}

.hero-img img {
    width: 100%;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* SECTION TITLE */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 45px;
    font-weight: 700;
}

.section-title p {
    color: #aaa;
}

/* FOOD CARDS */

.food-section {
    padding: 100px 0;
}

.food-card {
    background: #1b1b1b;
    border-radius: 25px;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.food-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.food-content {
    padding: 25px;
}

.food-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.food-content p {
    color: #aaa;
    font-size: 14px;
}

.price {
    color: #ffb703;
    font-size: 24px;
    font-weight: 700;
}

/* APP SECTION */

.app-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.app-box {
    background: #151515;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.app-box h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.app-box p {
    color: #bbb;
    margin-bottom: 30px;
}

/* FOOTER */

footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: #888;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .hero {
        text-align: center;
        padding-top: 100px;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-img {
        margin-top: 50px;
    }

    .app-box {
        text-align: center;
    }
}

@media(max-width:576px) {

    .hero-text h1 {
        font-size: 38px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .app-box {
        padding: 30px;
    }

    .app-box h2 {
        font-size: 34px;
    }
}

/*===================================  */


.premium-footer {
    position: relative;
    background: #1f4b05;
    color: #fff;
    padding-top: 120px;
    overflow: hidden;
}

/* CURVE */

.footer-curve {
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 250px;
    background: #d9d9d9;
    border-radius: 50%;
}

.footer-curve::after {
    content: '';
    position: absolute;
    inset: 20px;
    background: #9ea68d;
    border-radius: 50%;
}

/* CONTENT */

.footer-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-content p {
    color: #f1f1f1;
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-size: 22px;
}

/* SOCIAL */

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: #1f4b05;
    transform: translateY(-4px);
}

/* DOWNLOAD */

.download-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.download-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.download-btns img {
    height: 65px;
    border-radius: 12px;
    background: #d9e56f;
    padding: 8px;
}

/* LOGO */

.footer-logo {
    max-width: 260px;
}

/* BOTTOM */

.footer-bottom {
    /* margin-top: 80px; */
    background: rgba(255, 255, 255, 0.1);
    padding: 22px 0;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #ddd;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #d9e56f;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .premium-footer {
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .download-btns {
        justify-content: center;
    }

    .footer-bottom-wrapper {
        justify-content: center;
        text-align: center;
    }

    .footer-content h2 {
        font-size: 36px;
    }

    .download-title {
        font-size: 34px;
    }
}

@media(max-width:576px) {

    .footer-content h2 {
        font-size: 28px;
    }

    .download-title {
        font-size: 28px;
    }

    .footer-contact {
        font-size: 18px;
    }

    .download-btns img {
        height: 55px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
    }
}

/* ============================= */

.lux-footer {
    position: relative;
    background: #101010;
    overflow: hidden;
    color: #fff;
    padding-top: 140px;
}

/* WAVE */

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 180px;
}

/* MAIN */

.footer-main {
    position: relative;
    z-index: 5;
    padding-bottom: 80px;
}

/* BRAND */

.footer-brand h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-brand h1 span {
    color: #ffb703;
}

.footer-brand p {
    color: #bdbdbd;
    line-height: 1.8;
    font-size: 15px;
}

/* NEWSLETTER */

.newsletter-box {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.newsletter-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-box p {
    color: #c9c9c9;
    margin-bottom: 30px;
}

/* INPUT */

.newsletter-input {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 60px;
    background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

.newsletter-input input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 18px 24px;
    color: #fff;
    font-size: 15px;
}

.newsletter-input button {
    border: none;
    padding: 0 35px;
    background: linear-gradient(135deg, #ffb703, #ff8800);
    color: #000;
    font-weight: 700;
    transition: 0.3s;
}

.newsletter-input button:hover {
    opacity: 0.9;
}

/* CONTACT */

.footer-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    color: #d4d4d4;
}

.footer-contact .dot {
    width: 6px;
    height: 6px;
    background: #ffb703;
    border-radius: 50%;
}

/* SOCIAL */

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ffb703;
    color: #000;
    transform: translateY(-5px);
}

/* DOWNLOAD */

.download-app h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.download-app p {
    color: #bdbdbd;
    margin-bottom: 30px;
}

/* APP BUTTONS */

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.app-btn {
    width: 280px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: 0.3s;
}

.app-btn:hover {
    background: #ffb703;
    color: #000;
    transform: translateY(-5px);
}

.app-btn i {
    font-size: 34px;
}

.app-btn small {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
}

.app-btn h6 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    background: #0b0b0b;
}

.footer-bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    color: #a5a5a5;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #ffb703;
    transition: 0.3s;
}

.footer-links a:hover::after {
    width: 100%;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .lux-footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact {
        justify-content: center;
    }

    .app-buttons {
        align-items: center;
    }

    .footer-bottom-wrap {
        justify-content: center;
        text-align: center;
    }

    .newsletter-box {
        padding: 35px;
    }

    .newsletter-box h2,
    .download-app h3 {
        font-size: 34px;
    }
}

@media(max-width:576px) {

    .newsletter-input {
        flex-direction: column;
        border-radius: 20px;
    }

    .newsletter-input button {
        width: 100%;
        padding: 16px;
    }

    .footer-brand h1 {
        font-size: 40px;
    }

    .newsletter-box h2,
    .download-app h3 {
        font-size: 28px;
    }

    .app-btn {
        width: 100%;
    }
}

/* ==========================*/


.custom-download-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 170px;
    height: 50px;

    background: #d27929ff;
    color: #fff;

    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;

    text-decoration: none;

    border-radius: 50px;

    border: 1px solid #00000071;

    /* bottom layer */
    /* box-shadow:
        0 6px 0 #ffd4a2; */

    transition: all 0.25s ease;
}

/* OUTER SHAPE */

.custom-download-btn::before {
    content: '';
    position: absolute;

    inset: -6px;

    border-radius: 60px;

    /* border:2px solid rgba(255,255,255,0.7); */

    pointer-events: none;
}

/* HOVER */

.custom-download-btn:hover {
    transform: translateY(-2px);

    /* box-shadow:
        0 9px 0 #f7ac5b; */

    color: #fff;
}

/* CLICK */

.custom-download-btn:active {
    transform: translateY(3px);

    /* box-shadow:
        0 3px 0 #b9c57b; */
}

/* MOBILE */

@media(max-width:768px) {

    .custom-download-btn {
        width: 170px;
        height: 60px;
        font-size: 18px;
    }

}

/* ================= */

.hero-section{
    background:#0a0a0a;
    position:relative;
    overflow:hidden;
}

.hero-section::before{
    content:'';
    position:absolute;
    top:-200px;
    right:-100px;
    width:500px;
    height:500px;
    background:rgba(255,140,0,.08);
    border-radius:50%;
    filter:blur(100px);
}

.hero-content h1{
    font-size:65px;
    font-weight:800;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#ff8c00;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#b8b8b8;
    max-width:550px;
    margin-bottom:35px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    color:#fff;
    font-size:14px;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:45px;
}

.btn-order{
    background:#ff8c00;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-order:hover{
    background:#ffa733;
    color:#fff;
    transform:translateY(-2px);
}

.btn-menu{
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    background:rgba(255,255,255,.03);
}

.btn-menu:hover{
    background:rgba(255,255,255,.08);
    color:#fff;
}

.hero-stats{
    display:flex;
    gap:20px;
}

.stat-box{
    background:#141414;
    border:1px solid rgba(255,255,255,.08);
    padding:20px 25px;
    border-radius:18px;
    min-width:120px;
}

.stat-box h4{
    color:#fff;
    margin-bottom:5px;
    font-weight:700;
}

.stat-box span{
    color:#999;
    font-size:13px;
}

.hero-image-wrapper{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-section .food-card{
    width:420px;
    height:420px;
    border-radius:35px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 30px 80px rgba(0,0,0,.6);
}

.hero-section .food-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.floating-card{
    position:absolute;
    background:rgba(20,20,20,.95);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    padding:14px 22px;
    border-radius:50px;
    backdrop-filter:blur(12px);
    font-weight:600;
}

.card-1{
    top:15%;
    left:-20px;
}

.card-2{
    bottom:15%;
    right:-20px;
}

@media(max-width:991px){

    .hero-content{
        text-align:center;
        margin-bottom:50px;
    }

    .hero-content p{
        margin:auto auto 30px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-content h1{
        font-size:50px;
    }

    .hero-section .food-card{
        width:320px;
        height:320px;
    }
}

@media(max-width:576px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-section .food-card{
        width:280px;
        height:280px;
    }

    .floating-card{
        font-size:12px;
        padding:10px 14px;
    }
}

.premium-navbar{
    padding:15px 0;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.navbar-brand img{
    object-fit:contain;
}

.nav-link{
    color:#fff !important;
    font-weight:500;
    margin:0 8px;
    position:relative;
    transition:.3s;
}

.nav-link:hover{
    color:#ff8c00 !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:0;
    width:0;
    height:2px;
    background:#ff8c00;
    transition:.3s;
    transform:translateX(-50%);
}

.nav-link:hover::after{
    width:70%;
}

.custom-download-btn{
    background:#ff8c00;
    color:#fff;
    padding:9px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    display:inline-block;
}

.custom-download-btn:hover{
    background:#ffa733;
    color:#fff;
    transform:translateY(-2px);
}

.navbar-toggler{
    border:none;
    background:#fff;
    padding:8px 10px;
}

.navbar-toggler:focus{
    box-shadow:none;
}

@media(max-width:991px){

    .navbar-collapse{
        background:#111;
        margin-top:15px;
        border-radius:16px;
        padding:20px;
        border:1px solid rgba(255,255,255,.08);
    }

    .nav-item{
        margin-bottom:10px;
    }

    .custom-download-btn{
        width:100%;
        text-align:center;
    }
}