:root {
    --primary-color: #8b0000;
    --secondary-color: #a52a2a;
    --text-color: #333;
    --bg-color: #f9f3e9;
    --white: #fff;
    --yellow: #e1de1896;
    --gray: #f0f0f0;
    --dark-gray: #666;
    --footer-bg: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    position: relative;
    margin: 0 5px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 15px;
    display: block;
}

nav ul li a:hover {
    background-color: var(--yellow);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 5px 10px rgba(245, 221, 9, 0.2);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

nav ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu li a {
    color: var(--text-color);
    padding: 12px 15px;
    border-bottom: 1px solid var(--gray);
}

.dropdown-menu li a:hover {
    background-color: var(--gray);
    color: var(--primary-color);
}

.has-dropdown > a::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
}

.booking-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.booking-container h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: var(--secondary-color);
}

.btn-block {
    display: block;
    width: 100%;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.time-slot-available {
    color: green;
    font-weight: bold;
}

.time-slot-booked {
    color: red;
    font-weight: bold;
}

footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 12px;
    font-size: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #555;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .booking-container {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-container {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 10px 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 5px 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
    }

    nav ul li:hover .dropdown-menu {
        display: block;
    }
}
/* About Page Styling */
.about-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-line {
    display: block;
}

.title-decorator {
    color: var(--secondary-color);
    font-size: 3rem;
    line-height: 1;
    display: inline-block;
    margin: 10px 0;
    font-family: 'Times New Roman', serif;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-content p {
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .title-decorator {
        font-size: 2.2rem;
    }
}