/* Landing Page Container */
.landing {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Hero Content */
.hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo */
.logo-wrap {
    margin-bottom: 0.1rem;
}

.hero-logo {
    width: clamp(250px, 75vw, 1000px);
    height: auto;
    display: block;
}

/* Tagline */
.hero p {
    font-family: "Playfair Display";
    font-size: clamp(1.2rem, 3vw, 1.2rem);
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* CTA Button */
.cta-enter {
    display: inline-block;
    padding: .8rem 1rem;
    border-radius: 4px;

    background-color: #2F5E4E;
    color: #ffffff;

    font-family: var(--font-body);
    font-weight: 550;
    text-decoration: none;

    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-enter:hover {
    transform: translateY(-1px);
    background-color: var(--gold);
}

/* Dark Mode Toggle */
.theme-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    cursor: pointer;
}