/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #333; /* Dark gray background for the entire body */
    color: #fff; /* White text color for better readability */
}

/* Snowfall container */
.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Ensure snowfall doesn't interfere with other content */
    z-index: 1000; /* Ensure it is above other content */
    overflow: hidden; /* Hide overflow to keep snowflakes within the viewport */
}

/* Snowflakes */
.snowflake {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none; /* Ensure snowflakes don't interfere with other content */
    animation: snowfall linear infinite;
}

/* Snowfall animation */
@keyframes snowfall {
    to {
        transform: translateY(100vh); /* Move snowflakes down to bottom of viewport */
    }
}

/* Header Styles */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #444; /* Slightly lighter gray for the header */
    color: #fff;
    padding: 10px 20px;
}

/* Logo Styles */
.logo {
    font-size: 24px;
    color: #ffcc00; /* Golden yellow color for the logo */
    animation: blink 3s infinite; /* Slower blinking animation */
}

/* Define the blink animation */
@keyframes blink {
    0%, 100% {
        color: #ffcc00; /* Golden yellow color */
    }
    50% {
        color: #ffd700; /* Gold color for the blink effect */
    }
}

/* Burger Menu Icon */
.burger-menu {
    display: none; /* Hidden by default on PC */
    background: none;
    border: none;
    color: #ffcc00; /* Golden yellow color for the burger menu icon */
    font-size: 24px;
    cursor: pointer;
}

/* Navigation Menu for PC */
#navMenu {
    display: flex; /* Ensure the menu is visible on PC */
    position: relative; /* Position it relative to its container */
    background-color: #444; /* Slightly lighter gray for the menu */
    color: #fff;
    padding: 10px 20px;
    z-index: 1000; /* Ensure it is above other content */
}

#navMenu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex; /* Horizontal layout for PC */
}

#navMenu ul li {
    margin: 0 15px; /* Space out menu items */
}

#navMenu ul li a {
    color: #ffcc00; /* Golden yellow color for navigation links */
    text-decoration: none;
    font-size: 18px;
}

/* Close Button Styles */
.close-btn {
    display: none; /* Hidden by default */
}

/* Navigation Menu for Mobile */
@media (max-width: 600px) {
    #navMenu {
        display: none; /* Hidden by default on mobile */
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        background-color: #444; /* Slightly lighter gray for the menu */
        color: #fff;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        padding: 20px;
    }

    #navMenu.open {
        display: block; /* Show menu when open */
        transform: translateX(0); /* Slide menu in */
    }

    #navMenu ul {
        display: flex;
        flex-direction: column; /* Vertical layout for mobile */
        padding: 0;
    }

    #navMenu ul li {
        margin: 10px 0; /* Space out mobile menu items */
    }

    .burger-menu {
        display: block; /* Show burger menu on mobile */
    }

    .close-btn {
        display: block; /* Show close button on mobile */
        background: none;
        border: none;
        color: #ffcc00; /* Golden yellow color for the close button */
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

/* Main Content */
main {
    padding: 20px;
}

/* Set all heading colors and styles */
h1, h2, h3, h4, h5, h6 {
    color: #ffcc00; /* Golden yellow color for all headings */
    font-family: 'Arial', sans-serif; /* Consistent font family */
    font-weight: bold; /* Make headings bold */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Add a subtle shadow for better readability */
    margin: 20px 0; /* Spacing around headings */
}

h1 {
    font-size: 36px; /* Larger size for h1 */
}

h2 {
    font-size: 32px; /* Slightly smaller size for h2 */
}

h3 {
    font-size: 28px; /* Slightly smaller size for h3 */
}

h4 {
    font-size: 24px; /* Slightly smaller size for h4 */
}

h5 {
    font-size: 20px; /* Slightly smaller size for h5 */
}

h6 {
    font-size: 18px; /* Slightly smaller size for h6 */
}

/* Filter Section */
.filter-section {
    margin-bottom: 20px;
}

.filter-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #ffcc00; /* Golden yellow border for the filter input */
    border-radius: 4px;
    background-color: #fff; /* White background for the input */
    color: #333; /* Dark text color */
}

