/* =========================================================
   LUNARA HOTEL
   STYLE.CSS
   ========================================================= */


/* =========================================================
   1. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #ffffff;
    color: #242a30;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* =========================================================
   2. GLOBAL VARIABLES
   ========================================================= */

:root {
    --navy: #111820;
    --navy-light: #18232d;
    --navy-dark: #0b1015;

    --gold: #d9b45f;
    --gold-light: #e5c979;
    --gold-dark: #b99745;

    --white: #ffffff;
    --cream: #f8f6f1;
    --light: #f3f4f4;

    --text: #242a30;
    --muted: #70777d;
    --border: #e4e5e5;

    --shadow: 0 15px 40px rgba(17, 24, 32, 0.10);
    --shadow-hover: 0 20px 50px rgba(17, 24, 32, 0.16);

    --radius: 14px;
}


/* =========================================================
   3. COVER / SAMPUL
   ========================================================= */

.hotel-cover {
    min-height: 100vh;
    width: 100%;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url("https://images.unsplash.com/photo-1564501049412-61c2a3083791?auto=format&fit=crop&w=1000&q=85");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: var(--white);
    overflow: hidden;
}


/* Lapisan gelap sampul */

.hotel-cover::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(8, 13, 18, 0.68);

    z-index: 1;
}


/* Tetap tersedia jika digunakan */

.cover-overlay {
    position: absolute;
    inset: 0;

    background: rgba(8, 13, 18, 0.68);

    z-index: 1;
}


/* Isi sampul */

.cover-content {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    z-index: 2;

    width: min(1000px, 90%);
    margin: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 40px 20px;
}


/* Logo */

.hotel-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;
}

.logo-symbol {
    width: 62px;
    height: 62px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-family: "Cormorant Garamond", serif;
    font-size: 31px;

    margin-bottom: 10px;
}

.logo-text {
    text-align: center;
}

.logo-name {
    display: block;

    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 600;

    letter-spacing: 5px;
    line-height: 1;
}

.logo-hotel {
    display: block;

    color: var(--gold);

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 5px;

    margin-top: 7px;
}


/* Tulisan kecil */

.cover-small-text {
    color: var(--gold-light);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 5px;
    text-transform: uppercase;

    margin-bottom: 18px;
}


/* Judul */

.cover-title {
    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 8vw, 100px);
    font-weight: 500;

    line-height: 0.95;

    margin-bottom: 8px;
}

.cover-hotel {
    color: var(--gold-light);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 500;

    letter-spacing: 7px;
    text-transform: uppercase;

    margin-bottom: 22px;
}


/* Deskripsi */

.cover-description {
    max-width: 620px;

    margin: 0 auto 32px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;
    line-height: 1.9;
}


/* Tombol */

.cover-buttons {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 14px;
    flex-wrap: wrap;
}

.cover-btn {
    min-width: 160px;

    padding: 13px 25px;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.cover-btn:hover {
    transform: translateY(-3px);
}


/* Tombol utama */

.cover-btn.btn-primary {
    background: var(--gold);
    border: 1px solid var(--gold);

    color: var(--navy);
}

.cover-btn.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);

    color: var(--navy);
}


/* Tombol kedua */

.cover-btn.btn-secondary {
    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.55);

    color: var(--white);
}

.cover-btn.btn-secondary:hover {
    background: var(--white);
    border-color: var(--white);

    color: var(--navy);
}

.cover-btn i {
    margin-left: 6px;
}


/* Scroll indicator disembunyikan */

.scroll-down {
    display: none !important;
}


/* =========================================================
   4. NAVBAR
   ========================================================= */

.lunara-navbar {
    position: sticky;
    top: 0;

    z-index: 1000;

    width: 100%;

    background: rgba(17, 24, 32, 0.97);

    border-bottom: 1px solid rgba(217, 180, 95, 0.18);

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(10px);
}

.navbar-content {
    width: min(1180px, 92%);

    min-height: 78px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.navbar-logo {
    display: flex;
    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}

.moon-small {
    width: 36px;
    height: 36px;

    border: 1px solid var(--gold);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
}

.navbar-name {
    display: block;

    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-weight: 600;

    letter-spacing: 2px;
    line-height: 1;
}

.navbar-hotel {
    display: block;

    color: var(--gold);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 3px;

    margin-top: 4px;
}


/* Menu */

.navbar-menu {
    display: flex;
    align-items: center;

    gap: 8px;

    flex-wrap: wrap;
    justify-content: flex-end;
}

.navbar-menu a {
    position: relative;

    padding: 9px 13px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition: color 0.3s ease;
}

.navbar-menu a::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 3px;

    height: 1px;

    background: var(--gold);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--gold-light);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    transform: scaleX(1);
}


