/* --- Variables & Reset --- */
:root {
    --primary-color: #f2aa27; 
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #ffffff;
    --bg-gray: #f3f3f3;
    --footer-bg: #050505;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}


/* --- Hero Section --- */
.hero {
    text-align: center;
    padding: 80px 20px 60px; }

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px); 
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem; 
    font-weight: 400; 
    margin-bottom: 20px;
    letter-spacing: 1px;
    
    opacity: 0;
    animation: slideUpFade 0.8s ease-out forwards;
}

.hero p {
    font-size: 1.15rem;
    color: #777777; 
    font-weight: 300;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
    
    opacity: 0; 
    animation: slideUpFade 0.8s ease-out forwards; 
}

/* --- Main Layout --- */
.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    gap: 100px;
}

/* --- Horizontal Slide Animations --- */
@keyframes slideRightToLeft {
    0% {
        opacity: 0;
        transform: translateX(40px); 
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeftToRight {
    0% {
        opacity: 0;
        transform: translateX(-40px); 
    }
    100% {
        opacity: 1;
        transform: translateX(0); 
    }
}

/* --- Left: Form Section --- */
.form-section {
    flex: 1;
    background-color: var(--bg-gray);
    padding: 40px;

    opacity: 0; 
    animation: slideRightToLeft 0.8s ease-out 0.1s forwards; 
}

.form-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    text-transform: uppercase;
}

/* Updated to include select */
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
}

/* Custom styling to ensure the dropdown arrows look clean across browsers */
.form-group select {
    cursor: pointer;
    appearance: auto;
}

/* Focus styles updated to include select */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 2px solid var(--primary-color);
}

/* Styling for placeholders */
::placeholder {
    color: #a0a0a0;
    opacity: 1;
}

.form-row {
    display: flex;
    gap: 20px;
}

.half-width {
    flex: 1;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 18px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    text-transform: uppercase;
    transition: background 0.3s;
    border-radius: 5px;
}

.btn-submit:hover {
    background-color: #d99620;
}

/* --- Right: Info Section --- */
.info-section {
    flex: 1;
    padding: 10px 0;

    opacity: 0; 
    animation: slideLeftToRight 0.8s ease-out 0.1s forwards;   
}

.info-block {
    margin-bottom: 40px;
    padding-bottom: 30px;
}

.border-top {
    border-top: 1px solid #000;
    padding-top: 40px;
}

.info-block h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 1.2rem;
    margin-top: 3px;
}

.item-text {
    display: flex;
    flex-direction: column;
}

.item-text .label {
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.highlight {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.highlight:hover {
    text-decoration: underline;
}

.highlight-text {
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.hours-list li {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.hours-list .day {
    color: var(--text-dark);
    margin-right: 5px;
}


/* --- Responsive Design --- */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .brand-col p {
        margin: 0 auto;
    }

    .contact-col li {
        justify-content: center;
    }
}