:root {
    --primary-color: #d4af37;
    /* Gold */
    --background-color: #121212;
    /* Dark background */
    --surface-color: #1e1e1e;
    /* Card background */
    --text-color: #e0e0e0;
    --accent-color: #8b0000;
    /* Deep Red */
    /* Updated font preference to Cinzel, falling back to Playfair */
    --font-heading: 'Cinzel', 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 2rem 1rem;
    border-bottom: 1px solid #333;
    background: linear-gradient(to bottom, #1a1a1a, #121212);
}

.logo-container {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    max-height: 120px;
    /* Adjust size as needed */
    margin-bottom: 1rem;
    display: block;
}

h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.stars {
    color: var(--primary-color);
}

.rating-text {
    font-weight: 700;
}

.review-count {
    color: #888;
    font-size: 0.9rem;
}

main {
    max-width: 1200px;
    /* Increased max-width for side-by-side */
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Side-by-side Layout Wrapper */
.content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    /* Align tops */
}

/* Left Column: Info Section */
.info-section {
    flex: 1;
    /* Takes available space */
}

/* Right Column: Reservation Widget */
.reservation-widget {
    flex: 1;
    /* Takes available space */
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    text-align: center;
}

.info-card {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    height: 100%;
    /* Match height effectively if content allows */
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.info-block {
    margin-bottom: 1.5rem;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-block p {
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.95rem;
}

.booking-status {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
}

#reservation-summary {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-left: 3px solid var(--primary-color);
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #ccc;
}

#reservation-summary div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

#reservation-summary i {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

#reservation-summary span {
    color: #fff;
    font-weight: 700;
}

.reservation-form-mockup h2 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: #fff;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

select,
input,
textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    color: #fff;
    padding: 0.9rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
}

select option {
    background-color: var(--surface-color);
    color: #fff;
}

select:focus,
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.sms-consent {
    font-size: 0.75rem;
    color: #888;
    text-align: left;
    margin-top: -0.5rem;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 1.2rem;
    }
}

.reserve-btn {
    background-color: var(--primary-color);
    color: #000;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.reserve-btn:hover {
    background-color: #b5952f;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 0.8rem;
    border-top: 1px solid #333;
    margin-top: 2rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column-reverse;
        /* Put reservation on top for mobile? Or column normal. Standard is Info first usually or Reservation first. User asked for specific layout. Let's stack naturally first: Left (Info) then Right (Reservation). Actually for reservations, mobile users usually want the form first. Let's do column-reverse to put form on top, or just column. */
        flex-direction: column;
    }

    .info-section,
    .reservation-widget {
        width: 100%;
    }

    h1 {
        font-size: 2rem;
    }
}