body {
    font-family: 'Poppins', sans-serif;
    padding-top: 0 !important;
}

/* NAVBAR */
.custom-navbar {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 20;
    /* background: rgba(0,0,0,0.65); */
}


.navbar-brand img {
    height: 100px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.navbar-nav .nav-link {
    color: #fff;
    position: relative;
    padding: 6px 0;
}

.navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: #f5b335;
}

.navbar-nav .nav-item {
    margin-left: 28px;
}


.navbar .btn {
    padding: 10px 22px;
    font-size: 14px;
    border-radius: 0px;
}

.btn-outline-warning {
    border: 1px solid #f5b335;
    color: #f5b335;
    background: #000;
}

.btn-outline-warning:hover {
    background: #f5b335;
    color: #000;
}

.btn-warning {
    background: #f5b335;
    border: none;
    color: #fff;
}

/* HERO */
.hero-section {
    position: relative;
    min-height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)),
        url('../images/top_background_optimized.jpg') center/cover no-repeat;
}

.hero-content {
    padding-top: 240px;
    /* space below navbar */
    padding-bottom: 60px;
    text-align: center;
    color: #fff;
}

.hero-title {
    font-family: 'Rancho', cursive;
    font-size: 64px;
    font-weight: 400;
    letter-spacing: 1px;
}


.hero-subtitle {
    margin-top: 10px;
}

