/* =====================================================
   Somerset American Legion Post 228 - Main Stylesheet
   ===================================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Patriotic Theme */
    --navy-dark: #0a1628;
    --navy: #1a2744;
    --navy-light: #2a3f5f;
    --red-dark: #8b1a1a;
    --red: #a50000;
    --red-light: #c41e3a;
    --gold: #c9a227;
    --gold-light: #d4af37;
    --cream: #f5f3ed;
    --white: #ffffff;
    
    /* Neutral Colors */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Typography */
    --font-display: 'Cinzel', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--cream);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--red-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* =====================================================
   Top Bar
   ===================================================== */
.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.contact-info {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact-info i {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

/* =====================================================
   Main Header
   ===================================================== */
.main-header {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    padding: var(--space-lg) 0;
    border-bottom: 3px solid var(--red);
    position: relative;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--navy) 66%, var(--navy) 100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    text-decoration: none;
}

.logo-emblem {
    width: 80px;
    height: 80px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
}

.logo-emblem img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.75rem;
    color: var(--red);
    margin-bottom: var(--space-xs);
}

.post-number {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    letter-spacing: 2px;
}

.header-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-sm);
}

.address-block {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--gray-700);
    text-align: right;
}

.address-block i {
    font-size: 1.5rem;
    color: var(--red);
}

.tagline {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--navy);
}

.tagline .stars {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

/* =====================================================
   Navigation
   ===================================================== */
.main-nav {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-md);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: var(--space-md) var(--space-lg);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    border-bottom: 3px solid transparent;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background: rgba(255,255,255,0.1);
    border-bottom-color: var(--gold);
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: var(--space-md) var(--space-lg);
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.dropdown li:last-child a {
    border-bottom: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.dropdown li a:hover {
    background: var(--gray-100);
    color: var(--red);
    padding-left: calc(var(--space-lg) + 5px);
}

/* =====================================================
   Hero Slider
   ===================================================== */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity var(--transition-slow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 700px;
    padding: var(--space-2xl);
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-nav {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.slider-arrow.prev {
    left: var(--space-xl);
}

.slider-arrow.next {
    right: var(--space-xl);
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    margin: 3px;
    justify-content: center;
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-donate {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    width: 100%;
}

.btn-donate:hover {
    background: var(--gold-light);
    color: var(--navy-dark);
}

/* =====================================================
   Main Content
   ===================================================== */
.main-content {
    padding: var(--space-3xl) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-2xl);
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.decorative-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 2px;
}

/* About Content */
.about-content {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.about-image {
    flex-shrink: 0;
}

.post-badge {
    width: 220px;
    height: 280px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--gold);
    position: relative;
}

.post-badge::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
}

.badge-inner {
    text-align: center;
    color: var(--white);
}

.badge-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    color: var(--gold);
}

.badge-post {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.badge-location {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: var(--space-md);
}

.badge-stars {
    color: var(--gold);
    letter-spacing: 4px;
}

.about-text p {
    margin-bottom: var(--space-md);
}

.cta-box {
    background: var(--gray-100);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    margin-top: var(--space-lg);
}

.cta-box p {
    margin: 0;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.info-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-200);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.info-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

.card-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.card-link:hover i {
    transform: translateX(5px);
}

.card-link i {
    transition: transform var(--transition-fast);
}

/* =====================================================
   Sidebar
   ===================================================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.widget-title {
    background: var(--navy);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
    align-items: center;
    gap: var(--space-sm);
}

.widget-title i {
    color: var(--gold);
}

/* Events Widget */
.event-list {
    padding: var(--space-lg);
}

.event-item {
    display: flex;
    gap: var(--space-md);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

.event-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.event-date {
    flex-shrink: 0;
    width: 55px;
    height: 60px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: var(--radius-md);
    text-align: center;
    padding: var(--space-sm);
    color: var(--white);
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details h4 {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
}

.event-details h4 a {
    color: var(--navy);
}

.event-details h4 a:hover {
    color: var(--red);
}

.event-details p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.widget-link {
    display: block;
    padding: var(--space-md) var(--space-lg);
    background: var(--gray-100);
    color: var(--red);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    border-top: 1px solid var(--gray-200);
}

.widget-link:hover {
    background: var(--gray-200);
}

/* Quick Links Widget */
.quick-links {
    list-style: none;
    padding: var(--space-lg);
}

.quick-links li {
    margin-bottom: var(--space-sm);
}

.quick-links li:last-child {
    margin-bottom: 0;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.quick-links a:hover {
    background: var(--gray-100);
    color: var(--red);
    padding-left: var(--space-md);
}

.quick-links i {
    width: 20px;
    color: var(--gold);
}

/* Donate Widget */
.donate-widget {
    margin-top: var(--space-xl);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donate-widget p {
    padding: var(--space-lg);
    padding-bottom: 0;
    color: var(--gray-600);
}

.donate-widget .btn-donate {
    margin: var(--space-lg);
    width: calc(100% - var(--space-2xl));
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   Footer
   ===================================================== */
.main-footer {
    background: var(--gray-900);
    color: var(--gray-400);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding: var(--space-3xl) 0;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.about-footer p {
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section ul a {
    color: var(--gray-400);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-section ul a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.contact-footer address {
    font-style: normal;
}

.contact-footer p {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.contact-footer i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-map {
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--gray-800);
}

.footer-map iframe {
    border-radius: var(--radius-md);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: var(--space-lg) 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: var(--space-xs);
}

.footer-bottom .motto {
    color: var(--gold);
    font-family: var(--font-display);
    font-style: italic;
}

/* =====================================================
   Page Styles
   ===================================================== */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    position: relative;
}

.page-header .breadcrumb {
    color: var(--gray-400);
    margin-top: var(--space-md);
    position: relative;
}

.page-header .breadcrumb a {
    color: var(--gold);
}

.page-content {
    padding: var(--space-3xl) 0;
}

.page-content h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    margin-bottom: var(--space-md);
}

.page-content ul, .page-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.page-content li {
    margin-bottom: var(--space-sm);
}

/* Forms */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-xl);
}

th, td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

th {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
}

tr:nth-child(even) {
    background: var(--gray-100);
}

tr:hover {
    background: var(--gray-200);
}

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .header-info {
        align-items: center;
    }
    
    .address-block {
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu > li > a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--navy-light);
        border-radius: 0;
    }
    
    .dropdown li a {
        color: var(--white);
        border-color: rgba(255,255,255,0.1);
        padding-left: var(--space-2xl);
    }
    
    .dropdown li a:hover {
        background: rgba(255,255,255,0.1);
        color: var(--gold);
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }
    
    .slide-content {
        padding: var(--space-lg);
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
}
