* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

/* Navigation */
.nav {
    background: white;
    padding: 1rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-family: serif;
    color: #000;
}

.nav-links {
    display: none;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    margin: 0 2rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #000;
}

.menu-button {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-button svg {
    width: 24px;
    height: 24px;
    color: #374151;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-image: url("https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?auto=format&fit=crop&q=80");
    background-size: cover;
    background-position: center;
    margin-top: 0;
    margin-bottom: 4rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 1rem;
}

.btn-primary {
    background: #000;
    color: white;
    margin-left: 20px;
}

.btn-primary:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

.btn-secondary {
    background: white;
    color: black;
    padding: 0.75rem 2rem;
    width: 10rem;
}

.btn-secondary:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}
.btn-link{
    color: white;
    text-decoration: none;
}
/* Media Queries */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        align-items: center;
    }

    .menu-button {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}


/* booking  */

/* Booking Container */
.booking-container {
    margin: 100px auto;
    max-width: 50%;
    background: #C4E0E9;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.6);
}

/* Header */
.booking-header {
    margin-bottom: 15px;
}

.booking-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.booking-subtitle {
    font-size: 16px;
    color: #666;
}

/* Form */
.booking-form {
    display: flex;
    width: 100%;
    gap: 10px;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

label {
    font-size: 14px;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.dateIcon,
.personIcon {
    color: #007bff;
}

/* Input Fields */
.date-input,
.select-wrapper select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    color: #333;
    outline: none;
}

.select-wrapper {
    width: 100%;
}

/* Button */
.book-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    padding: 5px;
    background: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: bold;
    gap: 8px;
    margin-top: 20px;
}

.book-now-btn:hover {
    background: #0056b3;
}

/* Icons */
.rightIcon {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-container {
        max-width: 90%;
        margin: 80px auto;
        padding: 15px;
    }

    .booking-form {
        flex-direction: column;
        gap: 15px;
    }

    .form-group {
        width: 100%;
        margin-bottom: 10px;
    }

    .booking-title {
        font-size: 20px;
    }

    .booking-subtitle {
        font-size: 14px;
    }

    .date-input,
    .select-wrapper select {
        padding: 8px;
        font-size: 14px;
    }

    .book-now-btn {
        height: 45px;
        font-size: 14px;
        margin-top: 15px;
    }

    label {
        font-size: 12px;
    }
    .nav-links {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        z-index: 999;  /* Add z-index */
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-link {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    .btn-primary {
        margin: 0.5rem 0;
        width: 100%;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .booking-container {
        max-width: 70%;
        margin: 90px auto;
    }
}

.dateIcon {
    color: #666;
    cursor: pointer;
}


/* Images section */
.img-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    height: 600px;
    margin-bottom: 50px;
}

.card {
    position: relative;
    width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.card img {
    width: auto;
    height: 100%;
    display: block;
    transition: transform 0.4s ease-in-out;
}

.card .label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(45deg, #000000b3, #5c5c5cb3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    transition: background 0.3s ease;
}

.middleImages .card {
    height: 290px;
    margin-bottom: 20px;
}

.card :hover {
    transform: scale(1.1);
    cursor: pointer;
}

/* Facilities */
.facilities-container {
    text-align: center;
    background-image: url(resources/Background-img.jpg);
    color: white;
    padding: 60px;
    border-radius: 20px;
    width: 90%;
    margin-left: 5%;
    margin-bottom: 20px;
    opacity: 1.5;
    box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.6);
    gap: 20px;
}

.facilities-container h1 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.facility {
    display: inline-block;
    margin: 30px;
    padding: 20px;
    background: #f8f9fa;
    color: black;
    border-radius: 10px;
    width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
}

.facilities-container :hover {
    transform: scale(1.1);
}

.facility img {
    width: 50px;
    height: 50px;
}

.facility p {
    font-size: 16px;
    margin-top: 10px;
}

.explore-button {
    display: inline-block;
    margin-top: 20px;
    margin-left: 40px;
    padding: 10px 20px;
    background-color: black;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: bold;
}

/* Footer */
.content {
    flex: 1;
}

.footer {
    margin-top: 100px;
    background-color: #1a1a1a;
    padding: 3rem 2rem 1rem;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 2rem;
    margin-bottom: 2rem;
}
.options{
    display: flex;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

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

    .footer-section {
        margin-bottom: 2rem;
    }
}