/* Photo Gallery */
.photo-gallery {
    margin: 20px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Define a fixed height for the gallery items */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 500px; /* Fixed height for uniformity */
}

/* Ensure images cover the container and maintain their aspect ratio */
.gallery-item img {
    width: 100%;
    height: 100%; /* Fill the container */
    object-fit: cover; /* Ensure the image covers the container */
    display: block;
}

/* Location Buttons */
.location-buttons {
    margin: 20px 0;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.location-btn {
    background-color: transparent; /* Remove background color */
    border: 1px solid #ffcc00; /* Golden yellow border */
    color: #ffcc00; /* Golden yellow text color */
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    transition: border-color 0.3s ease, color 0.3s ease;
    flex: 1 1 150px; /* Adjusts button width */
    text-decoration: none; /* Remove underline from anchor text */
}

.location-btn:hover {
    border-color: #e6b800; /* Slightly darker yellow on hover for the border */
    color: #e6b800; /* Slightly darker yellow for text on hover */
}

@media (max-width: 768px) {
    .location-btn {
        flex: 1 1 100%; /* Full width on small screens */
    }
}

/* Info Section */
.info-section {
    margin: 20px auto;
    max-width: 98%;
    padding: 20px;
    background-color: #444; /* Slightly lighter gray background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

.info-section h1,
.info-section h2,
.info-section h3,
.info-section h4,
.info-section h5,
.info-section h6 {
    color: #ffcc00; /* Golden yellow color for all headings in the info section */
    text-align: center; /* Center align headings and paragraphs */
    margin: 10px 0; /* Margin for spacing */
}


.info-section p {
    text-align: center; /* Center align headings and paragraphs */
    margin: 10px 0; /* Margin for spacing */
    color: #fff; /* White text color */
}

/* Footer */
footer {
    background-color: #444; /* Slightly lighter gray background for footer */
    color: #fff;
    padding: 10px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .filter-input {
        padding: 8px;
        font-size: 16px;
    }

    .location-btn {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* Filter Dropdown */
.filter-section {
    padding: 20px;
    background-color: #444; /* Dark gray background for the filter section */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.filter-container {
    width: 100%;
    max-width: 600px; /* Limit the maximum width */
}

.filter-select {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #ffcc00; /* Golden yellow border */
    border-radius: 25px;
    font-size: 16px;
    color: #ffcc00; /* Golden yellow text color */
    background-color: #333; /* Dark gray background for dropdown */
    appearance: none; /* Remove default dropdown styling */
    cursor: pointer;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiI+PHBhdGggZD0iTTYuMywzLjc5TDAsMS4xM0wyLjAsNS41TDUuNSw1LjVDNi41LDEyLDEyLDEyLDEyLDEyTDEsMy43OTkwOTQxMzQiIHN0cm9rZT0iIzAwMDAwMCIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz48L3BhdGg+PC9zdmc+');
    background-position: right 15px center;
    background-repeat: no-repeat;
    transition: border-color 0.3s, background-color 0.3s;
}

.filter-select:hover, .filter-select:focus {
    border-color: #e6b800; /* Slightly darker yellow on hover/focus */
    background-color: #444; /* Light black background on hover/focus */
    outline: none; /* Remove default focus outline */
}

.filter-select::-ms-expand {
    display: none; /* Remove default arrow in IE */
}

.filter-select option {
    background-color: #333; /* Dark gray background for dropdown options */
    color: #ffcc00; /* Golden yellow text color */
}

@media (max-width: 600px) {
    .filter-container {
        padding: 10px;
    }

    .filter-select {
        width: 100%;
    }
}



/* Container for the image */
.image-container {
    width: 80%; /* Adjust width for PC view */
    max-width: 1000px; /* Reduce maximum width */
    overflow: hidden; /* Ensures no overflow outside the container */
    position: relative; /* Required for maintaining aspect ratio */
    margin: 0 auto; /* Center align */
}

/* Style for the image */
.image-container img {
    width: 100%;
    height: auto; /* Maintains aspect ratio */
    display: block;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .image-container {
        width: 90%; /* Reduce width for mobile view */
        max-width: 90%; /* Ensure it doesn't exceed 90% of the viewport width */
    }

    .image-container img {
        height: auto; /* Ensure image maintains aspect ratio */
    }
}

.sticky-buttons {
    position: fixed;
    right: 20px; /* Distance from the right edge */
    top: 50%; /* Vertically center the buttons */
    transform: translateY(-50%); /* Adjust the vertical centering */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between buttons */
}

.sticky-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #007bff; /* Blue background for buttons */
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 24px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.sticky-buttons a:hover {
    background-color: #0056b3; /* Darker blue on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.1); /* Slightly enlarge the button on hover */
}

.sticky-buttons .whatsapp {
    background-color: #25D366; /* WhatsApp green */
}

.sticky-buttons .whatsapp:hover {
    background-color: #128C7E; /* Darker green on hover */
    transform: scale(1.1); /* Slightly enlarge the button on hover */
}

.sticky-buttons .call {
    background-color: #34b7f1; /* Light blue for call */
}

.sticky-buttons .call:hover {
    background-color: #009688; /* Darker blue on hover */
    transform: scale(1.1); /* Slightly enlarge the button on hover */
}

/* Optional: Add a bounce animation when the page loads */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.sticky-buttons a {
    animation: bounce 2s ease infinite;
}


/* Mobile-specific Heading Sizes */
@media (max-width: 600px) {
    h1 {
        font-size: 28px; /* Smaller size for h1 on mobile */
    }

    h2 {
        font-size: 24px; /* Smaller size for h2 on mobile */
    }

    h3 {
        font-size: 20px; /* Smaller size for h3 on mobile */
    }

    h4 {
        font-size: 18px; /* Smaller size for h4 on mobile */
    }

    h5 {
        font-size: 16px; /* Smaller size for h5 on mobile */
    }

    h6 {
        font-size: 14px; /* Smaller size for h6 on mobile */
    }
}

@media (max-width: 600px) {
    .info-section h1 {
        font-size: 24px; /* Smaller size for h1 on mobile */
    }

    .info-section h2 {
        font-size: 20px; /* Smaller size for h2 on mobile */
    }

    .info-section h3 {
        font-size: 18px; /* Smaller size for h3 on mobile */
    }

    .info-section h4 {
        font-size: 16px; /* Smaller size for h4 on mobile */
    }

    .info-section h5 {
        font-size: 14px; /* Smaller size for h5 on mobile */
    }

    .info-section h6 {
        font-size: 12px; /* Smaller size for h6 on mobile */
    }
}


/* Adjust height for mobile devices */
@media (max-width: 768px) {
    .gallery-item {
        height: 600px; /* Adjust height for tablets and smaller devices */
    }
}

@media (max-width: 600px) {
    .gallery-item {
        height: 600px; /* Adjust height for mobile devices */
    }
}

/* General Styles for Contact Page */
.contact-section {
    padding: 20px;
    background-color: #2e2e2e; /* Dark Gray */
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1c1c1c; /* Light Black */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.contact-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #f1c40f; /* Golden Yellow */
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #f1c40f; /* Golden Yellow */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #444; /* Gray */
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #333; /* Darker Gray */
    color: #fff;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #f1c40f; /* Red */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.submit-btn:hover {
    background-color: #c0392b; /* Darker Red */
}

.contact-info {
    padding: 20px;
    background-color: #1c1c1c; /* Light Black */
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.contact-info-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-container h2 {
    margin-bottom: 15px;
    color: #f1c40f; /* Golden Yellow */
}

.contact-info-container p {
    font-size: 16px;
    color: #fff;
    margin: 10px 0;
}

.contact-info-container i {
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-container {
        padding: 15px;
    }

    .contact-form {
        flex-direction: column;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .submit-btn {
        padding: 10px;
        font-size: 14px;
    }

    .contact-info-container p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 10px;
    }

    .submit-btn {
        padding: 8px;
        font-size: 12px;
    }

    .contact-info-container p {
        font-size: 12px;
    }
}

