/* Complete Updated CSS (style.css) */

/* General Body Styling */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: transparent;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
}

.navbar-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffcc00;
}

/* Reservation Button Styling */
.reservation-button {
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-left: 20px;
}

.reservation-button:hover {
    background-color: rgba(0, 0, 0, 1);
    color: #ffcc00;
}

/* Video Background */
#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Welcome Section Styling */
.welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    z-index: 2;
    color: white;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    background: transparent;
    margin: 0 auto; /* Center the welcome section */
    box-sizing: border-box; /* Ensure padding does not affect width */
}

.welcome {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: white;
    z-index: 2;
}

.welcome-logo {
    max-width: 100%;
    margin: 20px auto;
}

.welcome-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}



.welcome h1, .welcome p {
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.7);
    margin: 10px 0;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(51, 51, 51, 0.85);
    color: white;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Booking Form Styling */
#booking-form {
    max-width: 500px;
    margin: 40px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#booking-form label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

#booking-form input[type="text"],
#booking-form input[type="email"],
#booking-form input[type="tel"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border 0.3s ease;
}

#booking-form input:focus {
    border-color: #4a7c59;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 124, 89, 0.2);
}

#booking-form button {
    width: 100%;
    padding: 15px;
    background-color: #4a7c59;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#booking-form button:hover {
    background-color: #3b6247;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: fixed;
        top: 0;
        right: 0;
        width: 200px;
        height: 100%;
        padding-top: 60px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }

    .welcome h1 {
        font-size: 28px;
    }

    .reservation-button {
        margin: 0;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .welcome h1 {
        font-size: 24px;
    }

    .welcome p {
        font-size: 16px;
    }

    .reservation-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* CSS for Contact Page */

/* Contact Section Styling */
.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 60px auto;
    text-align: left;
}

.contact-intro-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
}

.contact-info {
    flex: 1;
    max-width: 40%;
    align-self: center;
}

.contact-form-wrapper {
    flex: 1;
    max-width: 55%;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form button {
    padding: 12px;
    background-color: #4a7c59;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #3b6247;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-details h3 {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-details p {
    margin-bottom: 20px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .contact-form-wrapper {
        max-width: 100%;
    }
}
iframe {
    margin-bottom: 0; /* Reduce or set margin to zero for the map */
}

.contact-section {
    margin-top: 0px; /* Adjust this value to make the gap smaller */
}
