/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('jet-book.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2); /* Matching style.css */
    padding: 20px 50px; /* Adjusted to match style.css */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    max-width: 180px; /* Adjusted to match style.css */
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 20px; /* Adjusted to match style.css */
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em; /* Adjusted to match style.css */
    font-weight: 400; /* Removed bold effect */
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* General Background for Specific Sections with Light Black Overlay */
.section-bg {
    position: relative;
    background: url('jet-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 80px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Adding the Light Black Overlay */
.section-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Light Black Overlay */
    z-index: 1;
}

/* Content Wrapper to Ensure Text is Above Overlay */
.section-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3); /* Slightly Transparent Background for Readability */
    padding: 40px;
    border-radius: 10px;
    max-width: 80%;
}

/* Booking Section */
.booking-section {
    max-width: 800px;
    margin: 120px auto 60px;
    text-align: center;
    padding: 20px;
}

.booking-section h2 {
    font-size: 2.5em;
    color: #ffcc00;
    margin-bottom: 15px;
}

.booking-section p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 30px;
}

/* Booking Form */
.booking-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
}

.booking-form label {
    display: block;
    text-align: left;
    font-size: 1.1em;
    margin: 10px 0 5px;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    border-radius: 8px;
    border: 2px solid #ffcc00;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-bottom: 15px;
    cursor: pointer;
}

/* Fix dropdown color */
.booking-form select {
    appearance: none;
    font-weight: bold;
    background: #000; /* Black background */
    color: #fff; /* White text */
}

/* Style dropdown options */
.booking-form select option {
    background: #000; /* Black background */
    color: #fff; /* White text */
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border: 2px solid #ffcc00;
}

/* Submit Button */
.booking-form button {
    width: 100%;
    padding: 12px;
    font-size: 1.2em;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.booking-form button:hover {
    background: #ffdb4d;
}
  
    .whatsapp-btn{
position: fixed;
bottom: 25px;
right: 5px;
width: 55px;
height: 60px;
background: #25D366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 36px;
z-index: 9999;
text-decoration: none;
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.whatsapp-btn:hover{
background:#20ba5a;
transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    margin-top: 60px;
    font-size: 1em;
    color: #fff;
}