:root {

    --gold: #D4A72C;
    --gold-light: #E8C76A;
    --gold-dark: #A87812;

    --black: #080808;
    --black-soft: #111111;
    --charcoal: #181818;

    --white: #FFFFFF;
    --off-white: #F8F7F3;

    --text-dark: #161616;
    --text-muted: #777777;

    --border: #E4E1D8;
}


/* =====================================================
   GENERAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "DM Sans", sans-serif;

    color: var(--text-dark);

    background: var(--white);

    line-height: 1.7;

}

h1,
h2,
h3,
h4 {

    font-family: "Playfair Display", serif;

}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.section-padding {
    padding: 110px 0;
}


/* =====================================================
   NAVBAR
===================================================== */

.palace-navbar {

    background: var(--black);

    padding: 15px 0;

    border-bottom: 1px solid rgba(212,167,44,.25);

}

.palace-brand img {

    width: 150px;

    height: 72px;

    object-fit: contain;

}

.navbar-nav {

    gap: 10px;

}

.nav-link {

    color: rgba(255,255,255,.75) !important;

    font-size: 13px;

    font-weight: 500;

    padding: 10px 15px !important;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.nav-link:hover,
.nav-link.active {

    color: var(--gold-light) !important;

}

.navbar-toggler {

    border: 1px solid rgba(255,255,255,.2);

    color: var(--gold);

    font-size: 25px;

}

.navbar-toggler:focus {

    box-shadow: none;

}


/* =====================================================
   BUTTONS
===================================================== */

.btn {

    border-radius: 2px;

    padding: 13px 26px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .4px;

}

.btn-gold {

    background: var(--gold);

    border: 1px solid var(--gold);

    color: var(--black);

}

.btn-gold:hover {

    background: var(--gold-light);

    border-color: var(--gold-light);

    color: var(--black);

}

.btn-outline-gold {

    border: 1px solid var(--gold);

    color: var(--gold-dark);

    background: transparent;

}

.btn-outline-gold:hover {

    background: var(--gold);

    color: var(--black);

}

.btn-outline-white {

    border: 1px solid rgba(255,255,255,.65);

    color: white;

    background: transparent;

}

.btn-outline-white:hover {

    background: white;

    color: black;

}


/* =====================================================
   HERO
===================================================== */

.hero-section {

    position: relative;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.96),
            rgba(0,0,0,.78)
        );

    color: white;

    padding: 90px 0 100px;

    overflow: hidden;

}

.hero-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(
            circle at 80% 20%,
            rgba(212,167,44,.14),
            transparent 35%
        );

}

.hero-content {

    position: relative;

    z-index: 2;

}

.gold-label {

    display: inline-block;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 18px;

}

.hero-content h1 {

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.04;

    margin-bottom: 25px;

    color: white;

}

.hero-content h1 span {

    display: block;

    color: var(--gold-light);

}

.hero-content > p {

    max-width: 560px;

    color: rgba(255,255,255,.68);

    font-size: 16px;

    margin-bottom: 35px;

}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.hero-info {

    display: flex;

    gap: 40px;

    margin-top: 50px;

}

.hero-info > div {

    display: flex;

    align-items: center;

    gap: 12px;

}

.hero-info i {

    color: var(--gold);

    font-size: 22px;

}

.hero-info small {

    display: block;

    color: rgba(255,255,255,.45);

    font-size: 9px;

    letter-spacing: 1px;

}

.hero-info strong {

    display: block;

    font-size: 12px;

    font-weight: 500;

}

.hero-image-wrapper {

    position: relative;

    z-index: 2;

}

.hero-image {

    width: 100%;

    height: 580px;

    object-fit: cover;

    border: 1px solid rgba(212,167,44,.55);

}

.hero-rating {

    position: absolute;

    bottom: 25px;

    left: -25px;

    background: var(--black);

    border: 1px solid rgba(212,167,44,.5);

    padding: 18px 22px;

    min-width: 210px;

}

.stars {

    color: var(--gold);

    letter-spacing: 3px;

    margin-bottom: 4px;

}

.hero-rating strong {

    display: block;

    font-size: 13px;

}

.hero-rating span {

    display: block;

    color: rgba(255,255,255,.55);

    font-size: 10px;

}


/* =====================================================
   GOLD DIVIDER
===================================================== */

.gold-divider {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 10px 0;

}

.gold-divider span {

    height: 1px;

    background: var(--gold);

    width: 90px;

}

.gold-divider i {

    color: var(--gold);

    font-size: 8px;

}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    right: 0;
    bottom: 30px;
    background: var(--black);
    color: white;
    border: 1px solid var(--gold);
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-badge strong {

    font-family: "Playfair Display", serif;

    font-size: 35px;

    color: var(--gold);

}