/* Tombol booking */

.booking-menu {
    border: 1px solid rgba(217, 180, 95, 0.6);

    border-radius: 3px;

    margin-left: 5px;
}

.navbar-menu a.booking-menu::after {
    display: none;
}

.navbar-menu a.booking-menu:hover {
    background: var(--gold);

    color: var(--navy);
}


/* =========================================================
   5. PAGE HEADER
   ========================================================= */

.page-header,
.booking-page-header {
    position: relative;

    padding: 95px 20px 80px;

    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy-light)
        );

    text-align: center;

    overflow: hidden;
}

.page-header::before,
.booking-page-header::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -170px;
    right: -80px;

    border: 1px solid rgba(217, 180, 95, 0.15);

    border-radius: 50%;
}

.page-header::after,
.booking-page-header::after {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    bottom: -130px;
    left: -50px;

    border: 1px solid rgba(217, 180, 95, 0.10);

    border-radius: 50%;
}

.page-header h1,
.booking-page-header h1 {
    position: relative;

    z-index: 1;

    color: var(--white);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(45px, 6vw, 68px);
    font-weight: 500;

    margin-bottom: 12px;
}

.page-header p,
.booking-page-header p {
    position: relative;

    z-index: 1;

    max-width: 650px;

    margin: auto;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;
}

.small-title {
    display: inline-block;

    position: relative;

    z-index: 1;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 4px;
    text-transform: uppercase;

    margin-bottom: 13px;
}


/* =========================================================
   6. GLOBAL SECTION
   ========================================================= */

section {
    position: relative;
}

.section-title {
    text-align: center;

    margin-bottom: 45px;
}

.section-title .small-title {
    margin-bottom: 8px;
}

.section-title h2 {
    color: var(--navy);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(35px, 5vw, 50px);
    font-weight: 500;

    line-height: 1.1;

    margin-bottom: 12px;
}

.section-title p {
    max-width: 650px;

    margin: auto;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   7. ABOUT PAGE
   ========================================================= */

.about-section {
    padding: 85px 0;

    background: var(--white);
}

.about-image {
    width: 100%;
    height: 470px;

    object-fit: cover;

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.about-content {
    padding: 15px 10px;
}

.about-content .small-title {
    color: var(--gold-dark);
}

.about-content h2 {
    color: var(--navy);

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 500;

    line-height: 1.1;

    margin-bottom: 20px;
}

.about-content p {
    color: var(--muted);

    font-size: 13px;

    margin-bottom: 16px;
}


/* Vision dan Mission */

.vision-mission {
    padding: 85px 0;

    background: var(--cream);
}

.vision-card,
.mission-card,
.service-card {
    height: 100%;

    padding: 30px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: 0 8px 25px rgba(17, 24, 32, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.vision-card:hover,
.mission-card:hover,
.service-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.vision-card h3,
.mission-card h3,
.service-card h3 {
    color: var(--navy);

    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 600;

    margin-bottom: 12px;
}

.vision-card p,
.mission-card p,
.service-card p {
    color: var(--muted);

    font-size: 12px;
}

.vision-card i,
.mission-card i,
.service-icon {
    color: var(--gold);

    font-size: 30px;

    margin-bottom: 17px;
}


/* Services */

.services-section {
    padding: 85px 0;

    background: var(--white);
}

.service-card {
    text-align: center;
}

.service-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    border: 1px solid rgba(217, 180, 95, 0.5);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
}


/* =========================================================
   8. FAQ / ACCORDION
   ========================================================= */

.faq-section {
    padding: 85px 0;

    background: var(--cream);
}

.accordion {
    max-width: 850px;

    margin: auto;
}

.accordion-item {
    margin-bottom: 10px;

    border: 1px solid var(--border) !important;

    border-radius: 8px !important;

    overflow: hidden;
}

.accordion-button {
    color: var(--navy);

    font-size: 13px;
    font-weight: 600;

    background: var(--white);

    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--navy);

    background: #fffdf8;
}

.accordion-button::after {
    filter: sepia(1);
}

.accordion-body {
    color: var(--muted);

    background: var(--white);

    font-size: 12px;
}


/* =========================================================
   9. ROOMS PAGE
   ========================================================= */

.rooms-section {
    padding: 85px 0;

    background: var(--cream);
}

.room-card {
    height: 100%;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: 0 10px 30px rgba(17, 24, 32, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.room-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-hover);
}

.room-card img,
.room-image {
    width: 100%;
    height: 245px;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.room-card:hover img,
.room-card:hover .room-image {
    transform: scale(1.04);
}

.room-body {
    padding: 28px;
}

.room-body h3 {
    color: var(--navy);

    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;

    margin-bottom: 8px;
}

.room-description {
    color: var(--muted);

    font-size: 12px;

    margin-bottom: 18px;
}

.room-price {
    color: var(--gold-dark);

    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 600;

    margin-bottom: 18px;
}

.room-price span {
    color: var(--muted);

    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 400;
}

.room-features {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 22px;
}

.room-features span {
    padding: 6px 10px;

    color: var(--muted);

    background: var(--light);

    border-radius: 3px;

    font-size: 10px;
}

.room-features i {
    color: var(--gold-dark);

    margin-right: 4px;
}


/* Tombol kamar */

.room-card .btn {
    width: 100%;

    padding: 11px 18px;

    border-radius: 3px;

    background: var(--navy);

    border: 1px solid var(--navy);

    color: var(--white);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.room-card .btn:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--navy);
}


/* =========================================================
   10. GALLERY
   ========================================================= */

.gallery-section {
    padding: 85px 0;

    background: var(--white);
}

.gallery-card {
    position: relative;

    overflow: hidden;

    height: 100%;

    border-radius: var(--radius);

    background: var(--navy);

    box-shadow: var(--shadow);
}

.gallery-img {
    width: 100%;
    height: 310px;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        opacity 0.4s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.06);

    opacity: 0.78;
}

.gallery-caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 40px 22px 20px;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.82)
        );

    color: var(--white);
}

