:root {
    --brown-dark: #160d08;
    --brown: #3a2015;
    --brown-light: #65402d;

    --gold: #c49a4a;
    --gold-light: #e5c982;

    --cream: #f5eee2;
    --cream-light: #fffaf2;

    --text: #2b1b14;
    --muted: #806f62;

    --border: rgba(70, 40, 25, 0.16);
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #f8f3eb;
    color: #2a1711;
    overflow-x: hidden;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   VARIABLES
========================= */

:root {
    --brown: #351b13;
    --dark-brown: #21100b;
    --gold: #c89b54;
    --light-gold: #e0bc79;
    --cream: #f8f3eb;
    --white: #ffffff;
    --text-light: #e9ded2;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(33, 16, 11, 0.94);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(200, 155, 84, 0.2);
}

.nav-container {
    max-width: 1250px;
    margin: auto;

    height: 82px;

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

    padding: 0 25px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    width: 45px;
    height: 45px;

    border: 1px solid var(--gold);

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

    color: var(--light-gold);

    font-family: "Cormorant Garamond", serif;
    font-size: 31px;

    transform: rotate(45deg);
}

.logo-symbol::first-letter {
    transform: rotate(-45deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    color: white;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    letter-spacing: 4px;
}

.logo-text small {
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    color: #e8ddd4;
    font-size: 11px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-book-btn {
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--light-gold);

    padding: 12px 18px;

    font-size: 10px;
    letter-spacing: 1px;

    transition: 0.3s;
}

.nav-book-btn:hover {
    background: var(--gold);
    color: var(--dark-brown);
}

.menu-toggle {
    display: none;

    background: transparent;
    border: none;

    color: white;
    font-size: 25px;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(25, 10, 5, 0.88),
            rgba(25, 10, 5, 0.45),
            rgba(25, 10, 5, 0.15)
        ),
        url("images/hero.jpg") center / cover no-repeat;
}

.hero-content {
    max-width: 1250px;
    width: 100%;

    margin: auto;

    padding: 150px 25px 100px;

    position: relative;
    z-index: 2;
}

.eyebrow {
    color: var(--light-gold);

    font-size: 10px;
    letter-spacing: 4px;
    font-weight: 600;

    margin-bottom: 20px;
}

.eyebrow.dark {
    color: #9a6d37;
}

.hero h1 {
    color: white;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(55px, 7vw, 95px);
    line-height: 0.9;

    font-weight: 500;

    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--light-gold);
    font-style: italic;
}

.hero-description {
    color: #dfd1c7;

    max-width: 480px;

    line-height: 1.8;

    font-size: 14px;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.gold-btn {
    border: 1px solid var(--gold);

    background: var(--gold);
    color: var(--dark-brown);

    padding: 15px 25px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;

    transition: 0.3s;
}

.gold-btn:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
}

.outline-btn {
    border: 1px solid rgba(255,255,255,0.6);

    color: white;

    padding: 15px 25px;

    font-size: 10px;
    letter-spacing: 1.5px;

    transition: 0.3s;
}

.outline-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    color: rgba(255,255,255,0.65);

    font-size: 8px;
    letter-spacing: 3px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-down span {
    width: 1px;
    height: 40px;
    background: var(--gold);
}


/* =========================
   INTRO
========================= */

.intro-section {
    max-width: 850px;

    margin: auto;

    padding: 120px 25px;

    text-align: center;
}

.section-label {
    color: #a77b45;

    font-size: 9px;
    letter-spacing: 4px;

    margin-bottom: 20px;
}

.intro-section h2,
.section-heading h2,
.about-content h2,
.booking-content h2,
.contact-info h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 0.95;

    font-weight: 500;
}

.intro-section h2 {
    margin-bottom: 25px;
}

em {
    color: #a8783b;
}

.intro-section p {
    color: #6d5a50;

    line-height: 2;

    font-size: 14px;
}


/* =========================
   DESIGN SECTION
========================= */

.design-section {
    background: #fffaf3;

    padding: 110px 25px;
}

