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

html, body {
    height: 100%;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: 900px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* === LOGO === */
.logo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo {
    max-width: 480px;
    width: 70%;
    height: auto;
    display: block;
}

/* === TAGLINE === */
.tagline {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000000;
}

/* === BUTTONS === */
.buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #000000;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 1.25rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.btn-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.btn-youtube .btn-icon {
    width: 36px;
    height: auto;
}

/* === CONTACT === */
.contact {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #000000;
    opacity: 0.9;
}

.contact a {
    color: #000000;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .container {
        gap: 28px;
    }
    .btn {
        padding: 12px 24px;
        font-size: 1.1rem;
    }
    .logo {
        width: 80%;
    }
}
