/* Global Styles */
body {
    font-family: 'Roboto', sans-serif; /* Apply professional sans serif font */
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

/* Container */
.container {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}

/* Header Styles */
header {
    background: #000000;
    color: #fff;
    padding-top: 30px;
    min-height: 0px;
    position: relative; /* Allow positioning of hamburger menu */
}

header a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 24px;
}

header ul {
    margin: 0;
    padding: 0;
}

header li {
    float: left;
    display: inline;
    padding: 0 20px;
}

header nav {
    float: right;
    margin-top: 0px;
}

/* Container to position background */
#hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, black 79%, transparent);
    z-index: -1; /* Place it behind the hero content */
    width: 100vw; /* Full viewport width */
    height: 120vh; /* Full viewport height */
    margin-left: calc(50% - 50vw); /* Center it */
}

/* Hero Section */
#hero {
    position: relative;
    overflow: hidden; /* Ensure no content overflows */
    padding: 0; /* Remove padding to fit the background */
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1; /* Ensure hero content is above the background */
}

#heroVideo {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mute-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20; /* Ensure it's on top */
}

.mute-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), transparent);
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 20px;
}

.hero-text {
    max-width: 400px;
}

.hero-text h2 {
    color: #fff;
    font-size: 24px; /* Larger title font size */
    margin-bottom: 10px;
}

.hero-text p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    background-color: #ff7800;
    color: #000000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 25px;
    display: inline-block;
    font-weight: bold;
}

.btn:hover {
    background-color: #ffffff;
}

/* About Section Styles */
section#about {
    background: #ffffff; /* White background for mobile */
    padding: 40px 0; /* Increase padding for better spacing */
    text-align: center; /* Center align content */
    position: relative; /* Allows for positioning of pseudo-elements */
    overflow: hidden; /* Hide any overflow */
}

.about-content {
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    align-items: center;
    gap: 20px;
    max-width: 100%; /* Ensure it doesn’t exceed container width */
    margin: 0 auto; /* Center the content */
    padding: 0 20px; /* Padding to ensure no overflow */
}

.about-image {
    border-radius: 50%;
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Adjust size as needed */
    object-fit: cover;
    border: 3px solid #77a6b1; /* Optional: border for emphasis */
}

.about-text {
    font-size: 1.2em; /* Increase font size */
    max-width: 600px; /* Limit the width for better readability */
    justify-content: center;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Center the icons */
    gap: 20px; /* Space between icons */
}

.social-links li {
    display: inline;
}

.social-links a {
    text-decoration: none;
    color: #333; /* Adjust color as needed */
    font-size: 24px; /* Size of icons */
}

.social-links a:hover {
    color: #ff7800; /* Change color on hover */
}

/* Basic modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Disable scrolling */
    background-color: black; /* Black background */
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%; /* Limit image size in the modal */
    max-height: 80vh;
    position: relative;
    top: 50%;
    transform: translateY(-50%); /* Center the image vertically */
}

/* Style for the modal arrows */
.modal .prev,
.modal .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    transition: 0.3s;
    user-select: none;
}

.modal .prev {
    left: 20px;
}

.modal .next {
    right: 20px;
}

/* Hover effect */
.modal .prev:hover,
.modal .next:hover {
    color: rgba(255, 255, 255, 0.8);
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.enlargeable {
    cursor: pointer;
    transition: transform 0.4s, filter 0.4s; /* Slow down the animation */
}

.enlargeable:hover {
    transform: scale(0.99); /* Scale down slightly */
    filter: brightness(0.8); /* Subtle darkening effect */
}

/* Contact Styles */
section#contact ul {
    list-style: none;
    padding: 0;
}

section#contact ul li {
    display: inline;
    margin-right: 10px;
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

img, video {
    max-width: 100%;
    height: auto;
}

video {
    display: block;
    margin: 0 auto;
}

/* Responsive Styles for Mobile */
@media (max-width: 800px) {
    body, header {
        margin: 0;
        padding: 0;
        text-align: center;
    }

    /* Mobile Navigation Menu */
    nav ul {
        display: none;
    }

    /* Adjust Header */
    header h1 {
        font-size: 24px; /* Smaller font size for mobile */
        white-space: nowrap; /* Prevent wrapping */
    }

    /* Hero Section Adjustments */
    #hero {
        padding: 0; /* Remove padding to fit the video */
        width:100vw;
    }

    /* Container to position background */
#hero-background {
    background: white
}

    .hero-content {
        position: relative;
        z-index: 1;
    }

    #heroVideo {
        width: 100%; /* Full width video */
    }

    /* Adjust Layout */
    #hero {
        padding: 0;
        margin: 0;
    }

     /* Hide Desktop Hero Overlay */
     .hero-overlay {
        display: none; /* Hide the overlay on mobile */
    }

    /* About Section */
    section#about {
        background: #ffffff; /* White background */
        padding: 40px 0; /* Increase padding for better spacing */
        margin: 0;
        width: 100vw;
    }

    .about-content {
        padding: 0;
        width: 80vw;
    }

    .about-text {
        font-size: 1em; /* Adjust font size for mobile */
    }

    .about-image {
        width: 120px; /* Adjust size for mobile */
        height: 120px; /* Adjust size for mobile */
    }

    }
    .gallery-grid {
        column-count: 2;
        padding: 10px; /* Adjust padding for mobile */
    }

.gallery-grid {
    column-count: 5;
    column-gap: 15px;
    background-color: black;
    padding: 20px;
    max-width: 100%;
    margin: 0 auto; /* Center the grid */
}

.gallery-grid img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 0px; /* Rounded corners for gallery images */
}

.gallery-video {
    width: 100%;
    margin-bottom: 15px;

}
