body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
}

header {
    text-align: center;
    padding: 80px 20px;
    background-color: #000;
}

section {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

h1, h2 {
    font-weight: 300;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.logo {
    font-size: 20px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.nav-links li a:hover {
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 80px 20px;
}
/* Gallery styles */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}
/* Lightbox */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
/* Video thumbnails */
.video-thumb {
    position: relative;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    pointer-events: none;
}
#video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

#video-lightbox.active {
    display: flex;
}

#video-frame {
    width: 90%;
    height: 90%;
    max-width: 1200px;
}
/* =========================
   MOBILE STYLES
   ========================= */

@media (max-width: 768px) {

    /* NAVIGATION */
    nav {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        font-size: 16px;
    }

    /* HERO */
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
        opacity: 0.8;
    }

    /* CONTENT */
    section {
        padding: 30px 15px;
        margin-bottom: 40px;
    }

    /* GALLERY */
    .gallery {
        gap: 15px;
    }

    .gallery img,
    .video-thumb img {
        height: 200px;
    }

    /* VIDEO LIGHTBOX */
    #video-frame {
        width: 95%;
        height: 60%;
    }
}

/* =========================
   CONTACT PAGE
   ========================= */

.contact {
    max-width: 600px;
    margin: 80px auto;
    text-align: center;
}

.contact h1 {
    margin-bottom: 10px;
}

.contact p {
    margin-bottom: 30px;
    opacity: 0.8;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    font-size: 14px;
}

.contact textarea {
    min-height: 140px;
    resize: vertical;
}

.contact button {
    padding: 15px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.contact button:hover {
    opacity: 0.9;
}

