/* ------------------------- */
/* Global Layout Fixes       */
/* ------------------------- */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


/* ------------------------- */
/* Hero Banner               */
/* ------------------------- */

.hero-banner {
    background: url("../images/toa-heftiba--lpUDp2K0a8-unsplash.5f07a61d08fc.jpg") center no-repeat;
    background-size: contain;
    height: 90vh;
    background-color: black;
    position: relative;
}

.hero-text {
    position: absolute;
    bottom: 25%;
    left: 3%;
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.5rem;
}


/* ------------------------- */
/* Navbar                    */
/* ------------------------- */

.navbar {
    background-color: rgba(226, 218, 218, 0.54) !important;
    backdrop-filter: blur(6px);
    z-index: 1000;
}

.navbar-brand {
    font-size: 2.5rem;
    font-weight: bold;
    color: #141111 !important;
    margin-left: 2.5%;
}

.navbar-brand:hover {
    color: #f0c040 !important;
}

.navbar-nav .nav-link {
    color: #141111 !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #f0c040 !important;
}

.navbar-nav .active>.nav-link {
    color: #f0c040 !important;
}

.navbar-nav>.nav-item>.nav-link {
    font-weight: bold;
    font-size: 1.3rem;
    margin: 5px;
}

.dropdown-menu {
    background-color: rgba(226, 218, 218, 0.97);
    max-width: 100vw;
    overflow-wrap: break-word;
    margin-top: 20px;
}

.dropdown-menu .dropdown-item {
    font-size: 15px;
    white-space: normal;
}

.dropdown-menu .dropdown-item:hover {
    color: #f0c040 !important;
}


/* ------------------------- */
/* Footer                    */
/* ------------------------- */

.site-footer {
    background-color: #111;
    color: #ddd;
    padding: 20px 20px 10px;
    margin-top: 78px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 2%;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section iframe {
    border-radius: 8px;
    width: 100%;
}

.footer-section h2 {
    color: #f0c040;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-section p {
    margin: 3px 0;
    color: #ccc;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
}

.social-link:hover {
    color: #f0c040;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: #555;
    font-size: 0.9rem;
}

.footer-bg {
    background-color: rgba(226, 218, 218, 0.54) !important;
    padding: 20px 0;
}

.map-frame {
    width: 100%;
    height: 120px;
    border: 0;
}


/* ------------------------- */
/* Menu Page                 */
/* ------------------------- */

.menu-page {
    padding: 60px 20px 5px;
    background-color: #222;
    font-style: italic;
}

/* Page title */
.menu-page h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f0c040;
    margin: 0 0 40px 0;
}

/* Category headings (use on h2) */
.menu-category {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0c040;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Divider */
.menu-divider {
    border-top: 1px solid #444;
    margin: 40px 0;
}

/* Menu item wrapper */
.menu-item {
    margin-bottom: 20px;
}

/* Dish title + price (use on h3) */
.menu-item-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;

    font-size: 1.2rem;
    color: #fff;

    margin: 0;
    padding: 0;

    /* Remove default heading spacing in some browsers */
    margin-block: 0;
    font-weight: 600;
}

/* Price */
.menu-item-title .price {
    color: #f0c040;
    font-weight: bold;
}

/* Description text */
.menu-item .description {
    color: #aaa;
    font-size: 0.95rem;
    margin: 6px 0 0 2px;
    font-style: italic;
}

/* Notes box */
.menu-notes-box {
    background-color: #a31236;
    text-align: center;
    padding: 12px 10px;
    border-radius: 8px;
    margin-top: 25px;
}

.menu-notes {
    font-style: italic;
    font-weight: bold;
    color: #222;
    margin: 0;
}

/* ------------------------- */
/* About Page                */
/* ------------------------- */

.about-bg-right {
    background: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent 40%),
        url("../images/sean-stratton-ObpCE_X3j6U-unsplash.0582fa39a8de.jpg") right center / cover no-repeat;
    background-attachment: fixed;
}

.about-bg-right .container {
    background: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 10px;
}

/* ------------------------- */
/* Gallery Page              */
/* ------------------------- */

.gallery-page {
    padding: 60px 20px 20px;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f0c040;
    margin-bottom: 30px;
}

.gallery-page h2.gallery-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #141111;
    margin: 12px 0 6px;
    padding: 0;
}

.gallery-item-desc {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}


/* ------------------------- */
/* Collaborations Page       */
/* ------------------------- */

.collab-bg-page main {
    margin-bottom: 0 !important;
}

