/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Navigation */
header {
    background: #1a1a1a;
    color: #fff;
    padding: 1.2rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: #3498db;
}

/* Sections */
section {
    padding: 4rem 10%;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1601362840469-51e4d8d58785?auto=format&fit=crop&w=1920&q=80') center/cover;
    color: #fff;
    padding: 8rem 10%;
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #2980b9;
}

/* About Section */
#about p {
    max-width: 800px;
    margin: 0 auto 1rem auto;
    font-size: 1.1rem;
}

/* Packages Section */
.package-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.package-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: left;
}

.package-card h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #3498db;
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.package-card li {
    margin-bottom: 0.5rem;
}

.prices {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Reviews Section */
#reviews {
    background: #eef2f5;
}

.review-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

.stars {
    color: #f1c40f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
}

.author {
    font-weight: bold;
    color: #1a1a1a;
}

/* Section Dividers */
.divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
    margin: 2rem 10%;
}

/* Booking Section */
#booking {
    background: #fff;
}

form {
    max-width: 500px;
    margin: 2rem auto;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form .btn {
    width: 100%;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    #hero {
        padding: 6rem 5%;
    }

    #hero h1 {
        font-size: 2.5rem;
    }
}