.section-heading {
    max-width: 1250px;

    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: end;

    gap: 40px;
}

.heading-description {
    max-width: 380px;

    color: #806e63;

    font-size: 12px;
    line-height: 1.8;
}

.design-filters {
    max-width: 1250px;

    margin: 50px auto 35px;

    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;

    border: 1px solid #d8c9b8;

    color: #765f50;

    padding: 11px 20px;

    font-size: 9px;
    letter-spacing: 1.5px;

    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--brown);
    border-color: var(--brown);
    color: white;
}

.design-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.design-card {
    cursor: pointer;
}

.design-image {
    position: relative;

    height: 440px;

    overflow: hidden;

    background: #ddd;
}

.design-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s;
}

.design-card:hover img {
    transform: scale(1.06);
}

.design-tag {
    position: absolute;

    top: 18px;
    left: 18px;

    background: rgba(35, 17, 11, 0.85);

    color: var(--light-gold);

    padding: 7px 10px;

    font-size: 8px;
    letter-spacing: 1.5px;
}

.heart-btn {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.5);

    background: rgba(0,0,0,0.3);

    color: white;

    font-size: 17px;
}

.heart-btn:hover {
    color: #e5a1a1;
}

.view-design {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 15px;

    background: rgba(40,20,13,0.9);

    color: var(--light-gold);

    text-align: center;

    font-size: 9px;
    letter-spacing: 2px;

    transform: translateY(100%);

    transition: 0.4s;
}

.design-card:hover .view-design {
    transform: translateY(0);
}

.design-info {
    padding: 18px 2px;

    display: flex;
    justify-content: space-between;

    gap: 10px;
}

.design-info h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 24px;

    font-weight: 600;
}

.design-info p {
    color: #907c6d;

    font-size: 9px;

    margin-top: 5px;
}

.price {
    color: #a2743b;

    font-size: 11px;

    white-space: nowrap;
}


/* =========================
   MODAL
========================= */

.modal {
    position: fixed;

    inset: 0;

    background: rgba(15,7,4,0.9);

    backdrop-filter: blur(10px);

    z-index: 2000;

    display: none;

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

    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-close {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.4);

    background: rgba(0,0,0,0.3);

    color: white;

    font-size: 27px;

    z-index: 5;
}

.modal-close:hover {
    color: var(--gold);
    border-color: var(--gold);
}


/* =========================
   GALLERY MODAL
========================= */

.gallery-modal-box {
    position: relative;

    width: min(900px, 100%);

    background: #24120d;

    padding: 35px;

    border: 1px solid rgba(200,155,84,0.3);
}

.gallery-header {
    text-align: center;

    margin-bottom: 20px;
}

.gallery-header p {
    color: var(--gold);

    font-size: 8px;
    letter-spacing: 3px;

    margin-bottom: 8px;
}

.gallery-header h2 {
    color: white;

    font-family: "Cormorant Garamond", serif;

    font-size: 38px;

    font-weight: 500;
}

.gallery-main {
    position: relative;

    height: min(65vh, 600px);

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

    background: #130906;
}

.gallery-main img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.gallery-arrow {
    position: absolute;

    z-index: 3;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.5);

    background: rgba(30,15,9,0.8);

    color: white;

    font-size: 35px;

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

.gallery-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-arrow.prev {
    left: 15px;
}

.gallery-arrow.next {
    right: 15px;
}

.gallery-counter {
    text-align: center;

    color: #c7b4a5;

    font-size: 10px;

    margin: 15px 0;
}

.gallery-dots {
    display: flex;

    justify-content: center;

    gap: 8px;

    margin-bottom: 20px;
}

.gallery-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #725846;

    border: none;

    padding: 0;
}

.gallery-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

.gallery-book-btn {
    display: block;
    margin: auto;
}


/* =========================
   SERVICES
========================= */

.services-section {
    background: var(--brown);

    padding: 110px 25px;
}

.services-section .section-heading {
    display: block;

    text-align: center;

    max-width: 750px;
}

.services-section h2 {
    color: white;

    margin-bottom: 20px;
}

