/**
 * Sharon Legion Baseball Theme Styles
 * 
 * Table of Contents:
 * 1. CSS Reset & Base Styles
 * 2. CSS Custom Properties (Variables)
 * 3. Typography
 * 4. Layout & Containers
 * 5. Header (Top Bar + Navigation)
 * 6. Hero Slider
 * 7. Page Title Section
 * 8. Main Content
 * 9. Footer
 * 10. Buttons & Forms
 * 11. Utility Classes
 * 12. Responsive Media Queries
 * 13. Accessibility Styles
 * 14. Print Styles
 */

/* ========================================
   1. CSS RESET & BASE STYLES
   ======================================== */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-gold);
}

ul, ol {
    list-style-position: inside;
}

/* ========================================
   2. CSS CUSTOM PROPERTIES (VARIABLES)
   ======================================== */

:root {
    --color-red: #781F22;
    --color-gold: #D3BD8B;
    --color-white: #FFFFFF;
    --color-dark: #333333;
    --color-light-gray: #F5F5F5;
    --color-text-light: #CCCCCC;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container-max: 1200px;
    --transition-speed: 0.3s;
    --header-height: 100px;
    --top-bar-height: 40px;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

strong, b {
    font-weight: 600;
}

blockquote {
    border-left: 4px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

/* ========================================
   4. LAYOUT & CONTAINERS
   ======================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.site-main {
    min-height: 50vh;
}

/* ========================================
   5. HEADER (TOP BAR + NAVIGATION)
   ======================================== */

/* --- Top Bar --- */
.top-bar {
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 14px;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
    flex: 1;
}

.top-bar-center {
    text-align: center;
}

.top-bar-right {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.top-bar a {
    color: var(--color-white);
    transition: color var(--transition-speed) ease;
}

.top-bar a:hover {
    color: var(--color-gold);
}

.top-bar-right a {
    font-size: 16px;
}

/* --- Site Header --- */
.site-header {
    background-color: var(--color-white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: padding var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
    z-index: 1000;
}

.site-header.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding img {
    max-height: 70px;
    width: auto;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-red);
}

/* --- Navigation --- */
.main-navigation {
    position: relative;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.menu-toggle-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--color-red);
    position: relative;
    transition: background-color var(--transition-speed) ease;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--color-red);
    left: 0;
    transition: transform var(--transition-speed) ease;
}

.menu-toggle-icon::before {
    top: -8px;
}

.menu-toggle-icon::after {
    top: 8px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
    background-color: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
    transform: rotate(45deg) translateY(8px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
    transform: rotate(-45deg) translateY(-8px);
}

.primary-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    padding: 10px 0;
    display: inline-block;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-speed) ease;
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
    width: 100%;
}

/* Dropdown Menus */
.primary-menu .menu-item-has-children > a {
    padding-right: 20px;
    position: relative;
}

.primary-menu .menu-item-has-children > a::before {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
}

.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease, visibility var(--transition-speed) ease;
    z-index: 100;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li {
    display: block;
}

.primary-menu .sub-menu a {
    padding: 12px 20px;
    display: block;
    font-size: 15px;
}

.primary-menu .sub-menu a::after {
    display: none;
}

.primary-menu .sub-menu a:hover {
    background-color: var(--color-light-gray);
    color: var(--color-red);
}

/* Third level dropdowns */
.primary-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   6. HERO SLIDER
   ======================================== */

.hero-slider {
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
}