.about-badge span {

    font-size: 11px;

    line-height: 1.4;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.about-content {

    padding-left: 30px;

}

.about-content h2 {

    font-size: 48px;

    line-height: 1.15;

    margin-bottom: 25px;

}

.about-content h2 span {

    display: block;

    color: var(--gold-dark);

}

.about-content p {

    color: var(--text-muted);

    max-width: 600px;

}

.about-features {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 15px;

    margin-top: 30px;

}

.about-features div {

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 600;

    font-size: 13px;

}

.about-features i {

    color: var(--gold);

}


/* =====================================================
   MENU
===================================================== */

.menu-section {

    background: var(--off-white);

}

.section-heading {

    max-width: 650px;

    margin: auto;

}

.section-heading h2 {

    font-size: 48px;

    line-height: 1.15;

    margin-bottom: 20px;

}

.section-heading h2 span {

    color: var(--gold-dark);

}

.section-heading p {

    color: var(--text-muted);

}

.menu-tabs {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin: 40px 0;

}

.menu-tab {

    background: transparent;

    border: 1px solid #D9D6CD;

    color: #666;

    padding: 10px 22px;

    border-radius: 0;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;

    cursor: pointer;

}

.menu-tab:hover,
.menu-tab.active {

    background: var(--black);

    border-color: var(--gold);

    color: var(--gold-light);

}

.food-card {

    background: white;

    height: 100%;

    border: 1px solid #E8E5DD;

    transition: .3s ease;

}

.food-card:hover {

    transform: translateY(-6px);

    border-color: rgba(212,167,44,.7);

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);

}

.food-image {

    position: relative;

    overflow: hidden;

}

.food-image img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    transition: .5s ease;

}

.food-card:hover .food-image img {

    transform: scale(1.05);

}

.food-category {

    position: absolute;

    top: 15px;

    left: 15px;

    background: var(--black);

    color: var(--gold-light);

    border: 1px solid var(--gold);

    padding: 5px 12px;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.food-content {

    padding: 22px;

}

.food-title {

    display: flex;

    justify-content: space-between;

    gap: 15px;

}

.food-content h4 {

    font-size: 20px;

    margin: 0;

}

.food-price {

    color: var(--gold-dark);

    font-weight: 700;

    white-space: nowrap;

    font-size: 13px;

}

.food-content p {

    color: var(--text-muted);

    font-size: 13px;

    margin: 12px 0 0;

}


/* =====================================================
   BUFFET
===================================================== */

.buffet-section {

    background: var(--black);

    padding: 90px 0;

}

.buffet-card {

    background:
        linear-gradient(
            135deg,
            #111111,
            #050505
        );

    border: 1px solid rgba(212,167,44,.45);

    padding: 55px;

}

.buffet-content {

    color: white;

}

.buffet-content h2 {

    font-size: 52px;

    line-height: 1.1;

    margin-bottom: 25px;

}

.buffet-content h2 span {

    display: block;

    color: var(--gold);

}

.buffet-content > p {

    color: rgba(255,255,255,.65);

    max-width: 530px;

}

.buffet-details {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin: 35px 0;

}

.buffet-details > div {

    display: flex;

    align-items: center;

    gap: 10px;

}

.buffet-details i {

    color: var(--gold);

    font-size: 22px;

}

.buffet-details small {

    display: block;

    color: rgba(255,255,255,.45);

    font-size: 9px;

    letter-spacing: 1px;

}

.buffet-details strong {

    display: block;

    font-size: 12px;

}

.buffet-image {

    position: relative;

    height: 470px;

}

.buffet-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.buffet-overlay {

    position: absolute;

    bottom: 20px;

    left: 20px;

    right: 20px;

    background: rgba(0,0,0,.9);

    border-left: 2px solid var(--gold);

    color: white;

    padding: 18px 20px;

}

.buffet-overlay span {

    display: block;

    color: var(--gold);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;

}

.buffet-overlay strong {

    font-family: "Playfair Display", serif;

    font-size: 24px;

}


/* =====================================================
   RESERVATION
===================================================== */

.reservation-section {

    background: var(--off-white);

}

.reservation-card {

    background: white;

    padding: 60px;

    border-top: 3px solid var(--gold);

    box-shadow:
        0 20px 60px rgba(0,0,0,.06);

}

.reservation-card h2 {

    font-size: 48px;

}

.reservation-card h2 span {

    color: var(--gold-dark);

}

.reservation-card p {

    color: var(--text-muted);

}

.reservation-card label {

    display: block;

    font-size: 12px;

    font-weight: 600;

    margin-bottom: 8px;

}

.form-control,
.form-select {

    border: 1px solid var(--border);

    border-radius: 0;

    padding: 14px 15px;

    font-size: 13px;

}

.form-control:focus,
.form-select:focus {

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(212,167,44,.12);

}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {

    background: var(--black);

    padding: 70px 0;

    border-top: 1px solid rgba(212,167,44,.3);

    border-bottom: 1px solid rgba(212,167,44,.3);

}

.contact-item {

    text-align: center;

    color: white;

}

.contact-item i {

    color: var(--gold);

    font-size: 28px;

}

.contact-item h4 {

    margin: 15px 0 5px;

    font-size: 20px;

}

.contact-item p {

    margin: 0;

    color: rgba(255,255,255,.6);

    font-size: 12px;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: #050505;

    color: white;

    padding: 70px 0 25px;

}

.footer-logo {

    width: 180px;

    height: auto;

}

.footer p {

    color: rgba(255,255,255,.55);

    max-width: 350px;

    margin-top: 18px;

    font-size: 13px;

}

.footer h5 {

    color: var(--gold);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 20px;

}

.footer ul {

    padding: 0;

    margin: 0;

    list-style: none;

}

.footer li {

    margin-bottom: 9px;

}

.footer li a {

    color: rgba(255,255,255,.55);

    font-size: 12px;

}

.footer li a:hover {

    color: var(--gold);

}

.social-links {

    display: flex;

    gap: 10px;

}

.social-links a {

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(212,167,44,.35);

    color: var(--gold);

}

.social-links a:hover {

    background: var(--gold);

    color: black;

}

.footer-divider {

    margin: 45px 0 25px;

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    color: rgba(255,255,255,.35);

    font-size: 10px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .palace-brand img {

        width: 125px;

        height: 65px;

    }

    .navbar-nav {

        margin-top: 20px;

    }

    .hero-section {

        padding: 70px 0;

    }

    .hero-image {

        height: 480px;

        margin-top: 40px;

    }

    .hero-rating {

        left: 20px;

    }

    .about-content {

        padding-left: 0;

    }

    .buffet-card {

        padding: 35px;

    }

    .reservation-card {

        padding: 40px 25px;

    }

}


@media (max-width: 767px) {

    .section-padding {

        padding: 75px 0;

    }

    .palace-brand img {

        width: 110px;

        height: 60px;

    }

    .hero-content h1 {

        font-size: 46px;

    }

    .hero-image {

        height: 400px;

    }

    .hero-info {

        flex-direction: column;

        gap: 15px;

    }

    .about-content h2,
    .section-heading h2,
    .reservation-card h2 {

        font-size: 38px;

    }

    .about-features {

        grid-template-columns: 1fr;

    }

    .buffet-section {

        padding: 60px 0;

    }

    .buffet-card {

        padding: 25px;

    }

    .buffet-content h2 {

        font-size: 40px;

    }

    .buffet-image {

        height: 350px;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 8px;

    }

}

/* =========================================
   ORDER CTA
========================================= */

.order-cta {
    background: #000;
    padding: 90px 0;
}

.order-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    padding: 55px 60px;

    border: 1px solid rgba(212, 167, 44, 0.45);

    background:
        linear-gradient(
            135deg,
            #080808 0%,
            #111111 50%,
            #050505 100%
        );
}