.services-section .heading-description {
    max-width: 600px;
    margin: auto;

    color: #cdbdb0;
}

.service-grid {
    max-width: 1250px;

    margin: 50px auto 0;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    position: relative;

    height: 500px;

    overflow: hidden;

    cursor: pointer;
}

.service-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.7s;
}

.service-card:hover img {
    transform: scale(1.06);
}

.service-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 25%,
            rgba(22,9,5,0.9) 100%
        );
}

.service-content {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;
}

.service-content > span {
    color: var(--light-gold);

    font-size: 8px;
    letter-spacing: 2px;
}

.service-content h3 {
    color: white;

    font-family: "Cormorant Garamond", serif;

    font-size: 38px;

    margin: 8px 0;
}

.service-content p {
    color: #dfd1c7;

    font-size: 11px;

    line-height: 1.7;

    max-width: 300px;
}

.service-view {
    background: transparent;

    border: none;

    color: var(--light-gold);

    margin-top: 18px;

    font-size: 9px;
    letter-spacing: 2px;
}


/* =========================
   SERVICE MODAL
========================= */

.service-modal-box {
    position: relative;

    width: min(850px, 100%);

    background: #fffaf3;

    display: grid;

    grid-template-columns: 45% 55%;

    overflow: hidden;
}

.service-modal-box > img {
    width: 100%;
    height: 550px;

    object-fit: cover;
}

.service-modal-content {
    padding: 55px 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-modal-content h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 52px;

    font-weight: 500;

    color: var(--brown);
}

.gold-line {
    width: 55px;
    height: 1px;

    background: var(--gold);

    margin: 22px 0;
}

.service-modal-content > p:not(.eyebrow) {
    color: #756459;

    font-size: 13px;

    line-height: 1.9;

    margin-bottom: 25px;
}

.service-artistry {
    color: #9a6d37;

    font-size: 9px;
    letter-spacing: 2px;

    margin-bottom: 25px;
}


/* =========================
   ABOUT
========================= */

.about-section {
    max-width: 1150px;

    margin: auto;

    padding: 120px 25px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 100px;
}

.about-image {
    padding: 20px;

    background: #eadcc9;
}

.about-frame {
    height: 550px;

    overflow: hidden;
}

.about-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-content > p:not(.eyebrow) {
    color: #76645a;

    font-size: 13px;

    line-height: 1.9;

    margin-top: 20px;
}

.experience-card {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;
}

.experience-card strong {
    font-family: "Cormorant Garamond", serif;

    font-size: 75px;

    line-height: 0;

    color: var(--gold);
}

.experience-card div {
    display: flex;
    flex-direction: column;
}

.experience-card span {
    color: #927a68;

    font-size: 9px;

    letter-spacing: 2px;
}

.experience-card b {
    font-size: 12px;

    letter-spacing: 2px;

    color: var(--brown);
}


/* =========================
   REVIEWS
========================= */

.reviews-section {
    padding: 110px 25px;

    background: #efe5d8;
}

.center {
    text-align: center;

    display: block;
}

.center .heading-description {
    margin: 20px auto 0;
}

