
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}


header {
    background: #111;
    padding: 15px 30px;
}
header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
}
header .logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}
header ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
header ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
header ul li a:hover {
    color: gold;
}


.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}
.hero .background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 30px;
    border-radius: 12px;
    max-width: 90%;
}
.hero h1 {
    font-size: 2.5rem;
}
.hero p {
    margin: 20px 0;
}
.hero .btn {
    display: inline-block;
    padding: 10px 20px;
    background: gold;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
}
.hero .btn:hover {
    background: white;
}


.gallery {
    padding: 50px 20px;
    text-align: center;
}
.gallery h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}
.photo-box {
    border: 2px solid #333;
    border-radius: 12px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    overflow: hidden;
}
.photo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.snap-video {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background: #000;
}
.snap-video video {
    width: 360px;
    height: 640px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    object-fit: cover;
}


footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 30px 15px;
    margin-top: 50px;
}



@media (max-width: 768px) {

    header nav {
        flex-direction: column;
        align-items: flex-start;
    }

    header ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .hero {
        height: 70vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .gallery h2 {
        font-size: 1.5rem;
    }

    .photo-box {
        height: 200px;
    }

    .snap-video video {
        width: 90%;
        height: auto;
        aspect-ratio: 9 / 16;
    }

    footer {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

    header {
        padding: 10px 20px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero .overlay {
        padding: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .snap-video video {
        width: 100%;
    }
}
