body {
    font-family: 'Proxima Nova', sans-serif;
    margin: 0; /* Remove default margin to ensure full-width */
    padding: 0; /* Remove default padding */
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 2; /* Place the header above the section */
    text-align: center; /* Center-align content within the header */
}

/* Logo container styles */
.logo {
    display: inline-block;
    position: relative;
    margin-top: 20px;
}

/* Logo image styles */
.logo img {
    height: 150px; /* Increase the logo height as needed */
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.03);
    -webkit-filter: drop-shadow(5px 5px 5px #777777);
    filter: drop-shadow(5px 5px 5px #777777);
}

.menu-icon {
    display: none; /* Initially hide the menu icon on larger screens */
    cursor: pointer;
}

nav ul {
    list-style-type: none;
    display: flex; /* Enable flex layout for menu items */
    justify-content: center; /* Center-align menu items horizontally */
}

nav ul li {
    margin: 0 20px; /* Adjust margin to space items apart horizontally */
}

nav ul li:first-child {
    margin-left: 0; /* Remove margin from the first menu item */
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    text-decoration: underline;
    -webkit-filter: drop-shadow(2px 2px 2px #222);
    filter: drop-shadow(2px 2px 2px #222);
}

nav ul li a.selected {
    text-decoration: underline;
}

/* Section styles for all screens */
section {
    padding: 0; /* Remove default padding */
}

/* Styles for Section 1 */
#section1 {
    position: relative;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2)), url('assets/Background1.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

#section1 h1 {
    width: 970px;
    margin-top: 150px;
    margin-left: 40%;
    font-weight: 1000; /* Increase font-weight for a bolder effect */
    font-size: 80px;
    text-align: left; /* Align the h1 text slightly to the right */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for a more pronounced look */
}

#section1 h2 {
    margin-left: 40%;
    margin-top: -20px;
    font-size: 30px;
    font-weight: 600;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for a more pronounced look */

}

#section2 {
    width: 100%;
    height: 500px;
}

.video-wrapper {
	position: relative;
	margin-right: -100vw;
	margin-top: -55vh;
    margin-bottom: 50px;
	padding-bottom: 40%;
	width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    right: 100px;
    width: 40vw;
    height: 100%;
}

#section2 h2 {
    width: 50%;
    margin-top: 80px;
    margin-left: 80px;
    font-size: 42px;
    font-weight: 200;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#section2 p {
    width: 45%;
    margin-left: 80px;
    font-size: 32px;
    font-weight: 200;
    text-align: left;
}

#section3 .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px; /* Adjust the padding between images as needed */
}

#section3 .image-container a {
    padding-top: 20px;
    width: 25%; /* Each image takes up 20% of the screen width */
    display: inline-block;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 100px;
}

#section3 .image-container a h3 {
    font-size: 24px; /* Adjust the font size for text */
    text-align: center;
    margin-top: 20px; /* Adjust the spacing between the image and text */
    color: black;
    text-decoration: none;
}

#section3 .image-container a:hover h4 {
    display: block; /* Show h4 when <a> is hovered */
    position: absolute;
    bottom: -10%; /* Adjust the position of h4 */
}

#section3 .image-container h4 {
    display: none; /* Hide h4 by default */
    font-size: 16px; /* Adjust the font size for h4 */
    text-align: center;
    margin-top: 10px; /* Adjust the spacing between the image and h4 */
    color: black;
    text-decoration: none;
}

#section3 .image-container img {
    max-width: 100%;
    height: auto;
}

#section3 .image-container a:hover {
    transform: scale(1.03);
    -webkit-filter: drop-shadow(5px 5px 5px #777777);
    filter: drop-shadow(5px 5px 5px #777777);
}

#section4 {
    padding: 60px 0; /* Adjust padding as needed */
    overflow: hidden;
}

#section4 .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px; /* Adjust padding as needed */
}

