/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background: #f0f8ff;
    color: #333;
}

/* Header */
header {
    background: linear-gradient(135deg, #56ccf2, #2f80ed);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
}

nav {
    margin-top: 10px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: black;
}

/* Hero Section */
#hero {
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

#hero::after {
    content: "";
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

#hero h2, #hero p {
    position: relative;
    z-index: 1;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

#hero p {
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2f80ed;
}

/* Packages Section */
.package-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 10px 20px rgba(0,0,0,0.2); */
    box-shadow: 0 10px 20px dodgerblue;
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-card h3 {
    margin: 15px 0 10px;
    color: #333;
}

.package-card p {
    margin-bottom: 15px;
    color: #666;
}

/* Booking Form */
form {
    background: white;
    margin: auto;
    padding: 30px;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

form input, form select, form button {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

form input:focus, form select:focus {
    border-color: #2f80ed;
    outline: none;
}

form button {
    background: #2f80ed;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

form button:hover {
    background: #1c6fd6;
}

/* Confirmation Message */
#confirmationMessage {
    margin-top: 20px;
    font-weight: bold;
    color: green;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #2f80ed;
    color: white;
    padding: 15px;
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #hero h2 {
        font-size: 2rem;
    }

    .package-list {
        grid-template-columns: 1fr;
    }
}
/* Contact Form Styles */
#contactForm {
    background: white;
    margin: auto;
    padding: 30px;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

#contactForm textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

#contactConfirmation {
    margin-top: 20px;
    font-weight: bold;
    color: green;
    font-size: 1.2rem;
    text-align: center;
}

/* Booked Packages Styles */
#bookedPackagesList {
    max-width: 800px;
    margin: 0 auto;
}

.booked-package {
    background: white;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: left;
}

.booked-package h3 {
    color: #2f80ed;
    margin-bottom: 10px;
}

.booked-package p {
    margin: 5px 0;
    color: #555;
}

#noBookings {
    text-align: center;
    color: #666;
    font-style: italic;
}
