/* onboarding/landing-styles.css */

:root {
    --brand-green: #2d5a27;
    --brand-green-dark: #244820;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-dark: #f8f9fa;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: white;
    background-color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/images/golf-course-2.jpeg') no-repeat center center/cover;
    filter: blur(2px) brightness(0.4);
    z-index: -1;
}

.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    width: 100%;
    padding: 2rem;
}

.content-wrapper {
    margin: auto;
    max-width: 600px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    width: 90px;
    margin-bottom: 1.5rem;
}

.headline {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.subheadline {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.subheadline strong {
    color: #4CAF50; /* A slightly brighter green for emphasis */
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background-color: var(--brand-green);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: var(--brand-green-dark);
    transform: translateY(-3px);
}

.footer {
    padding: 1rem 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .headline {
        font-size: 3rem;
    }

    .subheadline {
        font-size: 1.25rem;
    }

    .content-wrapper {
        padding: 3rem;
    }
} 