/* Landing Page Specific Styles */
/* Imports common styles via HTML link tag */

body {
    background: var(--color-black) url('shared/assets/swingooh_website_background.png') center center / cover no-repeat fixed;
}

.overlay {
    background: var(--bg-overlay-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 20px;
    text-align: center;
}

.logo {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary-pink);
    text-shadow: 3px 3px 6px rgba(255, 20, 147, 0.5);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.3rem;
    color: var(--color-primary-blue);
    text-shadow: 2px 2px 4px var(--shadow-blue);
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    max-width: 900px;
    width: 100%;
}

.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-primary-gold);
    text-shadow: 2px 2px 4px rgba(255, 215, 0, 0.4);
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.warning-box {
    background: var(--bg-error);
    border: 2px solid var(--color-red);
    border-radius: 15px;
    padding: 25px;
    margin: 40px 0;
}

.warning-box h2 {
    color: var(--color-red);
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.warning-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
}

.feature {
    background: var(--bg-overlay-light);
    border: 2px solid var(--border-medium);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.feature:hover {
    border-color: var(--color-primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-blue);
}

.feature h3 {
    color: var(--color-primary-pink);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.cta-section {
    text-align: center;
    margin: 50px 0 30px;
}

.cta-section .btn {
    display: inline-block;
    width: auto;
    padding: 20px 50px;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px var(--shadow-blue);
}

.cta-section .btn:hover {
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.6);
    transform: translateY(-3px);
}

.cta-section .btn:active {
    transform: translateY(-1px);
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-light);
}

footer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

footer a {
    color: var(--color-primary-blue);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
    .logo {
        font-size: 4rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-section .btn {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}
