/* =================================================
   BORGO MARINA — LUXURY STYLE
   Reorganized & fixed version
   ================================================= */


/* =================================================
   1. VARIABLES
   ================================================= */

:root {
    --green: #14532d;
    --green-dark: #0b3b22;

    --gold: #d4af37;
    --gold-light: #e8c66a;

    --cream: #f5f0e6;
    --ivory: #fff8e7;

    --white: #ffffff;

    --text: #333;

    /* Font stacks use only fonts pre-installed on Windows, macOS, iOS,
       Android and most Linux distros - no web font download, and every
       font here fully covers Latin, Cyrillic and Vietnamese glyphs so
       Russian and Vietnamese text renders without layout-breaking
       fallback substitutions. */
    --font-heading: Georgia, "Noto Serif", "Times New Roman", serif;
    --font-body: Arial, "Helvetica Neue", Helvetica, "Noto Sans", sans-serif;
}

/* Georgia's Vietnamese glyph support is incomplete (tone marks on
   circumflex/breve vowels like ề, ệ, ẩ, ữ render inconsistently or
   fall back mid-word). Times New Roman has full, reliable Vietnamese
   coverage on Windows/macOS, so skip Georgia entirely when the page
   language is Vietnamese. */
html[lang="vi"] {
    --font-heading: "Times New Roman", Georgia, "Noto Serif", serif;
}


/* =================================================
   2. RESET & BASE
   ================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =================================================
   IMAGE PLACEHOLDERS
   Shown only until the real file exists at the path already referenced
   in the HTML/CSS (see README.md). Base look here; specific sizing for
   each image slot is added onto the matching selector further below so
   a placeholder always occupies exactly the same box as the real photo
   would.
   ================================================= */

.img-placeholder {
    background: repeating-linear-gradient(45deg, #e3ddcc, #e3ddcc 10px, #d7cfb8 10px, #d7cfb8 20px);
    border: 1px dashed #a99a6f !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    color: #6b5f3e;
    padding: 12px;
}

.img-placeholder .ph-label {
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.4;
}

.img-placeholder .ph-spec {
    font-size: 11px;
    opacity: .85;
}

/* CSS background-image slots (hero slideshow, promotion background) */
.img-placeholder-bg {
    background-image: none !important;
    background-color: #e3ddcc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-bg-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    color: #6b5f3e;
    background: rgba(255, 255, 255, .85);
    border: 1px dashed #a99a6f;
    padding: 16px 22px;
}

.ph-bg-label .ph-label {
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 13px;
}

.ph-bg-label .ph-spec {
    font-size: 12px;
    opacity: .85;
}

section {
    padding: 80px 60px;
    scroll-margin-top: 110px;
}

section h1, section h2 {
    text-align: center;
    color: var(--green);
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

h1, h2, h3 {
    text-rendering: optimizeLegibility;
}

button {
    background: var(--gold);
    border: none;
    padding: 15px 45px;
    border-radius: 30px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: .3s ease;
}

button:hover {
    background: var(--green);
    transform: translateY(-3px);
}


/* =================================================
   3. HEADER + NAV (same on every page)
   ================================================= */

header {
    height: 90px;
    padding: 0 70px;

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

    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 248, 231, .90);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-bottom: 2px solid rgba(212, 175, 55, .6);
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
}

.logo {
    width: 130px;
    height: auto;
    display: block;
}

.logo.img-placeholder,
.footer-logo.img-placeholder {
    min-height: 45px;
    font-size: 8px;
    padding: 4px;
    gap: 2px;
}
.logo.img-placeholder .ph-label,
.footer-logo.img-placeholder .ph-label { font-size: 8px; }
.logo.img-placeholder .ph-spec,
.footer-logo.img-placeholder .ph-spec { font-size: 7px; }

.header-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
    color: var(--green);
    white-space: nowrap;
}

.header-contact a {
    color: var(--green);
    transition: .3s;
}

.header-contact a:hover {
    color: var(--gold);
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

nav a {
    height: 42px;
    width: 115px;

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

    color: var(--green);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.2px;

    border-left: 1px solid rgba(20, 83, 45, .25);
    transition: .3s ease;
}

nav a:last-child {
    border-right: 1px solid rgba(20, 83, 45, .25);
}

nav a:hover,
nav a.active {
    background: var(--gold-light);
    color: var(--green-dark);
}


/* =================================================
   3b. LANGUAGE SWITCHER
   ================================================= */

.lang-switcher {
    position: relative;
    margin-left: 15px;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(20, 83, 45, .3);
    border-radius: 20px;
    padding: 8px 14px;
    color: var(--green);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .3s ease;
}

.lang-current:hover {
    background: var(--gold-light);
    transform: none;
}

.lang-list {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    min-width: 170px;
    z-index: 2000;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .25s ease;
}

.lang-switcher.open .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    border-radius: 8px;
    padding: 9px 12px;
    color: var(--text);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: .2s ease;
}