.review-grid {
    max-width: 1150px;

    margin: 50px auto 0;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.review-card {
    background: #fffaf3;

    padding: 35px;

    text-align: center;

    border: 1px solid #e3d5c4;
}

.stars {
    color: var(--gold);

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.review-card p {
    color: #6d5a50;

    font-family: "Cormorant Garamond", serif;

    font-size: 20px;

    line-height: 1.4;

    margin-bottom: 25px;
}

.review-card h4 {
    color: #9b7343;

    font-size: 9px;

    letter-spacing: 2px;
}


/* =========================
   BOOKING CTA
========================= */

.booking-section {
    min-height: 650px;

    position: relative;

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

    text-align: center;

    background:
        linear-gradient(
            rgba(37,17,10,0.75),
            rgba(37,17,10,0.75)
        ),
        url("images/booking-bg.jpg") center / cover no-repeat;
}

.booking-content {
    position: relative;
    z-index: 2;

    max-width: 750px;

    padding: 60px 25px;
}

.booking-content h2 {
    color: white;

    margin-bottom: 25px;
}

.booking-content > p:not(.eyebrow) {
    color: #d8c8bc;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    padding: 110px 25px;

    background: #fffaf3;
}

.contact-container {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 350px;

    gap: 100px;

    align-items: center;
}

.contact-info > p:not(.eyebrow) {
    color: #78655b;

    max-width: 480px;

    font-size: 13px;

    line-height: 1.8;

    margin-top: 25px;
}

.contact-details {
    display: flex;

    flex-direction: column;

    margin-top: 35px;

    gap: 20px;
}

.contact-details a {
    color: #49332a;

    font-size: 13px;
}

.contact-details span {
    display: block;

    color: #9b7343;

    font-size: 8px;

    letter-spacing: 2px;

    margin-bottom: 4px;
}

.contact-card {
    background: var(--brown);

    color: white;

    min-height: 350px;

    display: flex;

    flex-direction: column;

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

    text-align: center;
}

.contact-logo {
    width: 65px;
    height: 65px;

    border: 1px solid var(--gold);

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

    font-family: "Cormorant Garamond", serif;

    font-size: 40px;

    color: var(--gold);

    margin-bottom: 20px;
}

.contact-card h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 35px;

    letter-spacing: 5px;
}

.contact-card p {
    color: var(--gold);

    font-size: 8px;

    letter-spacing: 3px;
}

.contact-card-line {
    width: 40px;
    height: 1px;

    background: var(--gold);

    margin: 25px;
}

.contact-card > span:last-child {
    font-size: 9px;

    letter-spacing: 3px;

    color: #d9c9bc;
}


/* =========================
   BOOKING FORM MODAL
========================= */

.booking-modal-box {
    position: relative;

    width: min(550px, 100%);

    background: #fffaf3;

    padding: 45px;
}

.booking-header {
    text-align: center;

    margin-bottom: 30px;
}

.booking-header h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: 48px;

    font-weight: 500;

    color: var(--brown);

    margin-bottom: 12px;
}

.booking-header > p:not(.eyebrow) {
    color: #7b685d;

    font-size: 11px;

    line-height: 1.7;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    color: #563c30;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 8px;
}

.form-group input {
    width: 100%;

    border: 1px solid #d7c7b6;

    background: white;

    padding: 14px 15px;

    outline: none;

    color: #36231b;

    font-size: 12px;

    transition: 0.3s;
}

.form-group input:focus {
    border-color: var(--gold);
}

.submit-booking {
    width: 100%;

    margin-top: 10px;
}


/* =========================
   FOOTER
========================= */

footer {
    background: #1e0d08;

    padding: 45px 25px;

    color: #9e8980;

    text-align: center;
}

.footer-logo {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;
}

.footer-logo > span {
    width: 40px;
    height: 40px;

    border: 1px solid var(--gold);

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

    color: var(--gold);

    font-family: "Cormorant Garamond", serif;

    font-size: 25px;
}

.footer-logo div {
    display: flex;
    flex-direction: column;

    text-align: left;
}

.footer-logo strong {
    color: white;

    font-family: "Cormorant Garamond", serif;

    font-size: 22px;

    letter-spacing: 3px;
}

.footer-logo small {
    color: var(--gold);

    font-size: 7px;

    letter-spacing: 2px;
}