/* Gold decorative line */

.order-cta-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 120px;
    height: 2px;

    background: #d4a72c;
}

/* Content */

.order-cta-content {
    max-width: 650px;
}

.order-cta .section-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: #d4a72c;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.order-cta h2 {
    margin: 0 0 18px;

    color: #fff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;

    line-height: 1.05;
}

.order-cta h2 span {
    display: block;
    color: #d4a72c;
}

.order-cta p {
    max-width: 580px;

    margin: 0;

    color: #aaa;

    font-size: 16px;
    line-height: 1.8;
}

/* Buttons */

.order-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;

    min-width: 280px;
}

.order-btn {
    display: flex;
    align-items: center;
    gap: 18px;

    min-height: 75px;

    padding: 14px 22px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.order-btn i {
    font-size: 20px;
}

.order-btn span {
    display: flex;
    flex-direction: column;

    font-size: 15px;
    font-weight: 600;
}

.order-btn small {
    margin-bottom: 3px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}

/* Gold button */

.order-btn-gold {
    color: #000;

    background: #d4a72c;

    border: 1px solid #d4a72c;
}

.order-btn-gold small {
    color: rgba(0, 0, 0, 0.65);
}

.order-btn-gold:hover {
    color: #000;

    background: #e6bd4c;

    transform: translateY(-3px);
}

/* Outline button */

.order-btn-outline {
    color: #fff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.35);
}

.order-btn-outline small {
    color: #d4a72c;
}

.order-btn-outline:hover {
    color: #fff;

    border-color: #d4a72c;

    background: rgba(212, 167, 44, 0.08);

    transform: translateY(-3px);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .order-cta {
        padding: 60px 0;
    }

    .order-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        padding: 40px 30px;

        gap: 35px;
    }

    .order-cta-actions {
        width: 100%;
    }

    .order-btn {
        width: 100%;
    }
}

@media (max-width: 575px) {

    .order-cta-inner {
        padding: 35px 22px;
    }

    .order-cta h2 {
        font-size: 38px;
    }

    .order-cta p {
        font-size: 14px;
    }
}