/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header */
header {
    background: #fff;
    padding: 20px;
    text-align: center;
}

header .logo h1 {
    font-size: 2.5em;
    color: burlywood;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: burlywood;
    font-weight: bold;
    font-size: 1.2em;
}

/* Hero Section */
#hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero .hero-content {
    text-align: center;
    color: blanchedalmond;
}

#hero h2 {
    font-size: 3em;
}

.cta-btn {
    background-color: burlywood;
    color: blanchedalmond;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    margin-top: 20px;
    display: inline-block;
}

/* About Section */
#about {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

#about img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin: 20px 0;
}

/* Services Section */
#services {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.service-item {
    margin-bottom: 30px;
}

/* Booking Section */
#booking {
    padding: 50px 20px;
    background-color: blanchedalmond;
    text-align: center;
}

/* Contact Section */
#contact {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
    }

    #hero h2 {
        font-size: 2em;
    }

    .cta-btn {
        font-size: 1em;
    }

    #about img {
        width: 120px;
        height: 120px;
    }

    .service-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    header nav ul {
        flex-direction: column;
        font-size: 1.1em;
    }

    #hero {
        height: 50vh;
    }

    #hero h2 {
        font-size: 1.8em;
    }

    .cta-btn {
        font-size: 0.9em;
    }

    #about img {
        width: 100px;
        height: 100px;
    }
}
