body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f0f;
    color: white;
}

/* NAVBAR */

.custom-navbar {
    background-color: #000;
    padding: 15px 0;
}

.logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 15px;
    filter: drop-shadow(0 0 10px rgba(255,165,0,0.35));
}

.brand-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text {
    font-size: 2rem;
    font-weight: 800;
    color: orange;
}

.brand-slogan {
    font-size: 0.75rem;
    color: #ccc;
    letter-spacing: 1px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: orange;
}

.nav-link {
    color: white !important;
    margin-left: 20px;
    font-weight: 500;
}

    .nav-link:hover {
        color: orange !important;
    }

/* HERO */



.overlay {
    background: rgba(0,0,0,0.65);
    width: 100%;
    height: 100%;
}

.hero-content {
    max-width: 600px;
}

    .hero-content h1 {
        font-size: 5rem;
        font-weight: 700;
        color: orange;
    }

    .hero-content p {
        font-size: 1.4rem;
        margin: 20px 0;
    }

/* BUTTON */

.custom-btn {
    background-color: orange;
    border: none;
    color: black;
    font-weight: 600;
    padding: 12px 25px;
}

    .custom-btn:hover {
        background-color: #ffb733;
    }

/* ABOUT */

.about-section {
    padding: 100px 0;
}

    .about-section h2 {
        color: orange;
        font-weight: 700;
        margin-bottom: 20px;
    }

/* MENU */

.menu-page {
    padding: 100px 0;
}

.menu-image {
    max-width: 900px;
    width: 100%;
}

/* CONTACT */

.contact-page {
    padding: 100px 0;
}

.contact-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
}

.form-control {
    background-color: #222;
    border: 1px solid #444;
    color: white;
}

    .form-control:focus {
        background-color: #222;
        color: white;
        border-color: orange;
        box-shadow: none;
    }

/* FOOTER */

.footer-section {
    background-color: black;
    padding: 20px 0;
    margin-top: 50px;
}
/* MENU SECTION */

.menu-section {
    padding: 100px 0;
    background: #0f0f0f;
}

.menu-title {
    font-size: 4rem;
    color: orange;
    font-weight: 700;
}

.menu-subtitle {
    color: #ccc;
    font-size: 1.2rem;
}

.food-card {
    background: #171717;
    border: 1px solid rgba(255, 165, 0, 0.35);
    border-radius: 22px;
    padding: 24px;
    height: 100%;
}

    .food-card:hover {
        transform: translateY(-5px);
        border-color: orange;
        box-shadow: 0 0 20px rgba(255,165,0,0.3);
    }

    .food-card h2 {
        color: orange;
        margin-bottom: 25px;
        font-weight: 700;
    }

    .food-card ul {
        list-style: none;
        padding: 0;
    }

    .food-card li {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px dashed #444;
        color: white;
    }

        .food-card li:last-child {
            border-bottom: none;
        }

.food-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
    margin-bottom: 22px;
}

.food-card {
    overflow: hidden;
}

/* HERO SECTION */

.hero-section {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
}

.hero-row {
    min-height: calc(100vh - 90px);
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-row {
    min-height: calc(100vh - 90px);
    align-items: center;
}
.hero-tag {
    display: inline-block;
    background: rgba(255, 165, 0, 0.15);
    color: orange;
    padding: 10px 18px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 600;
    border: 1px solid rgba(255,165,0,0.3);
}

.hero-content h1 {
    font-size: 6rem;
    font-weight: 800;
    color: orange;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.4rem;
    color: #ddd;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* HERO IMAGE */

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    max-width: 700px;
    width: 100%;
    filter: drop-shadow(0 0 40px rgba(255,165,0,0.35));
    animation: floatImage 4s ease-in-out infinite;
}

/* BUTTONS */

.custom-btn {
    background: orange;
    color: black;
    padding: 15px 32px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    transition: 0.3s ease;
}

    .custom-btn:hover {
        background: #ffbe33;
        transform: translateY(-3px);
    }

.contact-btn {
    padding: 15px 32px;
    border-radius: 12px;
    font-weight: 600;
}

/* FLOATING ANIMATION */

@keyframes floatImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ABOUT SECTION */

.about-section {
    padding: 120px 0;
    background: #0f0f0f;
}

.section-tag {
    color: orange;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
}

.about-section h2 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    margin: 20px 0;
}