.image-carousel {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

.main-image img {
    max-width: 750px; /* Adjust the width as needed */
}

.thumbnail-images {
    display: flex;
    justify-content: space-between;
    width: 750px; /* Adjust the width as needed */
}

.thumbnail {
    width: 20%; /* Adjust the width of the thumbnails */
    cursor: pointer;
    opacity: 0.6;
}

/* Style for the selected thumbnail */
.thumbnail.selected {
    opacity: 1;
}

.image-carousel-contact {
	display: flex;
	flex-direction: column;
	align-items: left;
	margin-top: -25%;
	margin-left: 55vw;
}

.image-carousel-contact .main-image {
    width: 500px; /* Adjust the width to take up the entire available space */
}

.image-carousel-contact .main-image img {
    width: 600px;
}

.image-carousel-contact .thumbnail-images {
    display: flex;
    flex-direction: row; /* Arrange thumbnails in a row */
    max-width: 500px;
}

.image-carousel-contact .thumbnail {
    width: 120px;
    height: auto;
    cursor: pointer;
    opacity: 0.6;
}

/* Style for the selected thumbnail */
.image-carousel-contact .thumbnail.selected {
    opacity: 1;
}

.gallery-info {
    margin-top: 10%;
    margin-left: 100px;
    width: 45%;
    font-size: smaller;
    color: black; /* Set text color to black */
}

.gallery-info img {
    width: 90%;
}

/* Contact Section Styles */
.contact-section {
    margin-left: auto;
    margin-right: auto;
    text-align: center;/* Center-align content */
    color: #333; /* Text color */
}

/* Contact Information Styles */
.contact-info {
    max-width: 1000px; /* Limit the width of the contact info container */
    margin: 0 auto; /* Center the container horizontally */
}

.contact-info h3 {
    font-size: 24;
}

.contact-info p {
    font-size: 20px; /* Font size for contact details */
    margin: 10px 0; /* Adjust spacing between paragraphs */
}

.contact-info a {
    color: #ff9900; /* Orange link color */
    text-decoration: none; /* Remove underlines from links */
    font-weight: bold;
    transition: color 0.3s; /* Smooth color transition on hover */
}

.contact-info a:hover {
    color: #e64d00; /* Darker orange color on hover */
}

/* Map Container Styles */
.map-container {
    height: 400px; /* Set the height of the map container */
    width: 100%; /* Full width */
    margin: 40px 0; /* Adjust spacing above and below the map */
    border: 2px solid #ccc; /* Add a border to the map container */
    border-radius: 10px; /* Rounded corners for the container */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.gm-style .gm-style-iw {
	font-weight: 300;
	font-size: 17px;
	color: black;
}

#section4 .info {
    flex: 1;
    margin-left: 40px;
    max-width: 50%; /* Adjust the width of the informational content */
}

#section4 .info img {
    width: 80%;
}

#section4 .info ul {
    list-style-type: disc; /* Use bullets for the list */
    padding-left: 40px; /* Adjust padding as needed */
    width: 40vw;
}

#section4 .info ul li {
    font-size: 22px; /* Adjust font size as needed */
    margin-bottom: 10px; /* Adjust spacing between list items */
}

#section5 .faq-table {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#section5 h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

#section5 table {
    border-collapse: collapse;
    margin: 0 auto;
    width: 1000px;
}

#section5 td {
    padding: 10px;
    border: 1px solid #ddd;
}

#section5 .question {
    background-color: #f2f2f2;
    font-weight: bold;
    width: 500px;
}

#section5 .answer summary {
    cursor: pointer;
}

#section5 .answer summary::marker {
    content: '\25B6'; /* Unicode symbol for a right-pointing triangle */
}

#section5 .answer summary::-webkit-details-marker {
    display: none;
}

#section5 .answer details {
    margin-top: 10px;
}

#section6 {
    text-align: center; /* Center-align the content horizontally */
    padding: 50px 0; /* Add padding as needed */
    background-color: #333; /* Background color */
    color: #fff; /* Text color */
}

