﻿/* 🔷 RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #f5f7fa;
}

/* 🔷 NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(10, 61, 98, 0.95);
    color: white;
}

.navbar h2 {
    font-weight: bold;
}

/* NAV LINKS */
.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

/* 🔷 HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* 🔷 HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
                url('https://images.unsplash.com/photo-1581092334421-4f0c2a3a0f68');
    background-size: cover;
    background-position: center;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 20px;
}

/* 🔷 BRAND NAME */
.brand-name {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff6a00, #ee0979, #00c9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* HERO TEXT */
.hero h1 {
    font-size: 42px;
}

.hero p {
    font-size: 18px;
}

/* 🔷 BUTTON */
.btn {
    padding: 12px 25px;
    background: linear-gradient(45deg, #38ada9, #079992);
    color: white;
    border-radius: 30px;
    text-decoration: none;
}
.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

/* 🔷 SECTIONS */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

/* 🔷 CARDS */
.card {
    cursor: pointer;
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: 0.3s;
}

.card i {
    font-size: 35px;
    margin-bottom: 10px;
    color: #079992;
}

.card:hover {
    transform: translateY(-8px);
}

/* 🔷 MODAL */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    background: rgba(0,0,0,0.7);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.modal-content {
    background: white;
    margin: 20% auto;
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;

    animation: popup 0.3s ease;
}

@keyframes popup {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* 🔷 FORM */
form {
    max-width: 100%;
    padding: 0 10px;
}

form input,
form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
}

/* 🔷 FOOTER */
footer {
    background: #0a3d62;
    color: white;
    padding: 20px;
    text-align: center;
}

/* 🔥 🔥 MOBILE RESPONSIVE */
@media(max-width: 768px) {

    /* NAVBAR */
    .menu-toggle {
        display: block;
    }

    .navbar ul {
        position: absolute;
        top: 60px;
        right: 0;
        background: #0a3d62;
        width: 100%;
        flex-direction: column;
        display: none;
    }

    .navbar ul li {
        margin: 15px 0;
        text-align: center;
    }

    .navbar ul.active {
        display: flex;
    }

    /* HERO */
    .brand-name {
        font-size: 36px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    /* SECTION */
    .section {
        padding: 40px 15px;
    }

    /* MODAL */
    .modal-content {
        margin: 40% auto;
    }
}
   

    /*  calnder css   */

    .calendar-container {
    max-width: 400px;
    margin: auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day-name {
    font-weight: bold;
    text-align: center;
}

.day {
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    background: #ddd;
}

.available {
    background: #2ecc71;
    color: white;
}

.booked {
    background: #e74c3c;
    color: white;
    cursor: not-allowed;
}

.empty {
    background: transparent;
}
/*  google map   */

.map-container {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
}