.lang-option:hover {
    background: var(--cream);
}

.lang-option.active {
    background: var(--gold-light);
    color: var(--green-dark);
    font-weight: bold;
}

@media (max-width: 900px) {
    .lang-switcher {
        margin: 10px 0 0;
    }
}


/* =================================================
   4. HERO SECTION
   ================================================= */

.hero {
    height: 90vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;

    opacity: 0;
    transform: scale(1.12);

    animation: heroSlide 60s infinite;
}

.slide-1  { background-image: url("images/hero/hero-01.jpg"); animation-delay: 0s;  }
.slide-2  { background-image: url("images/hero/hero-02.jpg"); animation-delay: 6s;  }
.slide-3  { background-image: url("images/hero/hero-03.jpg"); animation-delay: 12s; }
.slide-4  { background-image: url("images/hero/hero-04.jpg"); animation-delay: 18s; }
.slide-5  { background-image: url("images/hero/hero-05.jpg"); animation-delay: 24s; }
.slide-6  { background-image: url("images/hero/hero-06.jpg"); animation-delay: 30s; }
.slide-7  { background-image: url("images/hero/hero-07.jpg"); animation-delay: 36s; }
.slide-8  { background-image: url("images/hero/hero-08.jpg"); animation-delay: 42s; }
.slide-9  { background-image: url("images/hero/hero-09.jpg"); animation-delay: 48s; }
.slide-10 { background-image: url("images/hero/hero-10.jpg"); animation-delay: 54s; }

@keyframes heroSlide {
    0%   { opacity: 0; transform: scale(1.12); }
    5%   { opacity: 1; }
    20%  { opacity: 1; transform: scale(1); }
    25%  { opacity: 0; }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 75px;
    font-weight: 400;
    letter-spacing: 8px;
    margin: 0 0 15px;
    color: white;
    text-align: center;
    animation: heroText 1.5s ease;
}

.hero p {
    font-family: var(--font-heading);
    font-size: 26px;
    letter-spacing: 4px;
    margin-bottom: 35px;
    animation: heroText 1.8s ease;
}

@keyframes heroText {
    from { opacity: 0; transform: translateY(50px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* =================================================
   5. INTRO SECTION (generic page intro block)
   ================================================= */

.intro {
    padding: 90px 10%;
    background: #fffdf8;
}

.intro .container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.intro h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--green);
    margin-bottom: 30px;
}

.intro p {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 22px;
}


/* =================================================
   6. EXPERIENCE / DINING
   ================================================= */

#experience {
    background: var(--ivory);
}

.experience-intro {
    max-width: 900px;
    margin: -20px auto 60px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 21px;
    line-height: 2;
    font-style: italic;
    color: #555;
    letter-spacing: .3px;
}

.dining-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.dining-card {
    width: 350px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    transition: .5s ease;
}

.dining-card img,
.dining-card .img-placeholder {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .6s ease;
}

.dining-card:hover {
    transform: translateY(-10px);
}

.dining-card:hover img {
    transform: scale(1.08);
}

.card-text {
    padding: 35px 30px;
    background: #fffdf7;
}

.card-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 20px;
}

.card-text h3:after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-top: 15px;
}

.card-text p {
    font-family: var(--font-heading);
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}


/* =================================================
   7. ROOMS (zigzag layout)
   ================================================= */

#rooms {
    background: var(--cream);
}

.room-zigzag {
    max-width: 1200px;
    margin: auto;
}

.room-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 110px;
    transition: .5s ease;
}

.room-item.reverse {
    flex-direction: row-reverse;
}

/* Photo collage: one large hero shot + 3 supporting thumbnails,
   replacing the old single .room-item img. Framing (gold border,
   padding, shadow) is shared so the collage still reads as one
   cohesive "framed photo" object, matching the previous single-image
   treatment. */
.room-gallery {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 150px;
    gap: 10px;
}

.room-gallery img,
.room-gallery .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid var(--gold);
    padding: 5px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    transition: .4s ease;
}

.room-gallery .main-photo {
    grid-column: 1 / 4;
    grid-row: 1;
    border-width: 5px;
    padding: 8px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
}

.room-gallery .thumb-photo {
    grid-row: 2;
}

.room-gallery img:hover {
    transform: scale(1.05);
    z-index: 2;
    position: relative;
}

.room-text {
    width: 50%;
    font-family: var(--font-heading);
}

.category {
    color: #b8860b;
    letter-spacing: 5px;
    font-size: 13px;
    text-transform: uppercase;
    opacity: 0; /* NOTE: needs an `animation` (e.g. categoryFly) or a JS-added
                   class to actually reveal this — see section 12 */
}