#section6 p {
    margin: 10px 0; /* Adjust spacing between paragraphs */
    padding-bottom: 50px;
}

#section6 a {
    color: #fff; /* Link color */
    text-decoration: none; /* Remove underlines from links */
    font-weight: bold;
    transition: color 0.3s; /* Smooth color transition on hover */
}

#section6 a:hover {
    color: #ff9900; /* Change link color on hover */
}

#map {
    height: 400px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding: auto;
}

.cta-button {
    padding: 10px 20px;
    margin-left: -10%;
    background-color: #f3795dc1; /* Customize the background color */
    color: #fff; /* Customize the text color */
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px; /* Add rounded corners */
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #FF8040; /* Change color on hover */
    transform: scale(1.03); /* Add a slight scale effect on hover */
}

.grey-bg {
    background-color: #f5f5f5;
}

/* Footer styles for all screens */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Mobile optimization */
@media screen and (max-width: 768px) {
    .logo img {
        margin-left: -20px;
        height: 80px; /* Increase the logo height as needed */
        transition: all 0.3s ease;
        margin: 0 auto; /* Center the logo horizontally */
        display: block; /* Ensure the logo is a block-level element */
    }

    .logo img:hover {
        -webkit-filter: none;
        filter: none;
      }

    header {
        flex-direction: column;
        text-align: center;
    }

    header::after {
        display: none; /* Hide the shadow on mobile */
    }

    /* Section styles for mobile */
    section {
        padding: 0; /* Remove default padding */
    }

    #section1 h1 {
        width: auto;
        margin-top: 25vh; /* Adjust margin for better visibility */
        margin-left: 20px; /* Center-align the text */
        font-weight: 1000; /* Increase font-weight for a bolder effect */
        font-size: 43px; /* Adjust font size for better visibility */
        text-align: left; /* Center-align the text */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for a more pronounced look */
    }
    
    #section2 {
        height: auto;
    }

    #section1 h2 {
        margin-top: 10px; /* Adjust margin for better visibility */
        margin-left: 20px; /* Center-align the text */
        font-size: 27px; /* Adjust font size for better visibility */
        font-weight: bold; /* Increase font-weight for a bolder effect */
        text-align: left; /* Center-align the text */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow for a more pronounced look */
    }

    #section2 h2 {
        width: 90%;
        margin-top: 20px;
        margin-left: 20px;
        font-size: 22px;
        font-weight: 200;
        text-align: left;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    #section2 p {
        width: 90%;
        margin-top: 20px;
        margin-left: 20px;
        font-size: 20px;
        text-align: left;
    }

    .video-wrapper {
        position: relative;
        margin-top: 0vh;
        padding-bottom: 40%;
        width: 100%;
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center; /* Center vertically */
    }
    
    .video-wrapper iframe {
        width: 50%;
        height: 100%;
    }
    

    #section3 .image-container {
        margin-top: 20px;
        flex-direction: column; /* Stack images vertically */
        align-items: center; /* Center-align images horizontally */
        gap: 10px;
    }

    #section3 .image-container a {
        width: 70vw; /* Each image takes up 70vw on mobile */
    }

    #section3 .image-container h4 {
        display: block; /* Hide h4 by default */
        font-size: 16px; /* Adjust the font size for h4 */
        text-align: center;
        margin-top: 10px; /* Adjust the spacing between the image and h4 */
        color: black;
        text-decoration: none;
    }

    #section4 .content {
        display: flex;
    }

    .image-carousel {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-left: auto;    
        margin-right: auto;
    }

    .main-image img {
        max-width: 100%; /* Adjust the width as needed and centered */
        
    }

    .thumbnail-images {
        display: flex;
        justify-content: space-between;
        width: 100%; /* Take up full width */
        margin-top: 20px; /* Add space between carousel and info section */
    }

    .thumbnail {
        width: 20%; /* Adjust the width of the thumbnails */
        cursor: pointer;
        opacity: 0.6;
    }

    /* Style for the selected thumbnail */
    .thumbnail.selected {
        opacity: 1;
    }

    #section4 .info {
        width: 100%;
    }

    #section4 .info img {
        width: 90vw; /* Set the maximum width to 90% of the viewport width */
        display: block; 
        margin-left: -10vw;
        margin-right: auto;
        margin-top: 50px;
    }

    #section4 .info ul {
        list-style-type: disc; /* Use bullets for the list */
        margin-left: -70px;
        width: 90vw;
    }

    #section4 .info ul li {
        font-size: 18px; /* Adjust font size as needed */
        margin-bottom: 10px; /* Adjust spacing between list items */
    }

    #section5 .faq-table {
        text-align: center;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    #section5 h3 {
        font-size: 24px; /* Decrease font size for mobile */
        margin-bottom: 20px;
    }
    
    #section5 table {
        border-collapse: collapse;
        margin: 0 auto;
        max-width: 90%; /* Adjust width to fit mobile screens */
    }
    
    #section5 td {
        padding: 10px;
        border: 1px solid #ddd;
    }
    
    #section5 .question {
        background-color: #f2f2f2;
        font-weight: bold;
        width: auto; /* Adjust width to fit content */
    }
    
    #section5 .answer summary {
        cursor: pointer;
    }
    
    #section5 .answer summary::marker {
        content: '\25B6'; /* Unicode symbol for a right-pointing triangle */
    }
    
    #section5 .answer summary::-webkit-details-marker {
        display: none;
    }
    
    #section5 .answer details {
        margin-top: 10px;
    }

    #map {
        height: 500px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: auto;
    }

    .gallery-info {
        margin-top: 24%;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        font-size: smaller;
        color: black;
    }

    .image-carousel-contact {
        display: none;
    }
}