/* RESERVATION */
.reservation-wrapper {
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

/* Reservation Bar */
.reservation-bar {
    background: #fff;
    padding: 22px 24px;
    border-radius: 6px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

/* Field Wrapper */
.reserve-field {
    border: 1px solid #e6e6e6;
    padding: 10px 14px;
    height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Label */
.reserve-label {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
}

/* Input */
.reserve-input {
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
}

/* Remove default styles */
.reserve-input::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    cursor: pointer;
}

.reserve-input:focus {
    box-shadow: none;
}

/* Button */
.reserve-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    border-radius: 0px;
    font-weight: 500;
}

.date-field {
    position: relative;
}

.reserve-date-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reserve-display {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* .reserve-input-hidden {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
} */

.reserve-display {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}


.calendar-icon {
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
    position: relative;
}

.icon-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.icon-svg {
    width: 18px;
    height: 18px;
    color: #555;
}

.icon-btn:hover .icon-svg {
    color: #000;
}

.reserve-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* hidden input – DO NOT cover entire field */
.reserve-input-hidden {
    position: absolute;
    bottom: 8px;
    /* 👈 aligns with text row */
    right: 8px;
    /* 👈 near icon */
    width: 20px;
    /* 👈 small clickable area */
    height: 20px;
    opacity: 0;
    cursor: pointer;
}

.calendar-icon:hover {
    opacity: 1;
}

.info-box-label {
    font-family: 'Rancho', cursive;
    opacity: 0.8;
    font-weight: 200 !important;
}

.hero-yellow-overlay {
    background: rgba(245, 179, 53, 0.9);
    /* yellow with transparency */
    padding: 60px 0;
    margin-top: -40px;
    /* slightly pulled up under reservation */
}


/* INFO BOXES */
.info-boxes {
    margin-top: 30px;
    padding-bottom: 40px;
}

.info-box {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px 20px;
    width: 32%;
}


.info-box h5 {
    font-weight: 600;
}

/* ABOUT */
.about-section {
    background: #1b0c0c;
    padding: 50px 0;
}

.rancho-font-label {
    font-family: 'Rancho', cursive;
}

.about-img-wrapper {
    max-width: 460px;
    /* controls image size */
    margin-left: auto;
    /* pushes image slightly right */
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    height: auto;
    display: block;
}

.about-text {
    padding-left: 64px;
    /* space between image & text */
}


/* POPULAR */
/* Card wrapper */
.dish-card {
    background: #fff;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Image section */
.dish-img {
    height: 200px;
    /* 👈 SAME height for all images */
    overflow: hidden;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 👈 clean crop like Figma */
    display: block;
}

/* Content */
.dish-content {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dish-content h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.dish-content p {
    font-size: 14px;
    color: #777;
    flex-grow: 1;
}

/* Plus button */
.dish-btn {
    width: 42px;
    height: 42px;
    border: 2px solid #f5b335;
    background: transparent;
    color: #f5b335;
    font-size: 24px;
    line-height: 1;
    border-radius: 6px;
    align-self: flex-start;
}

.dish-btn:hover {
    background: #f5b335;
    color: #fff;
}

/* FEATURES */
.features-section {
    background-color: #150303;
    padding: 80px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    height: 100%;
}

.feature-icon {
    width: 36px;
    height: 36px;
    color: #f5b335;
    /* yellow */
    margin-bottom: 16px;
}

.feature-card p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}


/* REVIEWS */
/* Reviews section */
.reviews-section {
    background: #fff;
}

/* Top label */
.reviews-label {
    color: #f5b335;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Heading */
.reviews-title {
    font-family: 'Rancho', cursive;
    font-size: 36px;
    margin-top: 8px;
}

/* Card */
.review-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 28px;
    text-align: left;
    height: 100%;
}

/* Title inside card */
.review-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Stars */
.review-stars {
    color: #f5b335;
    font-size: 16px;
    margin-bottom: 14px;
}

/* Text */
.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Author */
.review-author {
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.design-credits {
    margin-top: 40px;
    padding-top: 16px;
    text-align: center;
    font-size: 13px;
    color: #555;
    position: relative;
}

.design-credits::before {
    content: "";
    width: 80px;
    height: 3px;
    background: #f5b335;
    display: block;
    margin: 0 auto 14px;
}

.design-credits span {
    display: inline-block;
    margin: 0 10px;
}

.design-credits strong {
    font-weight: 600;
    color: #111;
}

/* FOOTER */
.site-footer {
    background-color: #150303;
    color: #fff;
    padding: 40px 0 20px;
    font-size: 13px;
}

/* Logo */
.footer-logo {
    width: 135px;
    margin-right: 20px;
}

/* Left text */
.footer-info p {
    margin-bottom: 10px;
    color: #ddd;
    line-height: 1.6;
}

/* Phone */
.footer-phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    border: 1px solid #f5b335;
    border-radius: 30px;
    color: #f5b335;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    width: fit-content;
}

/* Circle around phone */
.phone-circle {
    width: 28px;
    height: 28px;
    border: 1px solid #f5b335;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG icon */
.phone-icon {
    width: 14px;
    height: 14px;
    color: #f5b335;
}

/* Hover (optional but nice) */
.footer-phone-pill:hover {
    background: #f5b335;
    color: #1b0c0c;
}

.footer-phone-pill:hover .phone-circle {
    background: #1b0c0c;
}

.footer-phone-pill:hover .phone-icon {
    color: #f5b335;
}

/* Footer links */
.footer-nav a {
    color: #ddd;
    text-decoration: none;
    margin: 0 12px;
    font-size: 13px;
}

.footer-nav span {
    color: #555;
}

.footer-nav a:hover {
    color: #f5b335;
}

/* Social icons */
.footer-social {
    margin-top: 18px !important;
    display: flex;
    justify-content: center;
}

.footer-social a {
    color: #aaa;
    margin-left: 35px;
    font-size: 20px;
}

.footer-social a:hover {
    color: #f5b335;
}

/* Divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

/* Bottom */
.footer-bottom {
    color: #aaa;
    font-size: 12px;
}


/* Contact Us Page */

/* Contact Section */
.contact-section h3 {
    font-size: 20px;
    font-weight: 500;
}

/* Cards */
.contact-card {
    border: 1px solid #eee;
    padding: 30px;
    height: 100%;
    background: #fff;
}

/* Left info items */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    color: #f5b335;
    font-size: 18px;
    margin-top: 4px;
}

.contact-item p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

/* Inputs */
.contact-card .form-control {
    border-radius: 0;
    font-size: 14px;
    padding: 10px 12px;
}

/* Map */
.contact-map iframe {
    width: 100%;
    height: 280px;
    border: none;
}


/* About Us */
/* Section labels */
.section-label {
    font-size: 12px;
    color: #f5b335;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Section titles */
.section-title {
    font-family: 'Rancho', cursive;
    font-size: 36px;
    margin: 10px 0 20px;
}

/* Paragraphs */
.about-page-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

/* Image wrapper */
.about-img-wrapper {
    max-width: 480px;
    max-height: 600px;
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Philosophy list */
.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.philosophy-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #333;
}

/* Yellow check icon */
.philosophy-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #f5b335;
    font-weight: 600;
}

.about-row {
    margin: 0;
    /* keep consistent */
}

/* Text spacing — SAME for both sections */
.about-text {
    padding-left: 64px;
    padding-right: 64px;
}

/* Menu Items */
/* Menu Section */
.menu-section {
    background: #fff;
}

.menu-pdf-actions {
    display: none;
    margin-bottom: 16px;
}

.menu-pdf-frame {
    width: 100%;
    height: 1000px;
    border: none;
}

/* LEFT CATEGORY LIST */
.menu-categories {
    list-style: none;
    padding: 0;
    margin: 0;
    border-right: 1px solid #ddd;
}

.menu-categories li {
    padding: 12px 16px;
    font-size: 13px;
    text-transform: uppercase;
    color: #666;
    cursor: pointer;
    position: relative;
}

.menu-categories li.active {
    background: #fff7ea;
    color: #111;
    font-weight: 600;
}

.menu-categories li.active::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #f5b335;
}

/* RIGHT MENU ITEMS */
.menu-items {
    padding-left: 30px;
}

/* Single item row */
.menu-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

/* Item name */
.item-name {
    white-space: nowrap;
}

/* Dotted line */
.item-line {
    flex-grow: 1;
    border-bottom: 1px dashed #ccc;
    margin: 0 12px;
}

/* Price */
.item-price {
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .custom-navbar {
        top: 16px;
    }

    .custom-navbar .container-fluid {
        padding-left: 18px !important;
        padding-right: 18px !important;
        align-items: flex-start;
    }

    .navbar-brand img {
        height: 96px;
    }

    .navbar-toggler {
        margin-top: 28px;
        padding: 10px 12px;
        border: 2px solid rgba(255, 255, 255, 0.72);
        background: rgba(0, 0, 0, 0.45);
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
    }

    .navbar-collapse {
        width: 100%;
        margin-top: 14px;
        padding: 16px;
        background: rgba(12, 4, 4, 0.94);
        border: 1px solid rgba(245, 179, 53, 0.35);
        box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
    }

    .navbar-nav {
        align-items: stretch !important;
        gap: 8px;
    }

    .navbar-nav .nav-item,
    .navbar-nav .nav-item.ms-2,
    .navbar-nav .nav-item.ms-4 {
        width: 100%;
        margin-left: 0 !important;
    }

    .navbar-nav .nav-link {
        display: block;
        padding: 10px 4px;
        text-align: left;
        font-size: 16px;
    }

    .navbar-nav .nav-link.active::after {
        bottom: 4px;
        width: 44px;
    }

    .navbar .btn {
        width: 100%;
        margin-top: 4px;
        padding: 11px 16px;
        text-align: center;
    }

    .hero-content {
        padding: 220px 20px 50px;
    }

    .hero-title {
        font-size: 46px;
        line-height: 1.05;
    }

    .menu-section {
        padding-top: 28px !important;
        padding-bottom: 28px !important;
    }

    .menu-pdf-actions {
        display: block;
    }

    .menu-pdf-frame {
        height: 78vh;
        min-height: 520px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 82px;
    }

    .navbar-toggler {
        margin-top: 20px;
    }

    .hero-content {
        padding-top: 188px;
    }

    .hero-title {
        font-size: 40px;
    }
}
