@media (max-width: 900px) {
    .form-outline {
        padding: 15px;
        margin: 15px auto;
        max-width: 98vw;
    }
    .header h1 {
        font-size: 2rem;
    }
    iframe {
        max-width: 90vw;
        height: auto;
    }
}
/* --- Form Outline for Contact/Booking --- */
.form-outline {
    background: #d5d5d5;
    border-radius: 10px;
    padding: 30px;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 2px solid #444;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: white;
    margin: 0;
    padding: 0;
}

.header {
    text-align: center;
    border-radius: 5px;
}

/* --- Dropdown Menu Container --- */
.dropdown {
    position: relative; 
    display: inline-block; 
    margin: 20px;
}


/* --- Dropdown Menu Container --- */
.dropdown {
    position: relative;
    display: inline-block;
    margin: 20px;
}

/* --- The Dropdown Button --- */
.dropbtn {
    background-color: #009605;
    color: white;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* --- The Container for the Links (Hidden by Default) --- */
.dropdown-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #288f00;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgb(255, 255, 255);
    z-index: 1;
    border-radius: 5px;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* --- Styling for the Links Inside the Dropdown --- */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* --- Change color of dropdown links on hover --- */
.dropdown-content a:hover {
    background-color: #015000;
    transition: background-color 0.3s;
}

/* --- THE MAGIC: Show the dropdown menu when hovering over the container --- */
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
