/* Main Stylesheet for HipHopHouse.com - Dance School */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #d4af37;
    --accent-color: #b8941f;
    --text-color: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --bg-header: #f5f5f5;
    --border-color: #e0e0e0;
    --announcement-bg: #2d2d2d;
    --max-width: 1200px;
    --header-height: 90px;
    --announcement-height: 40px;
    --transition: all 0.3s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Touch-friendly improvements */
a, button {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-white);
    font-weight: 400;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--announcement-bg);
    color: var(--bg-white);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.announcement-bar p {
    margin: 0;
    color: var(--bg-white);
}

.announcement-bar .highlight {
    color: #ff4444;
    font-weight: 600;
}

/* Header Styles */
.site-header {
    background-color: var(--bg-header);
    color: var(--text-color);
    padding: 0;
    position: sticky;
    top: var(--announcement-height);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

/* Enhanced sticky header on scroll */
.site-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: rgba(245, 245, 245, 0.98);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo .logo-accent {
    color: var(--secondary-color);
    font-weight: 600;
}

.site-logo:hover {
    opacity: 0.8;
}

/* Navigation */
.main-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.main-nav a.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Don't show underline on dropdown parent when dropdown is visible */
.main-nav .dropdown:hover > a::after {
    width: 0;
}

/* Dropdown indicator */
.main-nav .has-dropdown::after {
    content: '▼';
    font-size: 0.6rem;
    margin-left: 0.3rem;
    vertical-align: middle;
    position: static;
    width: auto;
    height: auto;
    background: none;
}

/* Dropdown Menu */
.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background-color: var(--bg-white);
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
    pointer-events: none;
}

.main-nav .dropdown:hover .dropdown-menu,
.main-nav .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Keep dropdown visible when hovering over the menu items */
.main-nav .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown-menu li {
    margin: 0;
}

.main-nav .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: var(--transition);
    border-bottom: none;
}

.main-nav .dropdown-menu a::after {
    display: none;
}

.main-nav .dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--secondary-color);
    padding-left: 2rem;
}

.main-nav .dropdown-menu a.active {
    background-color: var(--bg-light);
    color: var(--secondary-color);
    font-weight: 500;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle:active {
    opacity: 0.7;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - var(--header-height) - 200px);
    padding: 0;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.content-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 3.5rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: calc(var(--header-height) + var(--announcement-height));
        left: 0;
        right: 0;
        background-color: var(--bg-header);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: var(--transition);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        border-top: 1px solid var(--border-color);
        max-height: calc(100vh - var(--header-height) - var(--announcement-height));
        overflow-y: auto;
        z-index: 9999;
    }
    
    .main-nav a {
        color: var(--text-color);
        font-size: 1.1rem;
        padding: 0.75rem 0;
        display: block;
    }

    .main-nav.active {
        transform: translateX(0);
    }
    
    /* Mobile dropdown menu */
    .main-nav .dropdown {
        position: static;
    }
    
    .main-nav .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: var(--bg-light);
        margin: 0.5rem 0 0 1rem;
        padding: 0.5rem 0;
        border-left: 2px solid var(--secondary-color);
        display: none;
    }
    
    .main-nav .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .main-nav .dropdown-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .main-nav .dropdown-menu a:hover {
        padding-left: 1.5rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .content-container,
    .footer-container {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: 450px;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        padding: 2.5rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    /* Page Sections Mobile */
    .page-section {
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Two Column Mobile */
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-column img {
        width: 100%;
        max-width: 100%;
    }
    
    /* Classes Grid Mobile */
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .class-card-image {
        height: 200px;
    }
    
    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    /* Schedule Table Mobile */
    .schedule-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 3rem 0;
        padding-top: calc(var(--header-height) + var(--announcement-height) + 3rem);
        margin-bottom: 2rem;
        min-height: 400px;
        background-color: transparent;
    }
    
    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .page-header .breadcrumbs {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
    
    /* Contact Form Mobile */
    .contact-form {
        width: 100%;
        padding: 1.5rem;
    }
    
    /* Main Content Mobile */
    .main-content {
        padding: 1.5rem 0;
    }
    
    /* Page Section Mobile Spacing */
    .page-section {
        margin-bottom: 2rem;
    }
    
    /* Breadcrumbs Mobile */
    .breadcrumbs {
        font-size: 0.85rem;
        padding: 0.75rem 0;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.8), rgba(44, 44, 44, 0.6)), var(--bg-light);
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    margin-bottom: 4rem;
}

.hero-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px; /* Touch target size */
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--text-color);
}

