:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #d4af37;
    /* Metallic Gold */
    --accent-light: #f9d976;
    --secondary-bg: #0f0f12;
    --white: #ffffff;
    --black: #000000;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1400px;
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 8rem;
    --spacing-xl: 12rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    color: var(--white);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.hero-text {
    max-width: 500px;
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    color: var(--white);
}

.text-center {
    text-align: center;
}

/* Constants */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: transparent;
    transition: color 0.4s;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--black);
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
    transition: transform 0.3s ease, padding 0.3s ease;
    mix-blend-mode: difference;
}

.header.header-scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    mix-blend-mode: normal;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}

.nav-list {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-color);
}

.hero-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 4rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 1px solid var(--white);
    border-radius: 20px;
    display: block;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--white);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Sections */
.section {
    padding: var(--spacing-lg) 0;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.section-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 90%;
}

.image-wrapper {
    height: 600px;
    width: 100%;
    background: #111;
    position: relative;
    overflow: hidden;
}

/* Marquee */
.marquee-track {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background: var(--secondary-bg);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #444;
    margin: 0 1rem;
    text-transform: uppercase;
}

.marquee-content span.star {
    color: var(--accent-color);
    font-size: 1rem;
    vertical-align: middle;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Brands */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    /* Border effect */
    margin-top: 4rem;
}

.brand-item {
    background: var(--bg-color);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    color: #666;
    font-size: 1.2rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.brand-item:hover {
    background: #111;
    color: var(--white);
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.amenity-card {
    position: relative;
}

.amenity-card.white {
    margin-top: 4rem;
    /* Offset layout */
}

.amenity-img-placeholder {
    height: 400px;
    width: 100%;
    margin-bottom: 2rem;
    opacity: 0.8;
    transition: opacity 0.4s;
}

.amenity-card:hover .amenity-img-placeholder {
    opacity: 1;
}

.amenity-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-light);
}

.amenity-desc {
    font-size: 0.9rem;
    color: #999;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.contact-title {
    color: var(--accent-color);
}

.link-btn {
    font-size: 2rem;
    font-family: var(--font-heading);
    display: block;
    margin: 2rem 0;
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.3);
}

.address {
    color: #666;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.footer {
    margin-top: 6rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #555;
    background: var(--bg-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    margin-left: 2rem;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 5px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0;
    /* Animated in JS */
}

.loader-line {
    width: 0;
    height: 1px;
    background: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {

    .about-grid,
    .amenities-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .amenity-card.white {
        margin-top: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .nav {
        display: none;
        /* Simple hiding for now, verify mobile menu logic */
    }

    .menu-btn {
        display: block;
        /* Typically hidden on desktop, need to add logic */
    }
}

.menu-btn {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

@media (max-width: 1024px) {
    .menu-btn {
        display: block;
    }
}