.gallery-caption span {
    display: block;

    color: var(--gold-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 4px;
}

.gallery-caption h3,
.gallery-caption h4 {
    font-family: "Cormorant Garamond", serif;

    font-size: 24px;
    font-weight: 500;

    margin: 0;
}


/* =========================================================
   11. CONTACT
   ========================================================= */

.contact-section {
    padding: 85px 0;

    background: var(--cream);
}

.contact-card {
    padding: 35px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    flex-shrink: 0;

    width: 43px;
    height: 43px;

    border: 1px solid rgba(217, 180, 95, 0.5);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold-dark);

    font-size: 17px;
}

.contact-item h4,
.contact-item h5 {
    color: var(--navy);

    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-weight: 600;

    margin-bottom: 2px;
}

.contact-item p {
    color: var(--muted);

    font-size: 11px;

    margin: 0;
}


/* Contact form */

.contact-form {
    padding: 5px;
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 48px;

    border: 1px solid var(--border);

    border-radius: 5px;

    color: var(--text);

    font-size: 12px;

    box-shadow: none;
}

.contact-form textarea.form-control {
    min-height: 130px;

    resize: vertical;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(217, 180, 95, 0.12);
}

.contact-form label {
    color: var(--navy);

    font-size: 11px;
    font-weight: 600;

    margin-bottom: 7px;
}

.contact-form .btn {
    padding: 12px 25px;

    border: 1px solid var(--gold);

    border-radius: 3px;

    background: var(--gold);

    color: var(--navy);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.3s ease;
}

.contact-form .btn:hover {
    background: var(--navy);

    border-color: var(--navy);

    color: var(--white);
}


/* Map */

.map-container {
    overflow: hidden;

    margin-top: 40px;

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;

    min-height: 350px;

    border: 0;
}


/* =========================================================
   12. BOOKING PAGE
   ========================================================= */

.booking-section {
    padding: 85px 0;

    background: var(--cream);
}

.booking-page {
    padding: 85px 0;

    background: var(--cream);
}


/* Informasi booking */

.booking-information {
    height: 100%;

    padding: 35px;

    border-radius: var(--radius);

    background: var(--white);

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}

.booking-information h2 {
    color: var(--navy);

    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
    font-weight: 600;

    margin-bottom: 15px;
}

.booking-information h2 span {
    color: var(--gold-dark);
}

.booking-description {
    color: var(--muted);

    font-size: 12px;

    margin-bottom: 25px;
}


/* Benefit */

.booking-benefit {
    display: flex;
    flex-direction: column;

    gap: 0;

    margin-bottom: 0;
}

.booking-benefit > div {
    padding: 13px 0;

    border-bottom: 1px solid var(--border);

    color: var(--navy);

    font-size: 12px;
}

.booking-benefit > div:last-child {
    border-bottom: none;
}