/* Mobile optimization */
@media screen and (max-width: 768px) {
    .logo img {
        margin-left: -20px;
        height: 100px; /* Keep the logo height as it is */
        transition: all 0.3s ease;
        margin: 0 auto; /* Center the logo horizontally */
        display: block; /* Ensure the logo is a block-level element */
    }

    .menu-icon {
        display: block; /* Show the menu icon on mobile */
        position: absolute;
        margin-top: 15vh; /* Adjust the top position as needed */
        margin-left: auto;
        margin-right: auto; /* Adjust the left position as needed */
        z-index: 4; /* Ensure the menu icon is above other elements */
    }

    .logo img:hover {
        -webkit-filter: none;
        filter: none;
      }

    header {
        display: flex;
        justify-content: space-between; /* Add space between logo and menu icon */
        align-items: center; /* Vertically center items */
    }

    .menu-icon {
        display: block;
        cursor: pointer;
    }

    .bar {
        background-color: #333;
        height: 3px;
        width: 25px;
        margin: 5px auto;
        transition: 0.4s;
    }

    .menu-icon.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-icon.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    nav ul {
        list-style-type: none;
        text-align: center;
        display: none;
        padding: 10px 0;
        position: absolute;
        top: 120px; /* Adjust the top position to prevent overlap with content */
        left: 50%; /* Center the menu horizontally */
        transform: translateX(-50%); /* Move the menu back by half of its width */
        background-color: white; /* Set background color for the menu */
        z-index: 3; /* Ensure the menu is above other elements */
        width: 100%; /* Set the width to match the site width */
    }

    nav ul.active {
        display: block;
    }

    nav ul li {
        margin: 15px 0;
    }

    nav ul li a {
        text-decoration: none;
        color: #333;
        font-weight: bold;
        display: block; /* Display each menu item on its own line */
        padding: 10px 0; /* Add padding for spacing */
    }

    body.menu-open nav ul.active {
        background-color: white; /* Change background color to white */
    }
}




