/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-size: cover;
    min-height: 100vh;
}

body {
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: #111827;
    color: white;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-family: cursive;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    user-select: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background: #1f2937;
    min-width: 160px;
    border-radius: 6px;
    flex-direction: column;
    z-index: 1000;
}

.dropdown-content a {
    padding: 10px;
    text-decoration: none;
    color: white;
    display: block;
}

.dropdown-content a:hover {
    background: #374151;
}

.dropdown.show .dropdown-content {
    display: flex;
}

h2 {
    color: black;
    font-style: oblique;
}

p {
    color: white;
}

/* Hamburger */
.menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        background: #111827;
        position: absolute;
        top: 52px;
        left: 0;
        width: 100%;
        padding: 15px 0;
    }

    nav.show {
        display: flex;
    }

    .dropdown-content {
        position: static;
        background: #1f2937;
        border-radius: 0;
    }

    .menu-btn {
        display: flex;
    }
}



.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

.info {
    text-align: center;
    margin-bottom: 20px;
    animation: fadeIn 2s ease;
}

iframe {
    border: none;
    width: 80%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    animation: zoomIn 1.5s ease;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animated Button */
.btn {
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 1rem;
    color: white;
    background: #4CAF50;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn:hover {
    background: #45a049;
    transform: scale(1.1);
}

a {
    color: rgb(255, 247, 247);
    /* background-color: #45a049; */
    padding: 10px 10px;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;

}

/* Footer */
footer {
    background: #1b4332;
    color: white;
    text-align: center;
    padding: 8px;
    margin-top: 9%;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}
#vid {
    width: 100%;
    border-radius: 2%;
}