.booking-benefit i {
    color: var(--gold-dark);

    font-size: 18px;
}


/* Catatan */

.booking-note {
    padding: 15px 17px;

    margin-top: 22px;

    background: #fffaf0;

    border-left: 3px solid var(--gold);

    color: var(--muted);

    font-size: 10px;
}

.booking-note i {
    color: var(--gold-dark);

    font-size: 16px;
}


/* Form booking */

.booking-form-card {
    height: 100%;

    background: var(--white);

    border-radius: var(--radius);

    border: 1px solid var(--border);

    box-shadow: var(--shadow);
}

.booking-form-heading {
    color: var(--navy);

    margin-bottom: 25px;
}

.booking-form-heading p {
    color: var(--gold-dark);

    font-family: "Montserrat", sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 6px;
}

.booking-form-heading h3 {
    color: var(--navy);

    font-family: "Cormorant Garamond", serif;

    font-size: 35px;
    font-weight: 600;

    margin-bottom: 5px;
}

.booking-form-heading span {
    color: var(--muted);

    font-family: "Montserrat", sans-serif;

    font-size: 11px;
    font-weight: 400;
}


/* Label */

.booking-form-card label {
    color: var(--navy);

    font-size: 11px;
    font-weight: 600;

    margin-bottom: 7px;
}


/* Input */

.booking-form-card .form-control,
.booking-form-card .form-select {
    min-height: 48px;

    border: 1px solid var(--border);

    border-radius: 5px;

    color: var(--text);

    font-size: 12px;

    box-shadow: none;
}

.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(217, 180, 95, 0.12);
}


/* Input group */

.booking-form-card .input-group-text {
    min-width: 48px;

    justify-content: center;

    background: var(--cream);

    border: 1px solid var(--border);

    color: var(--gold-dark);
}

.booking-form-card .input-group .form-control,
.booking-form-card .input-group .form-select {
    border-left: 0;
}


/* Tombol booking */

.booking-submit {
    width: 100%;

    min-height: 50px;

    border: 1px solid var(--gold);

    border-radius: 4px;

    background: var(--gold);

    color: var(--navy);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: 0.3s ease;
}

.booking-submit:hover {
    background: var(--navy);

    border-color: var(--navy);

    color: var(--white);
}


/* =========================================================
   13. BOOKING RESULT
   ========================================================= */

.booking-result {
    margin-top: 30px;
}

.result-box {
    padding: 30px;

    background: var(--navy);

    border-radius: var(--radius);

    color: var(--white);

    box-shadow: var(--shadow);
}

.result-title {
    color: var(--gold-light);

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;
    font-weight: 600;

    margin-bottom: 5px;
}

.result-thanks {
    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;

    margin-bottom: 22px;
}

.result-detail {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 10px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    font-size: 11px;
}

.result-detail span:first-child {
    color: rgba(255, 255, 255, 0.55);
}

.result-detail span:last-child,
.result-detail strong {
    color: var(--white);

    font-weight: 600;

    text-align: right;
}

.result-total {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    margin-top: 20px;

    padding-top: 18px;

    border-top: 1px solid rgba(217, 180, 95, 0.35);
}

.result-total span:first-child {
    color: var(--gold-light);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.result-total span:last-child,
.result-total strong {
    color: var(--gold-light);

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;
    font-weight: 600;

    text-align: right;
}


/* =========================================================
   14. FOOTER
   ========================================================= */

.lunara-footer {
    padding: 55px 0 25px;

    background: var(--navy-dark);

    color: rgba(255, 255, 255, 0.65);
}

.footer-logo {
    margin-bottom: 15px;

    color: var(--white);

    font-family: "Cormorant Garamond", serif;

    font-size: 27px;
    font-weight: 600;

    letter-spacing: 2px;
}

.footer-logo .navbar-name {
    font-size: 27px;
}

.lunara-footer p {
    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
}

.lunara-footer h4 {
    color: var(--white);

    font-family: "Cormorant Garamond", serif;

    font-size: 22px;
    font-weight: 500;

    margin-bottom: 14px;
}

.lunara-footer ul {
    list-style: none;

    padding: 0;
    margin: 0;
}

.lunara-footer li {
    margin-bottom: 7px;
}

.lunara-footer a {
    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;

    transition: color 0.3s ease;
}

.lunara-footer a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    margin-top: 35px;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

    text-align: center;

    color: rgba(255, 255, 255, 0.4);

    font-size: 10px;
}


/* =========================================================
   15. BOOTSTRAP OVERRIDE
   ========================================================= */

