/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffffc4;
    color: #ffffff;
}
.header {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), url('images/contact-pic.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.attractive-heading {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    color: white;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-radius: 5px;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attractive-heading:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
}

.navbar a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

.navbar a:hover {
    text-decoration: underline;
}

.content {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

.content h1 {
    font-size: 48px;
    margin: 0;
}

.content p {
    font-size: 18px;
    margin: 20px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content button {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #ff6810;
    cursor: pointer;
    font-size: 16px;
}

.content button:hover {
    background-color: #fff;
    color: #000;
}



.photo, .gallery-item {
    width: 30%;
    height: auto;
    aspect-ratio: 16 / 9; /* Maintain a 16:9 aspect ratio */
    background-size: cover;
    background-position: center;
    margin: 1%;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.photo:hover, .gallery-item:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.videos {
    margin-top: 20px;
    text-align: center;
}

.videos h2 {
    margin-bottom: 20px;
}

.videos iframe {
    width: 47%;
    height: 300px;
    margin-bottom: 20px;
}

/* Gallery styles */
.gallery {
    text-align: center;
}

.gallery h2 {
    margin-bottom: 2px;
}

.gallery-item {
    width: 20%;
    height: 300px; /* Adjust the height automatically based on aspect ratio */
    aspect-ratio: 16 / 9; /* Maintain a 16:9 aspect ratio */
    background-size: cover;
    background-position: center;
    margin: 1%;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.9);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 700px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 80vh; /* Ensure it takes up 80% of the viewport height */
    background-color: #000; /* Background color to handle image visibility */
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 1100;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
    z-index: 1100;
}

/* Navigation icons inside the modal */
.modal-navigation {
    position: absolute;
    top: 80%;
    width: 95%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    user-select: none;
    padding: 0 20px;
    z-index: 1100;
}

.modal-navigation div {
    cursor: pointer;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    

    .photo, .gallery-item {
    
        width: 20%;
        height: 300px; /* Adjust the height automatically based on aspect ratio */
        aspect-ratio: 16 / 9; /* Maintain a 16:9 aspect ratio */
    }

   
    .videos iframe {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .photo, .gallery-item {
        width: 47%;
        
        height: 200px; /* Adjust the height automatically based on aspect ratio */
        aspect-ratio: "16 / 9"; /* Maintain a 16:9 aspect ratio */
    }

    .modal-content {
        width: 95%;
    }

    .close {
        font-size: 30px;
    }

    .modal-navigation {
        font-size: 30px;
    }
}
/* Contact Page Styles
.contact {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.contact label {
    margin-top: 10px;
}

.contact input, .contact textarea {
    margin-top: 5px;
    padding: 10px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.contact button {
    margin-top: 20px;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact button:hover {
    background-color: #555;
}
 */
