body {
    margin: 0;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: #101010;
    color: #fafafa;
    min-height: 100vh;
    /* For the parallax backgrounds */
    background-attachment: fixed;
    background-position: center 0px, center 200px, center 400px;
    background-repeat: no-repeat;
    background-size: cover, cover, cover;
    /* Initially set images, will be changed via JS */
    background-image:
        url('static/bg1.jpg'),
        url('static/bg2.jpg'),
        url('static/bg3.jpg');
    transition: background-position 0.7s cubic-bezier(.5,1,.89,1);
}

.top-bar {
    background: #181818;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 2vw 0.7rem 2vw;
    position: relative;
    z-index: 2;
}

.quick-links {
    display: flex;
    gap: 1.5rem;
}
.quick-links a {
    color: #FFD600;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.2s;
}
.quick-links a:hover {
    color: #fff176;
}

.social-top {
    display: flex;
    gap: 1rem;
}
.social-top a {
    display: inline-flex;
    align-items: center;
    color: #FFD600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s;
}
.social-top a:hover {
    color: #fff176;
}

h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin: 0.7rem 0 0.35rem 0;
    color: #FFD600;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 16px #0008;
    line-height: 1.12;
    text-align: center;
}

.tagline {
    font-size: 1.15rem;
    color: #e0c800;
    margin-bottom: 0.4rem;
    margin-top: 0.2rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-align: center;
    display: block;
}

@media (min-width: 1200px) {
    .columns-3, .carousel { max-width: 1400px; }
}

.main-logo, .logo {
    max-width: 170px;
    display: block;
    margin: 1.5rem auto 0.5rem auto;
}
@media (max-width: 600px) {
    .main-logo, .logo {
        max-width: 100px;
    }
}

.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #222;
    border-radius: 15px;
    margin: 2.2rem auto 2rem auto;
    width: 94%;
    max-width: 1080px;
    height: 390px;
    position: relative;
    box-shadow: 0 4px 32px rgba(0,0,0,0.15);
}

.carousel img {
    max-height: 365px;
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    opacity: 1;
    transition: opacity 0.7s cubic-bezier(.5,1,.89,1);
}

.carousel img.fading {
    opacity: 0;
}

.carousel-btn {
    background: #FFD600;
    border: none;
    border-radius: 50%;
    padding: 0.9rem;
    margin: 0 1rem;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

.columns-3 {
    display: flex;
    gap: 2.2rem;
    justify-content: center;
    align-items: flex-start;
    margin: 3.2rem auto 2rem auto;
    max-width: 1400px;
    width: 96%;
}

.column {
    background: #191919d0;
    border-radius: 12px;
    padding: 2.1rem 1.7rem 2.2rem 1.7rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    flex: 1 1 0;
    min-width: 0;
    margin: 0 0.5rem;
}

.youtube-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #222;
    border-radius: 9px;
    margin: 1.3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 1px 12px #0008;
    overflow: hidden;
}
.youtube-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.youtube-placeholder .yt-fake {
    color: #FFD600;
    font-size: 2.2rem;
    opacity: 0.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact {
    border: 3px solid #FFD600;
    border-radius: 20px;
    margin: 3rem auto 2rem auto;
    max-width: 520px;
    text-align: center;
    background: #191919ee;
    box-shadow: 0 2px 20px #0004;
    padding: 2.3rem 1rem 2.5rem 1rem;
}

.contact-info {
    justify-content: center;
    text-align: center;
}

@media (max-width: 900px) {
    .columns-3 { flex-direction: column; gap: 1.5rem; max-width: 97vw;}
    .carousel { max-width: 98vw; height: 230px; }
    .carousel img { max-height: 220px;}
}

@media (max-width: 600px) {
    .main-logo { max-width: 100px; }
    .carousel { height: 140px; }
    .carousel img { max-height: 130px;}
    .contact { padding: 1rem; }
    .column { padding: 1rem; }
}
