/* General Styles */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Navbar Styles */

nav {
    background-color: #222;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

nav h1 {
    font-size: 1.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f8b400;
}

/* Hero Section */

header {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #333;
    color: white;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 5rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('home-background-image.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #f8b400;
    color: #222;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d89e00;
}

/* Breadcrumb Section */

.breadcrumb {
    padding: 1rem 2rem;
    background-color: #eee;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
}

.breadcrumb span {
    color: #999;
}

/* Services Section */

#services {
    padding: 3rem 2rem;
    background-color: white;
    text-align: center;
}

.service {
    background-color: #f8f8f8;
    padding: 1.5rem;
    margin: 1rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.service h3 {
    color: #222;
}

.service h4 {
    color: #f8b400;
}

/* Experience Page Styles */

#experience {
    background: #fff;
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

#experience h3 {
    color: #f8b400;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

#experience ul {
    list-style: none;
    padding: 0;
}

#experience ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

#experience ul li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #f8b400;
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1.2rem;
}

/* Social Media */

#socials {
    text-align: center;
    padding: 2rem;
    background-color: #222;
    color: white;
}

#socials a {
    display: inline-block;
    color: white;
    margin: 1rem;
    font-size: 1.2rem;
    text-decoration: none;
}

#socials a i {
    margin-right: 8px;
}

/* Contact Section */

#contact {
    text-align: center;
    padding: 2rem;
    background-color: #f4f4f4;
}

#contact a {
    color: #222;
    font-weight: 600;
}

/* Footer Section */

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
}

/* Booking Modal Styles */

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 1.5rem;
    cursor: pointer;
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#booking-form input,
#booking-form button {
    padding: 0.5rem;
    font-size: 1rem;
}

#booking-form button {
    background-color: #f8b400;
    color: #222;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}



/* Responsive Design */

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        padding: 0;
    }

    .service {
        max-width: 90%;
    }
}