body {
    margin: 0;
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    background-color: #f0f4f8;
    color: #004D40;
    line-height: 1.6;
}

.navbar {
    background-color: #00ACC1;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar h1 {
    margin: 0;
    font-size: 24px;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

.navbar nav a:hover {
    text-decoration: underline;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    color: #fff;
    font-size: 3em;
}

h2 {
    text-align: center;
    color: #00ACC1;
    margin-bottom: 30px;
    font-size: 28px;
}

.gallery {
    padding: 40px 20px;
    background-color: #E0F7FA;
}

.swiper {
    width: 100%;
    max-width: 700px;
    margin: auto;
    padding-bottom: 40px;
}

.swiper-slide {
    text-align: center;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* خدمات */

.services {
    padding: 40px 20px;
    background-color: #ffffff;
    text-align: center;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    padding: 12px;
    font-size: 1.2em;
    border-bottom: 1px solid #ccc;
    max-width: 300px;
    margin: 0 auto;
}


/* الحجز */

.booking {
    padding: 40px 20px;
    background-color: #E0F7FA;
    text-align: center;
}

.booking form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.booking button {
    padding: 14px;
    background-color: #00ACC1;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.booking button:hover {
    background-color: #008BA3;
}

#location {
    padding: 40px 20px;
    background-color: #bbdefb;
    text-align: center;
}

#location iframe {
    width: 90%;
    height: 400px;
    border: 0;
    border-radius: 10px;
    margin-top: 20px;
}

footer {
    background-color: #004D40;
    color: rgba(243, 244, 246, 0.92);
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 22px;
    }
    .services li {
        font-size: 1em;
    }
    .booking input,
    .booking button {
        font-size: 1em;
    }
    #location iframe {
        height: 300px;
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: #00ACC1;
}