:root {
    --color-gold: #D4AF37;
    --color-gold-light: #F4D056;
    --color-dark: #0a0a0a;
    --color-dark-soft: #1a1a1a;
    --color-white: #ffffff;
    --color-gray: #f5f5f5;
    --color-text-muted: #888888;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-gold);
    color: var(--color-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.section-padding {
    padding: 120px 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem 2rem;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

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

.btn-nav {
    border: 1px solid var(--color-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 2px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
}

/* Hero Section */
.hero {
    /* Background handled inline in HTML for now to reference the specific asset */
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--color-gray);
    font-weight: 300;
}

/* Amenities Section */
.bg-darker {
    background-color: var(--color-dark-soft);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: var(--color-dark);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
}

.amenity-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.amenity-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--color-white);
    font-family: var(--font-body);
}

.amenity-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.room-card {
    background: var(--color-dark-soft);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.room-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.room-card.highlight {
    border: 1px solid var(--color-gold);
}

.room-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.room-details {
    padding: 2rem;
}

.room-details h3 {
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.room-details .price {
    color: var(--color-gold);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.room-details .price span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.room-details p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-text {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-text:hover {
    color: var(--color-white);
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-col h3 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.footer-col p {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.social-links a {
    color: var(--color-text-muted);
    margin-right: 1.5rem;
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

/* Animation Utilities */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 768px) {
    .section-padding {
        padding: 80px 0; /* Slightly less on mobile but still spacious */
    }
    
    .nav-links {
        position: absolute;
        right: 0px;
        top: 0px;
        height: 100vh;
        background: var(--color-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 100px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        transform: translateX(0%);
    }

    .hamburger {
        display: flex;
        z-index: 1001; /* Above the side menu */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
