/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: white;
    color: #222;
}

h1, h2, h3 {
    margin: 15px 0;
    font-family: 'Quinnie', sans-serif;
}

section {
    padding: 10px 20px;
    text-align: center;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: bold;
    font-size: 22px;
    text-decoration: none;
    color: #222;
}

.nav-links {
    display: flex;
    gap: 15px;
}


/* BUTTONS */
.btn {
    background-color: #1877F2;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 14px;
}

.btn:hover {
    background-color: #145dc2;
}

.big-btn {
    font-size: 20px;
    padding: 18px 40px;
}

/* HERO IMAGE */
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* SUPER LARGE TEXT */
.super-large {
    font-size: 60px;
    font-weight: 800;
}

.large-text {
    font-size: 42px;
    font-weight: 700;
}



/* YOUTUBE RESPONSIVE */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 40px auto;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content-section {
    max-width: 900px;
    margin: auto;
}

/* FOOTER */
footer {
    background: black;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .super-large {
        font-size: 36px;
    }

    .large-text {
        font-size: 26px;
    }
}