body {
    font-family: Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #ffeee6;
    color: #fff;
}
.header {
    background-image: url('images/Untitled-1.jpg');
    background-size: cover; /* Ensures the image covers the header */
    background-position: center;
    height: 800px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Ensure text is readable */
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
.gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
}
.gallery video {
    width: 100%; /* Adjust size */
    height: auto; /* Adjust size */
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.gallery video:hover {
    transform: scale(1.08);
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.lightbox video {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}
.lightbox:target {
    display: flex;
}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