/* Section Styles */
.page-section {
    margin-bottom: 4rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Class Cards Grid */
.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.class-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.class-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.class-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.class-card-content {
    padding: 1.5rem;
}

.class-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.class-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.class-card-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.class-card-link:hover {
    color: var(--accent-color);
}

/* Image Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.two-column img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.two-column-content h2 {
    margin-bottom: 1rem;
}

.two-column-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Schedule Table */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

/* Table wrapper for mobile scrolling */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 2rem 0;
}

.schedule-table thead {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.schedule-table th,
.schedule-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.schedule-table th {
    font-weight: 600;
}

.schedule-table tbody tr:hover {
    background-color: var(--bg-light);
}

.schedule-table .class-name {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.contact-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Feature Boxes */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.feature-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-light);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

.breadcrumbs span {
    margin: 0 0.5rem;
}

/* Page Header */
.page-header {
    padding: 4rem 0;
    margin-top: calc(-1 * (var(--header-height) + var(--announcement-height)));
    margin-bottom: 3rem;
    padding-top: calc(var(--header-height) + var(--announcement-height) + 4rem);
    text-align: center;
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.75), rgba(44, 44, 44, 0.6));
    z-index: 1;
}

.page-header .content-container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--bg-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-header .breadcrumbs {
    color: rgba(255, 255, 255, 0.9);
}

.page-header .breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
}

.page-header .breadcrumbs a:hover {
    color: var(--secondary-color);
}


@media (max-width: 480px) {
    :root {
        --header-height: 70px;
        --announcement-height: 35px;
    }

    .site-logo {
        font-size: 1.25rem;
    }
    
    .logo-accent {
        font-size: 1.1rem;
    }

    .main-content {
        padding: 0.5rem 0;
    }
    
    .announcement-bar {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
        line-height: 1.4;
    }
    
    .announcement-bar p {
        margin: 0;
    }
    
    /* Hero Section Small Mobile */
    .hero-section {
        min-height: 400px;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    /* Buttons Small Mobile */
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Page Header Small Mobile */
    .page-header {
        padding: 2rem 0;
        padding-top: calc(var(--header-height) + var(--announcement-height) + 2rem);
        margin-bottom: 1.5rem;
        min-height: 350px;
        background-color: transparent;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
    
    .page-header .breadcrumbs {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    /* Section Titles Small Mobile */
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Typography Small Mobile */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Content Container Small Mobile */
    .content-container {
        padding: 0 1rem;
    }
    
    /* Class Cards Small Mobile */
    .class-card-content {
        padding: 1.25rem;
    }
    
    .class-card h3 {
        font-size: 1.25rem;
    }
    
    /* Gallery Small Mobile */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
    }
    
    /* Schedule Table Small Mobile */
    .schedule-table {
        font-size: 0.75rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.5rem 0.35rem;
    }
    
    /* Form Elements Small Mobile */
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    /* Feature Boxes Small Mobile */
    .feature-box {
        padding: 1.25rem;
    }
    
    .feature-box h3 {
        font-size: 1.25rem;
    }
    
    /* Footer Small Mobile */
    .site-footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-content {
        gap: 1.25rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    /* Breadcrumbs Small Mobile */
    .breadcrumbs {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }
    
    /* Contact Info Small Mobile */
    .contact-info {
        padding: 1.5rem;
    }
}

