@import url("../webfonts/BebasNeue_Regular/stylesheet.css");
/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    text-align: center;
    background-color: #2D2D2D;
	font-family: "BebasNeue Regular";
}

/* Navbar */
header {
    background-color: #9A8AC1;
    color: #fff;
    padding-top: 10px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 0px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    -webkit-box-shadow: 0px 0px 40px #230B3C;
    box-shadow: 0px 0px 40px #230B3C;
	font-family: "BebasNeue Regular";
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px; /* Adjust height as needed */
    width: auto; /* Maintains aspect ratio */
    margin-right: 10px;
}

#nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

#nav-links li {
    display: inline;
    font-family: "BebasNeue Regular";
}

#nav-links li a {
    color: #2D2D2D;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    font-size: xx-large;
}

#nav-links li a:hover {
    color: #F1F2F2;
}

.social-icons {
    display: flex;
    gap: 10px;
    height: 0%;
	margin-right: 10px;
}

.social-icons a img {
    border-radius: 50%;
    transition: transform 0.2s;
    height: 35px;
}

.social-icons a img:hover {
    transform: scale(1.3);
}

/* Hamburger Menu */
.hamburger {
    display: none; /* Hidden on larger screens */
    font-size: 1.8rem; /* Adjust size */
    cursor: pointer;
    color: #2D2D2D; /* Change to desired color */
    margin-right: 20px; /* Aligns it better */
}

h2 {
    color: #9A8AC1;
    font-size: 55px;
}

h3 {
    color: #F1F2F2;
    font-size: 35px;
    text-align: left;
    margin-left: 30px;
}

body footer {
    background-color: #9A8AC1;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-top: 70px;
}

/* Navigation Links in Mobile View */
@media (max-width: 768px) {
    #nav-links {
        display: none; /* Hidden by default */
        flex-direction: column; /* Stacked links in mobile view */
        gap: 15px; /* Space between links */
        background: #9A8AC1; /* Dropdown background color */
        padding: 20px 10px; /* Adjust padding for smaller screens */
        position: absolute; /* Ensures it overlays the content */
        top: 60px; /* Adjust below the header */
        left: 50%; /* Start in the center */
        transform: translateX(-50%); /* Center horizontally */
        width: 90%; /* Adjust width for dropdown */
        max-width: 400px; /* Prevent dropdown from being too wide */
        border-radius: 10px; /* Optional: Rounded corners */
        z-index: 1000; /* Ensure it is above other content */
        box-sizing: border-box; /* Ensure padding doesn't overflow */
        overflow-y: auto; /* Add scrolling for long menus */
    }

    #nav-links li {
        text-align: center; /* Center align each link */
        width: 100%; /* Ensure full width for touch areas */
        padding: 10px 0; /* Add spacing between links */
    }

    .hamburger {
        display: block; /* Show hamburger in mobile view */
        color: #2D2D2D; /* Set contrasting color */
        cursor: pointer; /* Add pointer cursor for interaction */
    }
}


/* Hero Section */
#hero {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.hero-box {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
   
    border-radius: 15px;
    overflow: hidden;

}

/* Image */
.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text */
.hero-content {
    flex: 1;
    padding: 40px;
    color: #F1F2F2;
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical centering */
    text-align: left;
}

.hero-content h1 {
    font-size: 5rem;
    font-family: "BebasNeue Regular", sans-serif;
    margin-bottom: 10px;
    color: #FFF;
	animation-delay: 0.2s; /* so it appears slightly after the text */
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #9A8AC1;
	animation-delay: 0.3s; /* so it appears slightly after the text */
}

.hero-content p {
    font-size: 1.32rem;
    line-height: 1.6;
    margin-bottom: 15px;
	animation-delay: 0.4s; /* so it appears slightly after the text */
}

/* Signature below text */
.signature {
    margin-top: 20px;
    display: block;
    text-align: right;
}

.signature img {
    max-width: 280px;
    height: auto;
}

/* Animations */
.fade-in-left {
    animation: fadeInLeft 2s ease forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 3s ease forwards;
    opacity: 0;
}

.signature.fade-in-right {
    animation-delay: 0.6s; /* so it appears slightly after the text */
}

@keyframes fadeInLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-box {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        padding: 20px;
        text-align: center;
    }
    .signature {
        text-align: center;
    }
    .signature img {
        max-width: 150px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}




/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    text-align: center;
}

.gallery img,
.gallery video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gallery .note {
    font-size: 0.9rem;
    color: #F1F2F2;
    /* [disabled]background-color: #9A8AC1; */
    border-radius: 10px;
    margin-bottom: 3px;
    text-align: center;
    margin-top: 3px;
    margin-right: 3px;
    margin-left: 3px;
    /* [disabled]padding-top: 15px; */
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}

/* Contact Section */
#contact {
    text-align: center;
    margin: 40px 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 600px; /* Set the max width of the video */
    background-image: url('path/to/your-image.jpg'); /* First frame as background */
    background-size: cover;
    background-position: center;
}

.video-container video {
    opacity: 0; /* Hide the video until play */
    width: 100%;
    height: auto;
}
