/* ====== Reset ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", Arial, sans-serif;
}

/* ====== Navbar ====== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: 0.4s;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
}

.menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
    padding: 8px 15px;
}

.menu ul li a:hover {
    color: #00ffae;
    transform: translateY(-2px);
}

.btn-book {
    background: #00ffae;
    color: #000 !important;
    font-weight: bold;
    border-radius: 30px;
    padding: 8px 20px !important;
    transition: 0.3s;
}

.btn-book:hover {
    background: #fff;
}

/* ====== Footer ====== */
.footer {
    background: #111;
    color: #ddd;
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
}

.footer p {
    margin-bottom: 10px;
    font-size: 14px;
}

/* ====== Hero section (tu vas l’utiliser dans index.php) ====== */
.hero {
    height: 85vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 55px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 20px;
    margin-top: 10px;
}
.login-container {
    width: 350px;
    margin: 90px auto;
    padding: 25px;
    border-radius: 8px;
    background: #f5f5f5;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
}
.login-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}
.login-container button {
    width: 100%;
    padding: 12px;
    background: #006400;
    color: white;
    border: none;
    cursor: pointer;
}
.error-msg {
    color: red;
    margin-bottom: 10px;
    text-align: center;
}
