@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --glass-border: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.cinzel {
    font-family: 'Cinzel', serif;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

p,
span,
li {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Base Components */
.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 8vw;
    /* Fluid professional padding for maximum content layout */
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-gold:hover::after {
    left: 0;
}

.btn-gold:hover {
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Premium Header Top Bar */
.top-bar {
    background: var(--bg-dark);
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 8px 4%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--glass-border);
}

.top-bar-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar i {
    color: var(--gold);
    margin-right: 5px;
}

.top-bar a:hover {
    color: var(--gold);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.nav-container {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 8vw;
}

.header-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.head-btn {
    padding: 10px 25px;
    font-size: 0.8rem;
}

.logo-text {
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

nav ul li a {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: 0.4s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-head span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.section-head h2 {
    font-size: 3rem;
    letter-spacing: 1px;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.95));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
}

.hero h1 {
    font-size: 4.5rem;
    letter-spacing: 6px;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Premium Card */
.premium-card {
    background: rgba(22, 22, 22, 0.6);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Room Card specific */
.room-img-wrapper {
    height: 350px;
    overflow: hidden;
}

.room-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.premium-card:hover .room-img-wrapper img {
    transform: scale(1.08);
}

.room-body {
    padding: 30px;
    text-align: center;
}

.room-price {
    font-size: 1.4rem;
    margin: 15px 0;
}

/* Mobile Toggle */
.mobile-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    background: none;
    border: none;
    cursor: pointer;
}

#mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    z-index: 10000;
    transition: left 0.4s ease;
    box-shadow: 2px 0 15px rgba(0,0,0,0.8);
}

#mobile-menu.open {
    left: 0;
}

#mobile-menu a {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .header-action {
        display: none;
    }

    .top-bar {
        display: none;
    }

    .nav-container ul {
        display: none;
    }
}

/* Mobile Adjustments for Responsiveness */
@media (max-width: 1024px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-head h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 5vw;
    }

    .header-action {
        display: none;
    }

    .nav-container nav {
        display: none;
    }

    .mobile-btn {
        display: block;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-head h2 {
        font-size: 1.5rem;
    }

    .premium-card {
        padding: 20px !important;
    }

    .room-img-wrapper {
        height: 250px !important;
    }

    .btn-gold {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

/* Image Fills */
img {
    max-width: 100%;
    display: block;
}
/* --- Desktop Defaults --- */
.mobile-call-btn { display: none; } /* Hide mobile call btn on desktop */

/* --- Mobile Styles (768px and below) --- */
@media (max-width: 1024px) {
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        height: 50px;
    }

    /* Force Logo to Middle */
    .logo-link {
        position: absolute;
        left: 80px;
        transform: translateX(-50%);
        z-index: 1;
    }
    
    .header-logo {
        height: 30px;
    }
    /* Menu Button on Left */
    .mobile-btn {
        display: block !important;
        order: 1;
        margin: 0;
    }

    /* Action area on Right */
    .header-action {
        order: 3;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Hide the large Book Now text on very small screens, or keep it compact */
    .head-btn {
        padding: 5px 10px !important;
        font-size: 0.69rem !important;
    }

    /* Show Call Icon on Mobile */
    .mobile-call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gold);
        color: #fff;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        text-decoration: none;
    }
    .swiper {
        margin-top: 6.8rem !important;
    }

    /* Hide desktop nav */
    .desktop-nav { display: none; }
    
    .top-bar-mb { display: flex !important; flex-direction: row;}
    .top-bar-inner-mb { display: flex !important; flex-direction: row;}
}