footer p {
    font-size: 9px;

    letter-spacing: 1px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .nav-menu {
        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        background: #21100b;

        display: none;

        flex-direction: column;

        padding: 25px;

        gap: 22px;
    }

    .nav-menu.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .design-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .design-image {
        height: 400px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 450px;
    }

    .about-section {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .service-modal-box {
        grid-template-columns: 1fr;
    }

    .service-modal-box > img {
        height: 300px;
    }

    .service-modal-content {
        padding: 35px;
    }
}


@media (max-width: 600px) {

    .nav-container {
        height: 70px;
    }

    .nav-menu {
        top: 70px;
    }

    .logo-symbol {
        width: 38px;
        height: 38px;

        font-size: 26px;
    }

    .logo-text strong {
        font-size: 21px;
    }

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

    .hero h1 {
        font-size: 55px;
    }

    .hero-description {
        font-size: 12px;
    }

    .design-section,
    .services-section,
    .about-section,
    .reviews-section,
    .contact-section,
    .intro-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section-heading {
        display: block;
    }

    .heading-description {
        margin-top: 20px;
    }

    .design-grid {
        grid-template-columns: 1fr;
    }

    .design-image {
        height: 500px;
    }

    .gallery-modal-box {
        padding: 18px;
    }

    .gallery-main {
        height: 60vh;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .booking-modal-box {
        padding: 30px 20px;
    }

    .booking-header h2 {
        font-size: 40px;
    }

    .about-frame {
        height: 450px;
    }

    .contact-card {
        min-height: 300px;
    }

    .service-modal-content h2 {
        font-size: 42px;
    }
}
/* =========================================================
   PREMIUM ROYAL BOOKING MODAL
========================================================= */

#bookingModal {
    background: rgba(17, 7, 3, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 18px;
    z-index: 9999;
}

.booking-modal-box {
    width: min(780px, 100%);
    max-height: 94vh;
    overflow-y: auto;

    position: relative;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(205, 166, 92, 0.12),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #2b160c,
            #170a05 75%
        );

    border: 1px solid rgba(210, 172, 99, 0.45);

    padding: 48px 52px;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.70),
        inset 0 0 60px rgba(255, 215, 140, 0.025);

    border-radius: 4px;
}


/* INNER GOLD FRAME */

.booking-modal-box::before {
    content: "";

    position: absolute;

    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;

    border: 1px solid rgba(211, 174, 104, 0.10);

    pointer-events: none;
}


/* CLOSE */

#bookingModal .modal-close {
    position: absolute;

    top: 18px;
    right: 20px;

    width: 36px;
    height: 36px;

    border: 1px solid rgba(211, 174, 104, 0.25);

    background: rgba(255,255,255,0.03);

    color: #d5b16b;

    font-size: 25px;

    cursor: pointer;

    z-index: 20;

    transition: all .25s ease;
}

#bookingModal .modal-close:hover {
    background: rgba(211, 174, 104, 0.12);
    border-color: #d5b16b;
    color: #fff;
}


/* HEADER */

.booking-header {
    text-align: center;

    position: relative;

    margin-bottom: 34px;
}

.booking-symbol {
    color: #d6b26c;

    font-size: 17px;

    margin-bottom: 9px;
}

.booking-header .eyebrow {
    color: #c9a260;

    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 13px;
}

.booking-header h2 {
    color: #f5ead9;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: clamp(34px, 5vw, 46px);

    font-weight: 500;

    line-height: 1;

    margin: 0 0 14px;
}

.booking-header h2 em {
    color: #d3ac63;

    font-style: italic;
}

.booking-header > p:last-of-type {
    color: #a99586;

    max-width: 470px;

    margin: auto;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;

    line-height: 1.7;
}

.booking-divider {
    width: 70px;
    height: 1px;

    background: #c9a45f;

    margin: 19px auto 0;
}


/* FORM ROW */

.booking-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 19px;
}


/* FORM GROUP */

.booking-form-group {
    margin-bottom: 20px;

    position: relative;
}

.booking-form-group.full-width {
    width: 100%;
}


/* LABEL */

.booking-form-group label {
    display: flex;

    align-items: center;

    color: #ddc38f;

    font-family: "Montserrat", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.8px;

    margin-bottom: 9px;
}

.booking-form-group label .required {
    color: #d9a74e;

    margin-left: 4px;
}

.booking-form-group label .optional {
    color: #806f62;

    font-size: 8px;

    letter-spacing: .5px;

    font-weight: 400;

    margin-left: auto;
}


/* INPUTS */