.btn-lunara {
    padding: 11px 22px;

    border: 1px solid var(--gold);

    border-radius: 3px;

    background: var(--gold);

    color: var(--navy);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.3s ease;
}

.btn-lunara:hover {
    background: var(--navy);

    border-color: var(--navy);

    color: var(--white);
}


/* =========================================================
   16. RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 992px) {

    .navbar-content {
        gap: 18px;
    }

    .navbar-menu {
        gap: 2px;
    }

    .navbar-menu a {
        padding: 8px 8px;

        font-size: 10px;
    }

    .navbar-menu a::after {
        left: 8px;
        right: 8px;
    }

    .about-image {
        height: 390px;
    }

    .booking-information,
    .booking-form-card {
        padding: 28px;
    }
}


/* =========================================================
   17. RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .navbar-content {
        min-height: auto;

        padding: 15px 0;

        flex-direction: column;

        align-items: center;

        gap: 13px;
    }

    .navbar-menu {
        width: 100%;

        justify-content: center;

        gap: 2px;
    }

    .navbar-menu a {
        padding: 7px 8px;

        font-size: 9px;
    }

    .navbar-menu a::after {
        left: 8px;
        right: 8px;
    }

    .booking-menu {
        margin-left: 0;
    }

    .page-header,
    .booking-page-header {
        padding: 75px 20px 65px;
    }

    .about-section,
    .vision-mission,
    .services-section,
    .faq-section,
    .rooms-section,
    .gallery-section,
    .contact-section,
    .booking-section,
    .booking-page {
        padding: 65px 0;
    }

    .about-image {
        height: 320px;

        margin-bottom: 25px;
    }

    .gallery-img {
        height: 270px;
    }

    .booking-information {
        margin-bottom: 25px;
    }

    .contact-card {
        padding: 25px;
    }
}


/* =========================================================
   18. RESPONSIVE - SMALL PHONE
   ========================================================= */

@media (max-width: 576px) {

    .cover-content {
        width: 94%;

        padding: 30px 10px;

        margin: 0;

        text-align: center;

        align-items: center;

        justify-content: center;
    }

    .logo-symbol {
        width: 53px;
        height: 53px;

        font-size: 26px;
    }

    .logo-name {
        font-size: 26px;

        letter-spacing: 4px;
    }

    .logo-hotel {
        font-size: 8px;

        letter-spacing: 4px;
    }

    .cover-small-text {
        font-size: 9px;

        letter-spacing: 3px;
    }

    .cover-title {
        font-size: 53px;
    }

    .cover-hotel {
        font-size: 22px;

        letter-spacing: 4px;
    }

    .cover-description {
        font-size: 11px;

        line-height: 1.8;
    }

    .cover-buttons {
        flex-direction: column;

        width: 100%;

        align-items: center;

        justify-content: center;
    }

    .cover-btn {
        width: 100%;

        max-width: 250px;
    }

    .navbar-name {
        font-size: 21px;
    }

    .navbar-menu {
        flex-wrap: wrap;

        row-gap: 3px;
    }

    .navbar-menu a {
        padding: 6px;

        font-size: 8px;

        letter-spacing: 0.5px;
    }

    .navbar-menu a::after {
        left: 6px;
        right: 6px;
    }

    .page-header,
    .booking-page-header {
        padding: 65px 15px 55px;
    }

    .page-header h1,
    .booking-page-header h1 {
        font-size: 42px;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .section-title h2 {
        font-size: 38px;
    }

    .about-image {
        height: 260px;
    }

    .vision-card,
    .mission-card,
    .service-card {
        padding: 25px;
    }

    .room-card img,
    .room-image {
        height: 220px;
    }

    .room-body {
        padding: 23px;
    }

    .room-body h3 {
        font-size: 27px;
    }

    .gallery-img {
        height: 240px;
    }

    .gallery-caption h3,
    .gallery-caption h4 {
        font-size: 21px;
    }

    .booking-information,
    .booking-form-card {
        padding: 23px;
    }

    .booking-information h2,
    .booking-form-heading,
    .booking-form-heading h3 {
        font-size: 30px;
    }

    .result-box {
        padding: 23px;
    }

    .result-detail {
        flex-direction: column;

        gap: 2px;
    }

    .result-detail span:last-child,
    .result-detail strong {
        text-align: left;
    }

    .result-total {
        align-items: flex-start;
    }

    .result-total span:last-child,
    .result-total strong {
        font-size: 25px;
    }

    .booking-form-card .input-group-text {
        min-width: 42px;
    }
}


/* =========================================================
   19. ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}