/* ===============================
   THEME TOKENS
================================ */

:root {
    --color-primary: #0F3D3E;
    --color-accent: #E6DCCF;
    --color-dark: #1F2937;
    --color-gold: #c9a45c;

    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Inter", Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    margin: 0;
}

/* ===============================
   UTILITY COLORS
================================ */

.text-primary {
    color: var(--color-primary);
}

.text-accent {
    color: var(--color-accent);
}

.text-dark {
    color: var(--color-dark);
}

.text-gold {
    color: var(--color-gold);
}

.bg-primary {
    background: var(--color-primary);
}

.bg-accent {
    background: var(--color-accent);
}

.bg-dark {
    background: var(--color-dark);
}

.bg-gold {
    background: var(--color-gold);
}

.font-heading {
    font-family: var(--font-heading);
}

.font-body {
    font-family: var(--font-body);
}

/* ===============================
   LINE CLAMP
================================ */

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-none {
    -webkit-line-clamp: unset;
}

/* ===============================
   GALLERY (converted from @apply)
================================ */

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.filter-btn {
    padding: 8px 24px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 999px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    background: transparent;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--color-primary);
    color: white;
}

/* hide scrollbar */
.scrollbar-hide {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* ===============================
   HERO SECTION
================================ */

.hero {
    position: relative;
    height: 650px;
    background: url("/assets/hero/hero.webp") center / cover no-repeat;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.2));
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* text */

.hero-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    color: var(--color-gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 74px;
    font-weight: 400;
    line-height: 1.1;
    margin: 20px 0;
}

.gold {
    color: var(--color-gold);
}

.hero-desc {
    max-width: 500px;
    font-size: 18px;
    color: #ddd;
    margin-bottom: 40px;
}

/* buttons */

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.gold-btn {
    background: var(--color-gold);
    color: black;
}

.gold-btn:hover {
    opacity: 0.9;
}

.outline-btn {
    border: 1px solid white;
    color: white;
}

.outline-btn:hover {
    background: white;
    color: black;
}

/* ===============================
   GLOBAL SECTIONS
================================ */

.section {
    padding: 100px 20px;
}

.section-light {
    background: #f9fafb;
}

.section-cream {
    background: #f6f1e9;
}

.container-wide {
    max-width: 1300px;
    margin: auto;
}

.center {
    text-align: center;
}

/* grids */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ===============================
   ABOUT
================================ */

.about-img {
    width: 100%;
    border-radius: 14px;
    border: 8px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
    font-size: 44px;
    margin: 20px 0;
}

.about-text p {
    line-height: 1.7;
    color: #555;
}


/* ===============================
   SERVICES
================================ */

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: rgba(201, 164, 92, 0.2);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}


/* ===============================
   ROOM SECTION
================================ */

.room-section {
    padding: 120px 20px;
    background: #f6f1e9;
}

.room-heading {
    text-align: center;
    font-size: 44px;
    margin-bottom: 80px;
    color: #0f172a;
}

/* card */

.room-card {
    background: white;
    padding: 16px;
}

.room-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* label */

.room-label {
    display: inline-block;
    padding: 12px 24px;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.room-label.dark {
    background: #0f172a;
    color: white;
}

.room-label.gold {
    background: var(--color-gold);
    color: white;
}

/* content */

.room-content {
    margin-top: 24px;
}

.room-meta {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.room-desc {
    font-size: 13px;
    text-transform: uppercase;
    color: #555;
}

.room-btn {
    margin-top: 8px;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-gold);
    background: none;
    border: none;
    cursor: pointer;
}

/* navigation */

.room-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}

.room-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #aaa;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.room-nav button:hover {
    background: black;
    color: white;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero {
        height: 600px;
    }
}

/* ===============================
   NAVBAR
================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(14px);
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 12px 44px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* logo */

.nav-logo img {
    height: 70px;
}

/* links */

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* button */

.nav-btn {
    background: var(--color-gold);
    color: black;
    padding: 10px 22px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.nav-btn:hover {
    opacity: 0.9;
}

/* hamburger */

.menu-btn {
    display: none;
    font-size: 26px;
    color: var(--color-gold);
    background: none;
    border: none;
    cursor: pointer;
}

/* mobile menu */

.mobile-menu {
    display: none;
    background: white;
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #ddd;
}

.mobile-menu a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: #333;
}

.mobile-btn {
    margin-top: 14px;
    background: var(--color-gold);
    color: black;
    padding: 14px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}

/* ===============================
   FOOTER
================================ */

.footer {
    background: #0F172A;
    color: #cbd5e1;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 60px 20px 20px;
}

/* grid */

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* brand */

.footer-brand img {
    height: 120px;
    margin-bottom: 20px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

/* icon */

.icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(201, 164, 92, 0.2);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* links */

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-links h4 {
    color: white;
    margin-bottom: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-brand img {
        height: 90px;
    }
}

/* ===============================
   SCROLL TO TOP BUTTON
================================ */

.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(201, 164, 92, 0.8);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
}

/* visible state */

.scroll-top-btn.show {
    opacity: 1;
    pointer-events: auto;
}

/* hover */

.scroll-top-btn:hover {
    opacity: 0.9;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .about-text h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 20px;
    }

    .hero-title {
        font-size: 30px;
    }
}


@media (max-width: 768px) {
    .room-heading {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .room-section {
        padding: 80px 20px;
    }
}