/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAVIGATION */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.7;
}

.login-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 25px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #fff;
    color: #000;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ccc;
}

.cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* INTRO / GLASS SECTION */
.intro-section {
    padding: 120px 5%;
    display: flex;
    justify-content: center;
}

.glass-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 80px 10%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    text-align: center;
}

.fade-in {
    font-size: 1.4rem;
    color: #eee;
    font-weight: 300;
}

/* LOCATION SECTION */
.location-section {
    padding: 100px 10%;
    background-color: #050505;
}

.eyebrow {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 20px;
}

.location-section h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.detail-item {
    flex: 1;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.count { color: #444; font-size: 0.8rem; }

/* AMENITIES GRID */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #222;
}

.card {
    padding: 80px 40px;
    border-right: 1px solid #222;
    transition: background 0.4s;
}

.card:hover {
    background: #111;
}

.card h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.card p {
    color: #888;
    font-size: 0.9rem;
}

/* FOOTER */
.site-footer {
    padding: 100px 5% 40px;
    text-align: center;
    border-top: 1px solid #222;
}

.signup-form {
    margin: 40px 0 80px;
}

.signup-form input {
    background: #111;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    width: 300px;
    margin-right: 10px;
}

.signup-form button {
    padding: 15px 40px;
    background: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .location-details, .info-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}