
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family:'Helvetica Neue',Arial,sans-serif;
    overflow-x:hidden;
    background:black;
    color:#f5f5f5;
}

img, video {
    max-width:100%;
    height:auto;
    display:block;
}


#HomeBackground {
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
    pointer-events:none;
}


.navbar {
    position:fixed;
    top:20px;
    width:100%;
    display:flex;
    justify-content:center;
    z-index:1000;
}

.navbar-container {
    width:90%;
    max-width:1200px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1.2rem 2.5rem;
    background:rgba(10,10,40,0.35);
    backdrop-filter:blur(20px);
    border-radius:50px;
    border:1px solid rgba(255,255,255,0.15);
}

.navbar-logo {
    font-size:1.7rem;
    font-weight:700;
    letter-spacing:1px;
    color:yellow;
    text-decoration:underline;
    font-family:Georgia,'Times New Roman',Times,serif;
}

.navbar-menu {
    display:flex;
    gap:2rem;
    list-style:none;
}

.navbar-menu a {
    text-decoration:underline;
    color:yellow;
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    font-size:1.05rem;
}


.hamburger {
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span {
    width:25px;
    height:3px;
    background:yellow;
    border-radius:3px;
}


.MainHead {
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    font-family:Georgia,'Times New Roman',Times,serif;
    opacity:0;
    animation:fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
    from {opacity:0; transform:translateY(20px);}
    to {opacity:1; transform:translateY(0);}
}

.MainContainer h1 {
    font-size:clamp(3rem,7vw,6rem);
    letter-spacing:8px;
    text-transform:uppercase;
    font-weight:800;
    color:#FFD700;
    text-shadow:0 0 25px rgba(255,215,0,0.4);
    text-decoration:underline;
}


.about-section {
    background:rgba(10,10,40,0.95);
    padding:4rem 2rem 6rem;
    display:flex;
    justify-content:center;
}

.gallery-container {
    width:95%;
    max-width:1400px;
    margin:auto;
    background:rgba(10,10,40,0.6);
    padding:3rem;
    border-radius:25px;
    text-align:center;
}

.gallery-container h2 {
    font-size:clamp(2.5rem,5vw,4rem);
    letter-spacing:8px;
    text-transform:uppercase;
    font-weight:800;
    color:#FFD700;
    text-shadow:0 0 25px rgba(255,215,0,0.4);
    text-decoration:underline;
    margin-bottom:3rem;
    width:100%;
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.photo-gallery {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:2rem;
}

.photo-gallery img {
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:20px;
    cursor:pointer;
    transition:transform 0.4s ease,box-shadow 0.4s ease;
    box-shadow:0 0 20px rgba(255,215,0,0.15);
}

.photo-gallery img:hover {
    transform:scale(1.05);
    box-shadow:0 0 35px rgba(255,215,0,0.5);
}


.gallery-modal {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.95);
    justify-content:center;
    align-items:center;
    z-index:2000;
}

.gallery-modal img {
    max-width:90%;
    max-height:85vh;
    border-radius:20px;
    box-shadow:0 0 50px rgba(255,215,0,0.5);
}

.gallery-modal .close {
    position:absolute;
    top:40px;
    right:60px;
    font-size:3rem;
    color:#FFD700;
    cursor:pointer;
}

.modal-arrow {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:3rem;
    background:rgba(0,0,0,0.6);
    color:#FFD700;
    border:none;
    padding:0.8rem 1.2rem;
    cursor:pointer;
    border-radius:50%;
    transition:0.3s ease;
    z-index:10;
}

.modal-arrow:hover {
    background:rgba(0,0,0,0.9);
    transform:translateY(-50%) scale(1.1);
}

.modal-arrow.left { left:20px; }
.modal-arrow.right { right:20px; }


.footer {
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
    background: rgba(10,10,40,0.35);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.15);
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-container p {
    color: yellow;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-menu a {
    color: yellow;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.footer-menu a:hover {
    color: #FFD700;
    text-decoration: underline;
}

@media (max-width:900px) {

    

    .navbar-container{
        padding:1rem 1.5rem;
    }

    .navbar-menu {
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:rgba(10,10,40,0.95);
        backdrop-filter:blur(20px);
        flex-direction:column;
        align-items:center;
        gap:1.5rem;
        padding:2rem 0;
        display:none;
        border-radius:20px;
    }

    .navbar-menu.active { display:flex; }
    .hamburger { display:flex; }

    .MainHead { min-height:65vh; }
    .MainContainer h1 { letter-spacing:5px; }

    .photo-gallery img { height:240px; }

    .modal-arrow { font-size:2rem; padding:0.5rem 0.8rem; }
    .modal-arrow.left { left:5px; }
    .modal-arrow.right { right:5px; }

}

@media (max-width:480px){
    .photo-gallery img { height:180px; }
    .MainContainer h1 { font-size:2rem; }
}