/* Reset & Global */
:root { --primary-color: #ff0000; --bg-color: #050505; --text-color: #ffffff; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--bg-color); color: var(--text-color); display: flex; flex-direction: column; min-height: 100vh; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 5%;
    z-index: 1000; background: #000;
}
.logo { font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: var(--primary-color); font-weight: 700; letter-spacing: 2px; }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links li a { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: #ddd; }
.nav-links li a:hover, .nav-links li a.active { color: var(--primary-color); }
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: #fff; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background-color: #000;
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px;
    transition: 0.4s; z-index: 2000;
}
.mobile-menu.active { right: 0; }
.mobile-menu a { font-family: 'Oswald', sans-serif; font-size: 2rem; text-transform: uppercase; color: #fff; }
.mobile-menu a:hover { color: var(--primary-color); }
.close-menu { position: absolute; top: 20px; right: 30px; font-size: 3rem; cursor: pointer; color: #fff; }

/* Bookings Content */
.main-content { flex: 1; margin-top: 100px; padding: 0 20px 60px; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.page-title { font-family: 'Oswald', sans-serif; font-size: 3rem; margin-bottom: 40px; text-transform: uppercase; }

.booking-card {
    background: #111;
    padding: 50px;
    border-radius: 10px;
    max-width: 600px;
    border: 1px solid #222;
}

.booking-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

.price-box {
    margin-bottom: 30px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 20px 0;
}

.price-box h2 {
    font-size: 4rem;
    color: var(--primary-color);
    font-family: 'Oswald', sans-serif;
}

.price-box .small {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
}

.cta-text {
    margin-bottom: 30px;
    color: #999;
}

.btn-contact {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn-contact:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Footer */
footer { padding: 40px 20px; background-color: #000; text-align: center; border-top: 1px solid #222; }
.social-icons a { font-size: 1.5rem; margin: 0 15px; color: #fff; }
.social-icons a:hover { color: var(--primary-color); }
footer p { font-size: 0.8rem; color: #666; margin-top: 10px; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
}