.room-text h3 {
    color: var(--green);
    font-size: 42px;
    font-weight: 400;
    margin: 20px 0;
}

.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px 0;
}

.room-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.room-text footer {
    margin-top: 30px;
    color: #b8860b;
    letter-spacing: 4px;
}

/* focus effect: dim all rooms, highlight the hovered one */
.room-zigzag:hover .room-item {
    filter: brightness(.45);
}

.room-zigzag .room-item:hover {
    filter: brightness(1);
    transform: scale(1.03);
    z-index: 5;
}


/* =================================================
   8. GALLERY — HOME PAGE SLIDER
   ================================================= */

#gallery {
    background: var(--cream);
    overflow: hidden;
}

.gallery-slider {
    overflow: hidden;
}

.gallery-track {
    display: flex;
    width: max-content;
    gap: 25px;
    animation: galleryMove 35s linear infinite;
}

.gallery-track img,
.gallery-track .img-placeholder {
    width: 420px;
    height: 300px;
    object-fit: cover;
    border: 5px solid var(--gold);
    padding: 5px;
    background: white;
    border-radius: 15px;
    transition: .5s ease;
}

.gallery-track img:hover {
    transform: scale(1.05);
}

.gallery-slider:hover .gallery-track {
    animation-play-state: paused;
}

@keyframes galleryMove {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* =================================================
   9. GALLERY — DEDICATED PAGE (grid)
   ================================================= */

.gallery-page {
    background: var(--cream);
}

.gallery-intro {
    max-width: 900px;
    margin: -20px auto 60px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 21px;
    line-height: 2;
    font-style: italic;
    color: #555;
    letter-spacing: .3px;
}

.luxury-gallery {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 18px;
    border: 4px solid var(--gold);
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.gallery-item img,
.gallery-item .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}


/* =================================================
   10. ABOUT
   ================================================= */

.about-borgo {
    padding: 100px 10%;
    background: var(--ivory);
}

.about-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.about-container h2 {
    font-family: var(--font-heading);
    font-size: 45px;
    color: var(--green);
    margin: 20px 0;
}

.about-container h3 {
    font-family: var(--font-heading);
    color: var(--green);
    font-size: 28px;
    margin-bottom: 25px;
}

.about-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 35px auto;
}

.about-list li {
    font-size: 18px;
    margin: 15px;
    color: #333;
}

.italian-experience {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, .4);
}


/* =================================================
   11. BOOKING PAGE
   ================================================= */

.booking-page {
    background: var(--cream);
}

.booking-page h1, .booking-page h2 {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 400;
    color: var(--green);
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.booking-box {
    max-width: 850px;
    margin: auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    border: 3px solid var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group label {
    font-family: var(--font-heading);
    color: var(--green);
    font-size: 18px;
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.form-group textarea {
    height: 130px;
}

.booking-box button {
    width: 100%;
    margin-top: 10px;
    letter-spacing: 2px;
}


/* =================================================
   12. PROMOTION PAGE
   ================================================= */

.promotion-page {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)),
        url("images/promotion/promo-background.jpg");
    background-size: cover;
    background-position: center;
}

.promotion-box {
    background: rgba(255, 248, 231, .9);
    padding: 70px 80px;
    max-width: 650px;
    border-radius: 20px;
    text-align: center;
}

.promotion-box span {
    color: #b8860b;
    letter-spacing: 5px;
}

.promotion-box h1 {
    font-family: var(--font-heading);
    font-size: 65px;
    font-weight: 400;
    color: var(--green);
}

.promotion-box p {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}


/* =================================================
   13. FOOTER
   ================================================= */

.hotel-footer {
    background: var(--green-dark);
    color: white;
    padding: 70px 60px 25px;
    font-family: var(--font-body); /* matches body default, kept explicit for clarity */
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    width: 150px;
}

.footer-column h3 {
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    color: white;
    font-size: 15px;
    line-height: 1.7;
    margin: 15px 0;
    transition: .3s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-email,
.footer-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    margin: 12px 0;
}

.footer-email a,
.footer-phone a {
    color: white;
    text-decoration: none;
    white-space: nowrap;
}

.footer-email a:hover,
.footer-phone a:hover {
    color: var(--gold);
}

.contact-info .footer-email,
.contact-info .footer-phone {
    margin: 3px 0;
    line-height: 1.3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .3);
    margin-top: 50px;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--gold);
}


/* =================================================
   14. FLOATING CONTACT (WhatsApp + Zalo)
   ================================================= */

.floating-contact {
    position: fixed;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
    transition: .3s ease;
    animation: floatContact 2.5s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.15);
}

