:root {
    --bg-color: #0c0e12;
    --text-color: #f0f0f0;
    --gold: #d4af37;
    --gold-light: #f3cf55;
    --dark-blue: #151922;
    --input-bg: #1e2430;
    --border-color: #2a3245;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.highlight {
    color: var(--gold);
    font-style: italic;
}

.bg-dark {
    background-color: #0f1218;
}

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

.section-padding {
    padding: 8rem 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(12, 14, 18, 0.9) 0%, rgba(12, 14, 18, 0) 100%);
}

.header.scrolled {
    padding: 1rem 0;
    background: rgba(12, 14, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

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

.btn-nav {
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.btn-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fallback gradient if image fails or for overlay */
    background: radial-gradient(circle at center, rgba(30, 36, 48, 0.2) 0%, var(--bg-color) 90%),
        url('hero.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    /* Optional: Add a subtle animation to background */
    animation: pulseBg 10s infinite alternate;
}

@keyframes pulseBg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background-color: var(--gold);
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 2px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #fff 0%, transparent 100%);
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.section-title.center {
    text-align: center;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.text-link {
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding-bottom: 5px;
}

.text-link:hover {
    border-bottom-color: var(--gold);
}

.visual-box {
    width: 100%;
    height: 500px;
    background: url('room.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.visual-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1));
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.amenity-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
}

.amenity-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.amenity-item h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #fff;
}

.amenity-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

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

.room-card {
    background: #1e2430;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.room-image {
    height: 250px;
    background: #2a3245;
    position: relative;
    overflow: hidden;
}

/* Placeholder gradients for room images */
/* Placeholder gradients for room images */
.room-1 {
    background: url('room.png');
    background-size: cover;
    background-position: center;
}

.room-2 {
    background: url('room.png');
    background-size: cover;
    background-position: center;
    filter: hue-rotate(15deg);
}

.room-3 {
    background: url('room.png');
    background-size: cover;
    background-position: center;
    filter: contrast(1.2);
}

.room-info {
    padding: 2rem;
}

.room-info h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.room-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Booking Form */
.booking-section {
    background-color: var(--dark-blue);
    position: relative;
}

.booking-form {
    max-width: 800px;
    margin: 4rem auto 0;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

input,
select,
textarea {
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    padding: 1rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    background: rgba(30, 36, 48, 0.8);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #fff;
    color: #000;
    border: none;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

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

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .booking-form {
        padding: 1.5rem;
    }
}