:root {
    --red-primary: #C41E3A;
    --red-dark: #8B1629;
    --red-light: #E74C3C;
    --white: #FFFFFF;
    --cream: #FAF9F6;
    --gray-light: #E8E8E8;
    --gray-medium: #888;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--cream);
}

/* Header & Navigation */
header {
    background: var(--red-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--red-dark);
    padding: 0.5rem 0;
    text-align: center;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    animation: fadeIn 0.8s ease-out;
}

.site-title {
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.site-subtitle {
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.25rem;
    letter-spacing: 1px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

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

.nav-menu > li > a {
    color: var(--white);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-menu > li > a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Dropdown Styles */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.nav-menu > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    color: var(--red-dark);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    display: block;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown a:hover {
    background: var(--gray-light);
    border-left-color: var(--red-primary);
    padding-left: 1.5rem;
}

.dropdown .dropdown {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 0.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--red-dark) 0%, var(--red-primary) 50%, var(--red-light) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 0L60 40L100 50L60 60L50 100L40 60L0 50L40 40Z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
    animation: float 30s infinite linear;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-section {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--red-primary);
    animation: fadeIn 1s ease-out;
}

.content-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--red-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--red-primary);
    margin: 2rem 0 1rem 0;
}

.content-section h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: var(--red-primary);
    margin: 1.5rem 0 0.75rem 0;
}

.content-section p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.content-section ul,
.content-section ol {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-section a {
    color: var(--red-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--red-dark);
    text-decoration: underline;
}

.content-section dl {
    margin: 1rem 0;
}

.content-section dt {
    font-weight: 600;
    color: var(--red-dark);
    margin-top: 1rem;
}

.content-section dd {
    margin-left: 2rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.highlight-box {
    background: linear-gradient(135deg, var(--red-light), var(--red-primary));
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.highlight-box h3 {
    color: var(--white);
    margin-top: 0;
}

.highlight-box p {
    color: var(--white);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.hours-item {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
}

.hours-item .day {
    color: var(--red-dark);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    background: var(--cream);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--red-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--gray-light);
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.btn-submit {
    background: var(--red-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Map Container */
.map-container {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background: var(--red-dark);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

footer p {
    margin: 0.5rem 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    nav {
        padding: 1rem;
    }

    .nav-menu {
        gap: 0.25rem;
    }

    .nav-menu > li > a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--gray-light);
    }

    .nav-menu > li > a {
        color: var(--red-dark);
        padding: 1rem;
        font-size: 1.1rem;
    }

    .nav-menu > li > a:hover {
        background: var(--gray-light);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu > li.active .dropdown {
        max-height: 1000px;
    }

    .dropdown a {
        padding-left: 2rem;
        font-size: 0.9rem;
    }

    .dropdown .dropdown a {
        padding-left: 3rem;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .site-title {
        font-size: 1.8rem;
    }

    .site-subtitle {
        font-size: 0.8rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section h3 {
        font-size: 1.5rem;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    main {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 1rem;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .site-subtitle {
        font-size: 0.7rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    main {
        padding: 2rem 1rem;
    }

    .content-section {
        padding: 1.5rem 1rem;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

    .content-section h3 {
        font-size: 1.3rem;
    }
}
