
body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #FDF5E6;
}

h1, h2, h3, h4 {
    font-family: sans-serif;
    font-weight: 700;
    color: #8B4513;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: #fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 0.9rem;
    color: #C5A059;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #C5A059;
}

/* Booking Form */
.booking {
    padding: 4rem 0;
    background: #fff;
}

.booking h2 {
    text-align: center;
    margin-bottom: 2rem;
}

#reservation-form {
    max-width: 600px;
    margin: 0 auto;
    background: #FDF5E6;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #8B4513;
}

input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-color: #C5A059;
}

.error {
    color: #ff0000;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    min-height: 1.2rem;
}

.btn {
    display: inline-block;
    background: #C5A059;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn:hover {
    background: #8B4513;
}

/* Current Reservations */
.current-reservations {
    padding: 4rem 0;
    background: #FDF5E6;
}

.current-reservations h2 {
    text-align: center;
    margin-bottom: 2rem;
}

#reservations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.reservation-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.reservation-card h3 {
    margin-bottom: 0.5rem;
    color: #8B4513;
}

.reservation-card p {
    margin-bottom: 0.3rem;
    color: #666;
}

.reservation-card .reservation-date {
    font-weight: 600;
    color: #C5A059;
}

.no-reservations {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Footer  */
footer {
    background: #333;
    color: #fff;
    padding: 2rem 5% 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #C5A059;
    margin-bottom: 1rem;
}

.social-icons a {
    color: #fff;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #C5A059;
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #555;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    nav ul li {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 480px) {
    #reservation-form {
        padding: 1.5rem;
    }
}