/* Base Reset & Variables */
:root {
    --primary-color: #61AAAA; /* Updated Accent Color */
    --primary-hover: #7FBFBF; /* Updated Hover */
    --secondary-color: #2A4736; /* Bayou Moss */
    --secondary-hover: #1f3528;
    --focus-color: #7FBFBF; /* High contrast focus indicator matching hover */
    --bg-dark: #121312; /* Cast Iron Black */
    --bg-card: #1c1d1c; /* Slightly lighter variant for container definition */
    --text-main: #F4F1EA; /* Weathered Bone */
    --text-muted: #c4c4c4; /* Muted warm cream */
    --font-stack: 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-headline: 'Oswald', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

/* Accessibility: Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    transform: translateY(-150%);
    background-color: var(--primary-color);
    color: #121312;
    padding: 12px 24px;
    z-index: 9999;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    left: 50%;
    margin-left: -100px;
    transition: transform 0.3s ease-in-out;
}

.skip-link:focus, .skip-link:active {
    transform: translateY(0);
}

/* Accessibility Focus States */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
textarea:focus-visible,
.btn:focus-visible {
    outline: 3px solid var(--focus-color);
    outline-offset: 4px;
    border-radius: 2px;
}

/* Global Navigation */
.top-nav {
    background-color: #0a0a0a;
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-headline);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.top-nav a:hover {
    color: var(--primary-color);
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.bg-alt { background-color: var(--bg-card); border-top: 1px solid #2a2b2a; border-bottom: 1px solid #2a2b2a; }

/* Typography */
h1, h2, h3 { font-family: var(--font-headline); }
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); letter-spacing: 2px; margin-bottom: 0.5rem; text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 4vw, 2.2rem); margin-bottom: 1rem; color: var(--primary-color); }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.subtitle { font-size: 1.2rem; color: var(--text-main); text-transform: uppercase; letter-spacing: 1px; }

/* Amenities Intro Paragraph */
.amenities-intro {
    max-width: 800px;
    margin: -20px auto 40px;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Event Promo Spacing */
.event-promo {
    margin-top: 20px;
    color: var(--text-muted);
}

/* Buttons & Links (44px min touch targets) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    min-height: 44px; /* A11y minimum touch target */
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    margin-top: 20px;
}

.primary-btn { background-color: var(--primary-color); color: #121312; }
.primary-btn:hover { background-color: var(--primary-hover); transform: translateY(-2px); color: #121312; }

.secondary-btn { background-color: var(--secondary-color); color: #fff; }
.secondary-btn:hover { background-color: var(--secondary-hover); transform: translateY(-2px); }

.text-link { color: var(--primary-color); text-decoration: none; display: inline-block; min-height: 44px; align-content: center;}
.text-link:hover { text-decoration: underline; }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/front-building.jpg') center/cover;
    min-height: 50vh; /* Responsive minimum height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px; 
}

.hero-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto 0;
    color: var(--text-main);
}

/* Sections Shared Styles */
section { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.seo-text { max-width: 800px; margin: 0 auto 20px; font-size: 1.1rem; color: var(--text-main); }

/* Catering Section Elements */
.feature-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

/* Video Section Elements */
.video-wrapper {
    max-width: 555px;
    margin: 30px auto 0;
    position: relative;
    aspect-ratio: 16 / 9; /* Maintains widescreen aspect ratio */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Grid Layout for Amenities */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.card:hover { transform: translateY(-5px); }

img.card-img { 
    width: 100%; 
    height: auto; 
    aspect-ratio: 1 / 1; 
    object-fit: cover; 
    border-radius: 4px; 
    margin-bottom: 15px; 
}

/* About & Location Split */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* AEO Description List Styling */
.aeo-details { margin-bottom: 20px; }
.aeo-details address { font-style: normal; font-size: 1.1rem; margin-bottom: 15px; }
.aeo-details .phone { font-size: 1.2rem; font-weight: bold; margin-bottom: 15px; }
.aeo-details .hours { margin-bottom: 20px; }

/* Footer Layout Updates */
footer {
    background-color: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px; /* A11y min touch target */
    min-height: 44px;
    transition: opacity 0.3s;
}

.social-links a:hover { opacity: 0.7; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}

@media (max-width: 768px) {
    section { padding: 40px 0; }
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    
    /* Reorder specific content for mobile stacking */
    #drinks .drinks-content, #video .video-content { order: 2; }
    #drinks .drinks-media, #video .video-media { order: 1; }
    
    .top-nav { position: relative; } /* Remove sticky behavior on smaller viewports if needed */
}

@media (max-width: 480px) {
    .grid-layout { grid-template-columns: 1fr; }
    .btn { width: 100%; } /* Full width buttons on very small screens */
    .top-nav { padding: 5px 0; }
    .nav-container { gap: 10px; }
}