.booking-form-group input,
.booking-form-group select,
.booking-form-group textarea {

    width: 100%;

    box-sizing: border-box;

    border: 1px solid rgba(208, 170, 98, 0.22);

    border-radius: 2px;

    background: rgba(255, 249, 238, 0.045);

    color: #f1e5d4;

    padding: 14px 15px;

    outline: none;

    font-family: "Montserrat", sans-serif;

    font-size: 12px;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.booking-form-group input::placeholder,
.booking-form-group textarea::placeholder {
    color: #806d61;
}

.booking-form-group input:hover,
.booking-form-group select:hover,
.booking-form-group textarea:hover {
    border-color: rgba(208, 170, 98, 0.40);
}

.booking-form-group input:focus,
.booking-form-group select:focus,
.booking-form-group textarea:focus {

    border-color: #c9a25d;

    background: rgba(255, 249, 238, 0.065);

    box-shadow:
        0 0 0 3px rgba(202, 163, 91, 0.055),
        0 5px 20px rgba(0, 0, 0, 0.10);
}


/* SELECT */

.booking-form-group select {
    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;

    padding-right: 42px;

    background-image:
        linear-gradient(45deg, transparent 50%, #c9a25d 50%),
        linear-gradient(135deg, #c9a25d 50%, transparent 50%);

    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 13px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}

.booking-form-group select option {
    background: #241108;
    color: #f4e7d4;
}


/* DATE / TIME */

.booking-form-group input[type="date"],
.booking-form-group input[type="time"] {
    color-scheme: dark;

    cursor: pointer;
}


/* TEXTAREA */

.booking-form-group textarea {
    min-height: 105px;

    resize: vertical;

    line-height: 1.65;
}


/* BOOKING NOTE */

.booking-note {
    display: flex;

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

    gap: 8px;

    margin: 2px 0 17px;

    color: #89766a;

    font-family: "Montserrat", sans-serif;

    font-size: 9px;

    letter-spacing: .2px;

    text-align: center;
}

.booking-note span {
    color: #d0a95f;

    font-size: 13px;
}

.booking-note p {
    margin: 0;
}


/* SUBMIT BUTTON */

.booking-submit-btn {

    width: 100%;

    min-height: 53px;

    border: 1px solid #d3ad65;

    background:
        linear-gradient(
            135deg,
            #dfc078,
            #b18440
        );

    color: #211006;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 17px;

    cursor: pointer;

    font-family: "Montserrat", sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.1px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}

.booking-submit-btn b {
    font-size: 19px;

    font-weight: 400;

    transition: transform .25s ease;
}

.booking-submit-btn:hover {

    transform: translateY(-2px);

    filter: brightness(1.07);

    box-shadow:
        0 14px 35px rgba(195, 151, 67, 0.20);
}

.booking-submit-btn:hover b {
    transform: translateX(5px);
}


/* BOTTOM BRAND */

.booking-secure {

    text-align: center;

    color: #66554b;

    font-family: "Montserrat", sans-serif;

    font-size: 7px;

    letter-spacing: 2.5px;

    margin-top: 13px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    #bookingModal {
        padding: 9px;
    }

    .booking-modal-box {

        padding: 40px 20px 25px;

        max-height: 95vh;

        width: 100%;
    }

    .booking-modal-box::before {
        top: 7px;
        left: 7px;
        right: 7px;
        bottom: 7px;
    }

    #bookingModal .modal-close {
        top: 13px;
        right: 13px;

        width: 32px;
        height: 32px;

        font-size: 22px;
    }

    .booking-header {
        margin-bottom: 27px;
    }

    .booking-header .eyebrow {
        font-size: 8px;

        letter-spacing: 2px;
    }

    .booking-header h2 {
        font-size: 34px;

        line-height: 1.05;
    }

    .booking-header > p:last-of-type {
        font-size: 10px;

        max-width: 330px;
    }

    .booking-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .booking-form-group {
        margin-bottom: 17px;
    }

    .booking-form-group input,
    .booking-form-group select,
    .booking-form-group textarea {
        padding: 13px;
    }

    .booking-note {
        line-height: 1.5;
        padding: 0 8px;
    }

    .booking-submit-btn {
        min-height: 50px;

        font-size: 9px;

        letter-spacing: 1.5px;
    }

}