.slide {
    position: relative;
    min-height: 600px;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.slide-content-inner {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.slide-eyebrow {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.slide-headline {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-description {
    font-size: 20px;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(211, 189, 139, 0.8);
    color: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color var(--transition-speed) ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

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

.slider-arrow:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Pagination */
.slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background-color: var(--color-gold);
    transform: scale(1.2);
}

.slider-dot:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* ========================================
   7. PAGE TITLE SECTION
   ======================================== */

.page-title-section {
    background-color: var(--color-light-gray);
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-title {
    font-size: 36px;
    color: var(--color-red);
    margin-bottom: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 10px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 8px;
    font-size: 13px;
    color: var(--color-dark);
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-separator {
    color: var(--color-gold);
}

.breadcrumb-list a {
    color: var(--color-dark);
}

.breadcrumb-list a:hover {
    color: var(--color-red);
}

.breadcrumb-list .current {
    color: #666;
}

/* ========================================
   8. MAIN CONTENT
   ======================================== */

.site-main {
    padding: 80px 0;
}

.entry-content {
    line-height: 1.8;
}

.entry-content h2 {
    margin-top: 2rem;
    color: var(--color-red);
}

.entry-content h3 {
    margin-top: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.entry-content ul {
    list-style-type: disc;
}

.entry-content ol {
    list-style-type: decimal;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content img {
    margin: 2rem 0;
    border-radius: 4px;
}

.entry-content img.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.entry-content img.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.entry-content img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.entry-content table th,
.entry-content table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.entry-content table th {
    background-color: var(--color-light-gray);
    font-weight: 600;
}

/* 404 Page */
.error-404-content {
    text-align: center;
    padding: 40px 0;
}

.error-404-text h2 {
    color: var(--color-red);
    margin-bottom: 1rem;
}

.helpful-links {
    margin-top: 3rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.helpful-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.helpful-links li {
    margin-bottom: 0.5rem;
}

.helpful-links a {
    color: var(--color-red);
    font-weight: 600;
}

/* Blog/Archive */
.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title a {
    color: var(--color-red);
}

.entry-title a:hover {
    color: var(--color-gold);
}

.entry-meta {
    font-size: 14px;
    color: #666;
    margin-top: 0.5rem;
}

.entry-meta span {
    margin-right: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-red);
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 3rem;
}

.page-numbers {
    padding: 10px 15px;
    border: 1px solid var(--color-gold);
    color: var(--color-dark);
    transition: all var(--transition-speed) ease;
}

.page-numbers:hover,
.page-numbers.current {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* ========================================
   9. FOOTER
   ======================================== */

.site-footer {
    background-color: var(--color-dark);
    color: var(--color-text-light);
}

.footer-widgets {
    padding: 60px 0;
}

.footer-widgets-inner {
    display: grid;
    gap: 40px;
}

.footer-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.footer-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.footer-column .widget {
    margin-bottom: 30px;
}

.footer-column .widget-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer-column .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column .widget li {
    margin-bottom: 10px;
}

.footer-column .widget a {
    color: var(--color-text-light);
    transition: color var(--transition-speed) ease;
}

.footer-column .widget a:hover {
    color: var(--color-gold);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

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

.copyright {
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: var(--color-text-light);
    font-size: 16px;
    transition: color var(--transition-speed) ease;
}

.footer-social a:hover {
    color: var(--color-gold);
}

/* ========================================
   10. BUTTONS & FORMS
   ======================================== */

.btn {
    display: inline-block;
    padding: 0 32px;
    height: 50px;
    line-height: 50px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-red);
}

.btn-primary:hover {
    background-color: var(--color-red);
    color: var(--color-gold);
}

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

.btn-secondary:hover {
    background-color: var(--color-red);
    border-color: var(--color-red);
    color: var(--color-white);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color var(--transition-speed) ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-gold);
}

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

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

button[type="submit"],
input[type="submit"] {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

button[type="submit"]:hover,
input[type="submit"]:hover {
    background-color: var(--color-gold);
    color: var(--color-red);
}

/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
    margin: 2rem 0;
}

.search-field {
    flex: 1;
}

.search-submit {
    padding: 12px 24px;
}

/* ========================================
   11. UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }

/* ========================================
   12. RESPONSIVE MEDIA QUERIES
   ======================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .primary-menu {
        gap: 20px;
    }
    
    .primary-menu a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    /* Top Bar */
    .top-bar {
        font-size: 12px;
    }
    
    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left,
    .top-bar-center,
    .top-bar-right {
        text-align: center;
        justify-content: center;
    }
    
    /* Mobile Menu */
    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }
    
    .menu-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        padding: 80px 30px 30px;
        overflow-y: auto;
        transition: right 0.4s ease-in-out;
        z-index: 1001;
    }
    
    .menu-container.active {
        right: 0;
    }
    
    .primary-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .primary-menu li {
        border-bottom: 1px solid var(--color-light-gray);
    }
    
    .primary-menu a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }
    
    .primary-menu a::after {
        display: none;
    }
    
    /* Dropdowns - Accordion Style */
    .primary-menu .sub-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .primary-menu .menu-item-has-children.active > .sub-menu {
        display: block;
    }
    
    .primary-menu .sub-menu a {
        padding: 10px 0;
        font-size: 14px;
    }
    
    /* Hero Slider */
    .slide {
        min-height: 400px;
    }
    
    .slide-content {
        min-height: 400px;
    }
    
    .slide-headline {
        font-size: 36px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .slide-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    /* Page Title Section */
    .page-title-section {
        padding: 30px 0;
    }
    
    /* Main Content */
    .site-main {
        padding: 40px 0;
    }
    
    .entry-content img.alignleft,
    .entry-content img.alignright {
        float: none;
        margin: 1rem 0;
    }
    
    /* Footer */
    .footer-widgets-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slide-headline {
        font-size: 28px;
    }
    
    .btn {
        padding: 0 20px;
        height: 44px;
        line-height: 44px;
        font-size: 14px;
    }
}

/* ========================================
   13. ACCESSIBILITY STYLES
   ======================================== */

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 10px 20px;
    z-index: 10000;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--color-gold);
}

/* Screen Reader Text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.screen-reader-text:focus {
    position: static;
    width: auto;
    height: auto;
    padding: inherit;
    margin: inherit;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Focus Visible (modern browsers) */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* Ensure sufficient touch targets on mobile */
@media (max-width: 768px) {
    a,
    button,
    input[type="submit"],
    input[type="button"],
    .menu-toggle {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ========================================
   14. PRINT STYLES
   ======================================== */

@media print {
    .top-bar,
    .site-header,
    .hero-slider,
    .menu-toggle,
    .mobile-menu-overlay,
    .slider-arrow,
    .slider-pagination,
    .site-footer,
    .skip-link {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
        color: #000;
    }
    
    .container {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}
