/* --- Layout Container --- */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 80px; /* Space between text and form */
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* --- Left Column: Information --- */
.contact-info-col {
    flex: 1.2; /* Slightly wider than the form */
    min-width: 320px;
    color: #fff;
}

.contact-info-col h2 {
    font-family: 'Cinzel', serif;
    color: #D4AF37; /* Luxury Gold */
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-info-col h3 {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.contact-info-col p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.2rem;
}

.info-group {
    margin-bottom: 3rem;
}

.social-links {
    margin: 1.5rem 0;
}

.social-links a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.social-links a:hover {
    color: #fff;
}

.closing-note {
    font-style: italic;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* --- Right Column: Form Wrapper --- */
.contact-form-col {
    flex: 0.8; /* Slightly narrower form column */
    min-width: 320px;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.reservation-wrapper h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #D4AF37;
    margin-bottom: 3rem;
    text-align: center;
}

/* --- Form Fields (Floating Label Effect) --- */
form .field {
    position: relative;
    margin-bottom: 2.5rem;
}

form input,
form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3); /* Gold-tinted border */
    padding: 0.8rem 0;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

form label {
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #888;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

/* Label Animation when focused or filled */
form input:focus + label,
form input:not(:placeholder-shown) + label,
form textarea:focus + label,
form textarea:not(:placeholder-shown) + label {
    top: -1.2rem;
    font-size: 0.75rem;
    color: #D4AF37;
}

/* Special Case for Date Input Label */
.optional-label {
    top: -1.2rem;
    font-size: 0.75rem;
}

/* --- Submit Button --- */
button[type="submit"] {
    width: 100%;
    background: #D4AF37;
    color: #000;
    border: none;
    padding: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

button[type="submit"]:hover {
    background: #fff;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

#formStatus {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .contact-info-col, 
    .contact-form-col {
        width: 100%;
        flex: none;
    }

    .contact-form-col {
        padding: 2rem;
    }
}