/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

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

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* ===== FULL SCREEN BACKGROUND ===== */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0a0a0a;
    position: relative;
}

.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/background.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(5, 20, 18, 0.70) 0%,
            rgba(5, 20, 18, 0.55) 40%,
            rgba(5, 20, 18, 0.72) 70%,
            rgba(5, 20, 18, 0.92) 100%);
    z-index: 1;
}

/* ===== MAIN CONTENT ===== */
.landing-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    text-align: center;
}

/* ===== LOGO ===== */
.logo-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 300;
    color: #c9a84c;
    letter-spacing: 0.15em;
    text-transform: lowercase;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(201, 168, 76, 0.3);

}

.logo-divider {
    display: flex;
    align-items: center;
    gap: 16px;

}

.logo-divider .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
}

.logo-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: #c9a84c;
    letter-spacing: 0.3em;
    font-weight: 400;
}

.logo-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #c9a84c;
    letter-spacing: 0.6em;
    font-weight: 400;
    text-transform: uppercase;

}

/* ===== TAGLINE ===== */
.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.08em;
    margin-top: 30px;

}

/* ===== BOTTOM NAV (5 BUTTONS) ===== */
.bottom-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-bottom: 80px;

}

.nav-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.25em;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-phone:hover {
    color: #c9a84c;
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

/* ===== GLASS BUTTONS ===== */
.glass-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}

.glass-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.glass-btn:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: rgba(201, 168, 76, 0.4);
    color: #c9a84c;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .landing-container {
        padding: 30px 15px;
    }

    .logo-main {
        letter-spacing: 0.1em;
    }

    .logo-subtitle {
        letter-spacing: 0.3em;
    }

    .logo-divider .line {
        width: 40px;
    }

    .glass-buttons {
        gap: 10px;
    }

    .glass-btn {
        padding: 10px 22px;
        font-size: 0.8rem;
    }

    .bottom-nav {
        gap: 12px;
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .glass-buttons {
        gap: 8px;
    }

    .glass-btn {
        padding: 9px 18px;
        font-size: 0.75rem;
    }

    .nav-phone {
        letter-spacing: 0.15em;
    }

    .bottom-nav {
        padding-bottom: 20px;
    }
}