body {
    background: #000;
    color: #fff;
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* HEADER */

.main-header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-area img {
    width: 130px;
}

.menu-list {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 70px;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.menu-box:hover {
    background: #c3b280;
    color: #000;
}

.menu-title {
    font-size: 18px;
    font-weight: 700;
}

.menu-subtitle {
    font-size: 14px;
    margin-top: 5px;
}

.reservation-btn {
    background: #c3b280;
    color: #000;
}

.contact-btn {
    background: #fff;
    color: #000;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* HERO */

.hero-section {
    padding: 120px 0;
}

.hero-content h1 {
    font-size: 76px;
    line-height: 1.1;
    font-family: Georgia, serif;
}

.hero-content h1 span {
    color: #c3b280;
}

.gold-line {
    width: 120px;
    height: 7px;
    background: #c3b280;
    margin: 35px 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.call-btn,
.book-btn {
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
}

.call-btn {
    border: 1px solid #c3b280;
    color: #fff;
}

.book-btn {
    background: #c3b280;
    color: #fff;
}

/* MODAL */

.booking-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, .9);
    padding: 30px;
}

.booking-modal-content {
    background: #000;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 40px;
    cursor: pointer;
}

.modal-left {
    padding: 80px 50px;
}

.modal-left h2 {
    font-size: 64px;
    line-height: 1.1;
    font-family: Georgia, serif;
}

.modal-left span {
    color: #c3b280;
}

.modal-right {
    padding: 60px 50px;
}

.modal-right h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 40px;
}

.form-control,
.form-select {
    height: 58px;
}

.quote-btn {
    width: 100%;
    height: 60px;
    border: none;
    background: #c3b280;
    color: #fff;
    font-size: 20px;
}

/* MOBILE */

@media(max-width:991px) {

    .navbar-wrapper {
        flex-direction: column;
    }

    .menu-list {
        flex-direction: column;
        width: 100%;
    }

    .menu-box {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .modal-left h2 {
        font-size: 38px;
    }

}