.floating-btn img,
.floating-btn .img-placeholder {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.floating-btn .img-placeholder {
    padding: 0;
    border-width: 1px;
    font-size: 6px;
    gap: 0;
}
.floating-btn .img-placeholder .ph-label { font-size: 6px; }
.floating-btn .img-placeholder .ph-spec { display: none; }

.zalo {
    border: 3px solid #0068FF;
}

.whatsapp {
    border: 3px solid #25D366;
}

@keyframes floatContact {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}


/* =================================================
   15. TEXT REVEAL ANIMATIONS
   (magic-title is self-triggering via CSS;
   magic-description / .category are opacity:0 by
   default and are expected to be revealed by JS
   adding an `animation` or a "visible" class —
   see comment on .category above)
   ================================================= */

.magic-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(-80px) rotateX(90deg);
    animation: magicFly .8s forwards;
}

@keyframes magicFly {
    0%   { opacity: 0; transform: translateY(-80px) rotateX(90deg); }
    60%  { opacity: 1; transform: translateY(15px) rotateX(0); }
    100% { opacity: 1; transform: translateY(0) rotateX(0); }
}

.magic-description {
    opacity: 0;
}

@keyframes textAppear {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes categoryFly {
    from { opacity: 0; transform: translateX(-80px); }
    to   { opacity: 1; transform: translateX(0); }
}


/* =================================================
   16. RESPONSIVE
   ================================================= */

/* ---------- Tablet (<=1100px) ---------- */
@media (max-width: 1100px) {
    header {
        padding: 0 30px;
    }

    .logo {
        width: 115px;
    }

    nav a {
        width: auto;
        padding: 0 12px;
        font-size: 13px;
    }

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

    .room-item {
        gap: 35px;
    }

    .room-text h3 {
        font-size: 36px;
    }
}


/* ---------- Mobile (<=900px) ---------- */
@media (max-width: 900px) {
    /* header */
    header {
        height: auto;
        min-height: 140px;
        padding: 15px 20px;
        flex-direction: column;
        justify-content: center;
        gap: 15px;
    }

    .brand-area {
        height: auto;
        width: 100%;
        justify-content: center;
        gap: 15px;
    }

    .logo {
        width: 100px;
    }

    .header-contact {
        height: auto;
        font-size: 12px;
    }

    /* nav */
    nav {
        height: auto;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    nav a {
        height: 42px;
        width: 115px;
        padding: 0;
        font-size: 12px;
    }

    /* hero */
    .hero {
        height: 75vh;
    }

    .hero h1 {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .hero p {
        font-size: 18px;
        letter-spacing: 2px;
    }

    button {
        padding: 12px 35px;
        font-size: 16px;
    }

    /* sections */
    section {
        padding: 50px 20px;
    }

    section h1, section h2 {
        font-size: 32px;
    }

    /* experience */
    .experience-intro {
        font-size: 17px;
        line-height: 1.8;
        padding: 0 10px;
    }

    .dining-card {
        width: 100%;
    }

    .card-text h3 {
        font-size: 28px;
    }

    /* rooms */
    .room-item,
    .room-item.reverse {
        flex-direction: column;
        margin-bottom: 70px;
    }

    .room-gallery {
        width: 100%;
        grid-template-rows: 200px 110px;
    }

    .room-text {
        width: 100%;
    }

    .room-text h3 {
        font-size: 34px;
    }

    .room-zigzag:hover .room-item {
        filter: none;
    }

    .room-zigzag .room-item:hover {
        transform: none;
    }

    /* gallery */
    .gallery-track img,
    .gallery-track .img-placeholder {
        width: 280px;
        height: 200px;
    }

    .gallery-intro {
        font-size: 17px;
        line-height: 1.8;
        padding: 0 10px;
    }

    .luxury-gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    /* booking */
    .booking-box {
        padding: 25px;
    }

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

    /* promotion */
    .promotion-box {
        padding: 40px 25px;
    }

    .promotion-box h1 {
        font-size: 42px;
    }

    /* footer */
    .hotel-footer {
        padding: 50px 25px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* floating buttons */
    .floating-contact {
        right: 15px;
        bottom: 20px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
    }
}


/* ---------- Small phone (<=600px) ---------- */
@media (max-width: 600px) {
    .brand-area {
        gap: 10px;
    }

    .logo {
        width: 90px;
    }

    .header-contact {
        font-size: 11px;
    }

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

    .hero p {
        font-size: 15px;
    }

    .gallery-track img,
    .gallery-track .img-placeholder {
        width: 240px;
        height: 170px;
    }

    .about-container h2,
    .intro h2 {
        font-size: 32px;
    }

    .about-container h3 {
        font-size: 24px;
    }
}


/* ---------- Large screen (>=1400px) ---------- */
@media (min-width: 1400px) {
    .hero h1 {
        font-size: 90px;
    }

    .room-zigzag {
        max-width: 1300px;
    }
}