@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #3c3c3c;
    background-color: #fff7f0;
    line-height: 1.6;
    margin: 0;
}

header {
    position: sticky;
    width: 100%;
}

/* Top Bar */
.top-bar {
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px 30px;
    border-bottom: 3px solid #4CAF50; /* Green accent line */
}

/* Left Section (Logo & Name) */
.left {
    position: sticky;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    position: sticky;
    width: 80px;
    height: auto;
}

.team-name {
    position: sticky;
    font-size: 1.8rem;
    font-weight: bold;
    color: black;
}

/* Right Section (Links & Icons) */
.right {
    position: sticky;
    display: flex;
    align-items: center;
    gap: 15px;
}

.right a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.right a:hover {
    color: #4CAF50;
}

.divider {
    font-size: 1.2rem;
    color: #4CAF50;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 12px 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #4CAF50;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: white;
}

/* CSS for Spacing - ADDED HERE */
.info-section ul li:nth-child(5) { /* Targets "Private Events" list item specifically */
    margin-bottom: 15px; /* Space above Private Events */
}

.info-section p:nth-of-type(4) { /* Targets the 4th <p> tag within the first .info-section */
    margin-top: 15px; /* Adjust as desired for spacing */
}

.info-section h3:nth-of-type(2) { /* Targets "Rental Costs" (2nd h3 in the 2nd info-section) */
    margin-top: 30px; /* Space above Rental Costs */
}

.info-section h3:nth-of-type(3) { /* Targets "Booking Process" (3rd h3 in the 2nd info-section) */
    margin-top: 30px; /* Space above Booking Process */
}

#openModal { /* Targets the "Book Now" button by its ID */
    margin-top: 30px; /* Space below the Book Now button */
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 128, 0, 0.95);
        width: 200px;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px;
        border-radius: 10px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}



.language-icon {
    width: 30px; /* Adjust size */
    height: auto;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.modal {
    font-family: 'Poppins', sans-serif;
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 75%; /* 3/4 of the screen */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    float: right;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Button Style */
button {
    font-family: 'Poppins', sans-serif;
    background-color: #388e3c;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2c6d2f;
}

/* Footer */
footer {
                background: url("https://i.imgur.com/yjuCGaV.png") no-repeat center center;
                        background-size: 2000%;
                        color: #fff;
                        text-align: center;
                        padding: 10px 0;
                        width: 100%;
                        margin-top: 30px;
                        position: relative;
            }

            footer .footer-links a {
                color: white;
                text-decoration: none;
                margin: 0 10px;
            }

            footer .footer-links a:hover {
                text-decoration: underline;
            }

@media screen and (max-width: 600px) {
    header .header-content {
        flex-direction: column;
        text-align: center;
    }

    .title-link {
        font-size: 1.5rem;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
        gap: 10px;
    }

    .booking-form {
        padding: 15px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form button {
        padding: 12px;
    }

    footer {
        font-size: 0.8rem;
    }
}

/* For tablets (width between 600px and 900px) */
@media screen and (max-width: 900px) {
    header .header-content {
        flex-direction: column;
    }

    .title-link {
        font-size: 1.8rem;
    }

    nav ul {
        flex-direction: column;
    }

    .booking-form input,
    .booking-form select,
    .booking-form button {
        padding: 12px;
    }

    footer {
        font-size: 0.9rem;
    }
}

/* For larger devices like laptops and desktops */
@media screen and (min-width: 901px) {
/* These styles are for larger devices, no specific changes needed */
    .booking-form input,
    .booking-form select,
    .booking-form button {
        padding: 10px;
    }
}

h4{
 font-family: 'Poppins', sans-serif;
    color: #ffffff;
        line-height: 1.6;
    margin: 0;}
