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

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #2b0a1f, #05000a);
    color: #f5f5f5;
    min-height: 100vh;
    line-height: 1.6;
}

.site-header {
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    color: #f4d27a;
    text-decoration: none;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 0;
    margin: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.35rem 0.5rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #f4d27a;
}

.logout-form {
    margin: 0;
    padding: 0;
    background: transparent;
    max-width: none;
}

.logout-button {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    width: auto;
    padding: 0.35rem 0.5rem;
    margin: 0;
}

.logout-button:hover {
    color: #f4d27a;
}

.page-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #f4d27a;
    line-height: 1.1;
}

.hero p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #f2f2f2;
}

.btn {
    display: inline-block;
    background: #f4d27a;
    color: #1b1020;
    text-decoration: none;
    padding: 0.95rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.btn:hover {
    opacity: 0.92;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f4d27a;
    line-height: 1.2;
}

.messages {
    margin-bottom: 1.5rem;
}

.message {
    background: rgba(244, 210, 122, 0.15);
    border: 1px solid rgba(244, 210, 122, 0.35);
    color: #f4d27a;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.page-content form {
    background: rgba(255, 255, 255, 0.06);
    padding: 1.5rem;
    border-radius: 14px;
    max-width: 650px;
}

.page-content input,
.page-content select,
.page-content textarea,
.page-content button {
    width: 100%;
    padding: 0.85rem 1rem;
    margin-top: 0.35rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.page-content button {
    background: #f4d27a;
    color: #1b1020;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.page-content button:hover {
    opacity: 0.92;
}

.page-content ul {
    padding-left: 1.2rem;
}

.booking-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.booking-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 1.4rem;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.booking-main p {
    margin-bottom: 0.35rem;
}

.booking-date {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.booking-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-small {
    background: #f4d27a;
    color: #1b1020;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
}

.btn-small:hover {
    opacity: 0.92;
}

.btn-small.danger {
    background: #c94b4b;
    color: #ffffff;
}

.page-section {
    width: 100%;
}

/* Tablet */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 1.5rem;
    }

    .nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 0.85rem 1rem;
    }

    .page-content {
        padding: 2.25rem 1.5rem;
    }

    .hero {
        min-height: auto;
        padding-top: 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .booking-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-actions {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .site-header {
        position: static;
    }

    .navbar {
        padding: 0.9rem 1rem;
        gap: 0.8rem;
    }

    .logo {
        font-size: 1.7rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
        width: 100%;
    }

    .nav-links a,
    .logout-button {
        padding: 0.2rem 0;
        font-size: 1rem;
    }

    .page-content {
        padding: 1.5rem 1rem 2rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.35rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.4rem;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 0.95rem 1rem;
    }

    .page-content form {
        max-width: 100%;
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
    }

    .page-content input,
    .page-content select,
    .page-content textarea,
    .page-content button {
        font-size: 1rem;
        padding: 0.85rem 0.9rem;
    }

    .booking-card {
        padding: 1rem;
        gap: 1rem;
    }

    .booking-date {
        font-size: 1rem;
    }

    .booking-actions {
        flex-direction: column;
        width: 100%;
    }

    .booking-actions a {
        width: 100%;
        text-align: center;
    }
}