.about-section p {
    color: #bbb;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 25px;
    box-shadow: 0 0 40px rgba(255,165,0,0.2);
}

/* FEATURES */

.feature-list {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    background: #1a1a1a;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,165,0,0.2);
    color: white;
    transition: 0.3s ease;
    text-decoration: none;
    display: block;
}

    .feature-item:hover {
        border-color: orange;
        transform: translateY(-3px);
    }

/* MOBILE */

@media(max-width: 991px) {

    /* HERO SECTION */

    .hero-section {
        padding-top: 160px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 50px;
    }

        .hero-content h1 {
            font-size: 4rem;
            line-height: 1.1;
        }

        .hero-content p {
            font-size: 1.2rem;
        }

    .hero-buttons {
        justify-content: center;
    }

    /* NAVBAR */

    .navbar-brand {
        max-width: 70%;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .brand-text {
        font-size: 1.6rem;
    }

    .brand-slogan {
        font-size: 0.65rem;
    }

    /* FEATURES */

    .feature-list {
        grid-template-columns: 1fr;
    }

    /* ABOUT */

    .about-section h2 {
        font-size: 2.2rem;
    }

    /* HERO IMAGE */

    .hero-image {
        margin-top: 20px;
    }
}

.custom-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(10px);
}

.footer-link {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s ease;
}

    .footer-link:hover {
        color: orange;
    }

/* CONTACT PAGE */

.contact-section {
    padding: 140px 0 100px;
    background: #0a0a0a;
}

.contact-title {
    font-size: 4rem;
    font-weight: 800;
    color: orange;
    margin-bottom: 15px;
}

.contact-subtitle {
    color: #bbb;
    font-size: 1.2rem;
}

/* CONTACT CARDS */

.contact-info-card,
.contact-form-card {
    background: #171717;
    border: 1px solid rgba(255,165,0,0.2);
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    transition: 0.3s ease;
}

    .contact-info-card:hover,
    .contact-form-card:hover {
        border-color: orange;
        box-shadow: 0 0 30px rgba(255,165,0,0.15);
    }

    /* HEADINGS */

    .contact-info-card h3 {
        color: orange;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .contact-info-card p {
        color: #ddd;
        line-height: 1.8;
    }

.contact-link {
    color: white;
    text-decoration: none;
}

    .contact-link:hover {
        color: orange;
    }

/* SOCIAL */

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    background: #222;
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid #333;
}

    .social-btn:hover {
        background: orange;
        color: black;
        border-color: orange;
    }

/* FORM */

.modern-input {
    background: #111 !important;
    border: 1px solid #333 !important;
    color: white !important;
    padding: 15px;
    border-radius: 14px;
}

    .modern-input:focus {
        border-color: orange !important;
        box-shadow: none !important;
    }

/* MAP */

.map-section {
    margin-top: 80px;
}

    .map-section iframe {
        width: 100%;
        height: 450px;
        border: none;
        border-radius: 25px;
        filter: grayscale(100%) invert(92%) contrast(90%);
    }

/* MOBILE */

@media(max-width: 991px) {

    .contact-title {
        font-size: 3rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 30px;
    }
}

/* ORDER BUTTON */

.order-btn {
    background: orange;
    color: black;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .order-btn:hover {
        background: #ffbe33;
        color: black;
        transform: translateY(-2px);
        box-shadow: 0 0 20px rgba(255,165,0,0.35);
    }

/* FOOTER */

.footer-section {
    background: #000;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-brand {
    color: orange;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-text {
    color: #bbb;
    margin: 0;
}

.footer-divider {
    border-color: #222;
    margin-top: 40px;
}

.footer-link {
    color: #888;
    text-decoration: none;
    transition: 0.3s ease;
}

    .footer-link:hover {
        color: orange;
    }

/* MOBILE */

@media(max-width: 991px) {

    .order-btn {
        margin-top: 15px;
        width: 100%;
    }

    .footer-content {
        text-align: center;
        justify-content: center;
    }
}