.collab-bg {
    background: url("../images/tim-mossholder-xDwEa2kaeJA-unsplash.7f1848c9b5dc.jpg") center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.collab-container {
    background: rgba(255, 255, 255, 0.85) !important;
    padding: 30px 30px 80px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}


/* ------------------------- */
/* Booking Page              */
/* ------------------------- */

.booking-wrapper {
    background: url("../images/toa-heftiba--lpUDp2K0a8-unsplash.5f07a61d08fc.jpg") center/cover no-repeat;
    padding: 60px 0;
}

.booking-card {
    background: rgba(255, 255, 255, 0.90);
    padding: 35px;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.booking-card h1 {
    font-weight: bold;
}

.booking-sub {
    text-align: center;
    color: #444;
    margin-bottom: 20px;
}

.booking-form label {
    font-weight: bold;
    color: #333;
}

.booking-btn {
    width: 100%;
    padding: 12px;
    background-color: #a31236;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: 0.3s;
}

.booking-btn:hover {
    background-color: #7d0d2a;
    cursor: pointer;
}

/* ------------------------- */
/* My Bookings Page          */
/* ------------------------- */

.my-bookings-bg {
    background: #f5f5f5;
    padding: 80px 20px;
}

.my-bookings-wrapper {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    align-items: center;
}

.my-bookings-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.my-bookings-image {
    width: 100%;
    background: url("../images/my-bookings.1d3730f086b9.jpg") center/cover no-repeat;
    border-radius: 16px;
    min-height: 450px;
}

/* Mobile */
@media (max-width: 768px) {
    .my-bookings-wrapper {
        grid-template-columns: 1fr;
    }

    .my-bookings-image {
        min-height: 250px;
    }
}


/* ------------------------- */
/* Signup Page               */
/* ------------------------- */

.signup-bg {
    background: url("../images/signup-bg.6b84206b2930.jpg") center/cover no-repeat;
    padding: 70px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Optional: slight overlay for readability */
.signup-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* Keep card above overlay */
.signup-bg .container {
    position: relative;
    z-index: 2;
}

.signup-card {
    background: rgba(255, 255, 255, 0.92);
    padding: 40px 35px;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.signup-card h1 {
    font-weight: bold;
    margin-bottom: 10px;
}

.signup-subtitle {
    color: #555;
    margin-bottom: 25px;
}

/* Make form inputs more esthetic */
.signup-card input,
.signup-card select,
.signup-card textarea {
    width: 100%;
}

/* Button matches rest of the theme */
.neo-btn {
    width: 100%;
    padding: 12px;
    background-color: #a31236;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: 0.3s;
}

.neo-btn:hover {
    background-color: #7d0d2a;
    cursor: pointer;
}

/* ------------------------- */
/* Login Page                */
/* ------------------------- */

.login-bg {
    position: relative;
    background: url("../images/login.1efc91e4bcc8.jpg") center/cover no-repeat;

    min-height: calc(100vh - 80px);
    /* full screen minus navbar */
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 80px 20px;
}


/* Dark overlay for readability */
.login-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* Keep content above overlay */
.login-bg .container {
    position: relative;
    z-index: 2;
}

.login-card {
    background: rgba(255, 255, 255, 0.93);
    padding: 40px 35px;
    border-radius: 16px;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.login-card h1 {
    font-weight: bold;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #555;
    margin-bottom: 25px;
}


/* ------------------------- */
/* Responsive Design         */
/* ------------------------- */

/* ≤ 1024px */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .navbar-brand {
        font-size: 2rem;
    }

    .menu-page h1 {
        font-size: 2.2rem;
    }

    .menu-item-title {
        font-size: 1.1rem;
    }

    .booking-card {
        max-width: 500px;
    }

    .gallery-title {
        font-size: 2.2rem;
    }
}

/* ≤ 768px */
@media (max-width: 768px) {

    .hero-banner {
        background-size: cover;
        height: 70vh;
    }

    .hero-text {
        bottom: 15%;
        left: 5%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        min-width: 100%;
    }

    .about-bg-right {
        background-position: center;
        background-size: cover;
    }

    .about-bg-right .container {
        background: rgba(0, 0, 0, 0.55);
    }

    .collab-container {
        max-width: 90%;
        padding: 20px;
    }

    .booking-card {
        padding: 25px;
        max-width: 90%;
    }
}

/* ≤ 480px */
@media (max-width: 480px) {

    .hero-banner {
        height: 60vh;
        background-position: center;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.6rem;
        margin-left: 0;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
    }

    .menu-page h1 {
        font-size: 1.8rem;
    }

    .menu-category {
        font-size: 1.2rem;
    }

    .menu-item-title {
        font-size: 1rem;
    }

    .about-bg-right .container {
        padding: 20px;
        border-radius: 6px;
    }

    .collab-container {
        padding: 20px;
    }

    .booking-card {
        padding: 20px;
        border-radius: 12px;
    }

    .booking-btn {
        font-size: 1rem;
        padding: 10px;
    }

    .gallery-title {
        font-size: 1.8rem;
    }
}

/* ≤ 375px */
@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text p {
        font-size: 0.9rem;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .booking-card {
        padding: 15px;
    }

    .collab-container {
        padding: 15px;
    }
}
