﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5e9b8a;
    --secondary-color: #f5f5f0;
    --accent-color: #d4af37;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    --success: #4caf50;
    --danger: #f44336;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

    .nav-links a {
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 500;
    }

        .nav-links a:hover {
            color: var(--primary-color);
        }

.auth-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

    .btn-primary:hover {
        background: #4d8173;
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

    .btn-outline:hover {
        background: var(--primary-color);
        color: white;
    }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/yogabliss/dashboard.png') center/cover;
    margin-top: 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
    color: var(--primary-color);
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: var(--accent-color);
    }

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
    margin: 2rem 0;
    color: var(--text-gray);
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .stat-card:hover {
        transform: translateY(-5px);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Classes Section */
.classes {
    background: var(--secondary-color);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.class-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .class-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.class-image {
    height: 200px;
    background: url('/images/yogabliss/about.png') center/cover;
    position: relative;
}

.class-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.class-content {
    padding: 1.5rem;
}

.class-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.class-info {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.class-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Instructors Section */
.instructors {
    background: var(--bg-light);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.instructor-card {
    text-align: center;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .instructor-card:hover {
        transform: translateY(-5px);
    }

.instructor-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: url('/images/yogabliss/about.png') center/cover;
    border: 4px solid var(--primary-color);
}

.instructor-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.instructor-specialty {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.instructor-bio {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

    .social-links a {
        color: var(--text-gray);
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

        .social-links a:hover {
            color: var(--primary-color);
        }

/* Schedule Section */
.schedule {
    background: var(--secondary-color);
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.schedule-tab {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 0 0.5rem 0.5rem;
    border-radius: 30px;
}

    .schedule-tab.active {
        background: var(--primary-color);
        color: white;
    }

.schedule-content {
    display: none;
}

    .schedule-content.active {
        display: block;
    }

.schedule-table {
    width: 100%;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .schedule-table th,
    .schedule-table td {
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid #eee;
    }

    .schedule-table th {
        background: var(--primary-color);
        color: white;
    }

    .schedule-table tr:hover {
        background: rgba(94, 155, 138, 0.05);
    }

.book-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.9rem;
}

    .book-btn:hover {
        background: #4d8173;
    }

/* Membership Section */
.membership {
    background: var(--bg-light);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .plan-card.featured {
        border: 2px solid var(--primary-color);
        transform: scale(1.05);
    }

    .plan-card:hover {
        transform: translateY(-5px);
    }

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-price {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

    .plan-price span {
        font-size: 1rem;
        color: var(--text-gray);
    }

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

    .plan-features li {
        padding: 0.5rem 0;
        color: var(--text-gray);
        display: flex;
        align-items: center;
    }

        .plan-features li i {
            color: var(--success);
            margin-right: 0.5rem;
        }

/* Dashboard (Hidden by default) */
.dashboard {
    display: none;
    min-height: 100vh;
    padding-top: 100px;
    background: var(--bg-light);
}

    .dashboard.active {
        display: block;
    }

.dashboard-header {
    background: var(--primary-color);
    padding: 2rem 0;
    margin-bottom: 2rem;
    color: white;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.sidebar {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-menu {
    list-style: none;
}

    .sidebar-menu li {
        margin-bottom: 1rem;
    }

    .sidebar-menu a {
        color: var(--text-dark);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.75rem;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

        .sidebar-menu a:hover,
        .sidebar-menu a.active {
            background: var(--primary-color);
            color: white;
        }

.dashboard-main {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.welcome-card {
    background: linear-gradient(135deg, var(--primary-color), #4d8173);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .stat-box i {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

    .modal.active {
        display: flex;
    }

.modal-content {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.5rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
        font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        background: var(--bg-light);
        border: 1px solid #ddd;
        border-radius: 5px;
        color: var(--text-dark);
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

/* Contact Section */
.contact {
    background: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    .contact-item i {
        font-size: 1.5rem;
        color: var(--primary-color);
        width: 30px;
        margin-top: 0.2rem;
    }

.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background: var(--text-dark);
    padding: 3rem 0 1rem;
    text-align: center;
    color: var(--text-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p,
.footer-section a {
    color: var(--secondary-color);
    text-decoration: none;
    line-height: 1.8;
}

    .footer-section a:hover {
        color: var(--primary-color);
    }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: var(--text-gray);
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--success);
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 3000;
}

    .notification.show {
        transform: translateX(0);
    }

    .notification.error {
        background: var(--danger);
    }

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .about-content,
    .contact-content {
        gap: 2rem;
    }

    .stats {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .dashboard-content {
        grid-template-columns: 200px 1fr;
    }

    .sidebar {
        padding: 1.5rem;
    }

    .stat-box {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
        gap: 1rem;
    }

        .nav-links.active {
            right: 0;
        }

    .auth-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 1rem;
    }

        .auth-buttons .btn {
            width: 100%;
        }

    /* Hero Section */
    .hero {
        margin-top: 70px;
    }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero p {
            font-size: 1.1rem;
        }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

        .hero-buttons .btn {
            width: 80%;
            max-width: 300px;
        }

    /* Section Styles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    /* Stats Section */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Classes Section */
    .classes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .class-content {
        padding: 1.2rem;
    }

    .class-title {
        font-size: 1.3rem;
    }

    /* Instructors Section */
    .instructors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .instructor-card {
        padding: 1.5rem;
    }

    .instructor-image {
        width: 120px;
        height: 120px;
    }

    /* Schedule Section */
    .schedule-tabs {
        margin-bottom: 1.5rem;
    }

    .schedule-tab {
        padding: 0.5rem 1rem;
        margin: 0 0.3rem 0.5rem;
        font-size: 0.9rem;
    }

    .schedule-content {
        overflow-x: auto;
    }

    .schedule-table {
        min-width: 600px;
    }

        .schedule-table th,
        .schedule-table td {
            padding: 0.8rem 0.5rem;
            font-size: 0.9rem;
        }

    .book-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    /* Membership Section */
    .membership-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

        .plan-card.featured {
            transform: none;
            border: 2px solid var(--primary-color);
        }

    .plan-name {
        font-size: 1.5rem;
    }

    .plan-price {
        font-size: 2.5rem;
    }

    /* Dashboard Section */
    .dashboard {
        padding-top: 80px;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sidebar {
        order: 2;
        padding: 1.5rem;
    }

    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

        .sidebar-menu li {
            margin: 0;
            flex: 1 1 45%;
        }

        .sidebar-menu a {
            padding: 0.5rem;
            font-size: 0.9rem;
            justify-content: center;
        }

    .dashboard-main {
        order: 1;
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-box {
        padding: 1rem;
    }

        .stat-box i {
            font-size: 1.5rem;
        }

        .stat-box h3 {
            font-size: 1.5rem;
        }

    /* Modal */
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    /* Contact Section */
    .contact-content {
        gap: 1.5rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-section {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 0.8rem;
    }

    /* Hero Section */
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Section Styles */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Stats Section */
    .stats {
        grid-template-columns: 1fr;
    }

    /* Instructors Section */
    .instructors-grid {
        grid-template-columns: 1fr;
    }

    /* Schedule Section */
    .schedule-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .schedule-tab {
        flex-shrink: 0;
        margin: 0 0.3rem 0.5rem 0;
    }

    .schedule-table {
        min-width: 500px;
    }

        .schedule-table th,
        .schedule-table td {
            padding: 0.6rem 0.4rem;
            font-size: 0.8rem;
        }

    /* Dashboard Section */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-menu {
        flex-direction: column;
    }

        .sidebar-menu li {
            flex: 1 1 100%;
        }

    /* Modal */
    .modal-content {
        padding: 1.2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

        .footer-section h3::after {
            left: 50%;
            transform: translateX(-50%);
        }
}

@media (max-width: 480px) {
    /* Hero Section */
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Section Styles */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

        .section-title::after {
            width: 80px;
            height: 2px;
        }

    /* Class Cards */
    .class-content {
        padding: 1rem;
    }

    .class-title {
        font-size: 1.2rem;
    }

    /* Instructors */
    .instructor-card {
        padding: 1.2rem;
    }

    .instructor-image {
        width: 100px;
        height: 100px;
    }

    .instructor-name {
        font-size: 1.1rem;
    }

    /* Membership */
    .plan-card {
        padding: 1.2rem;
    }

    .plan-name {
        font-size: 1.3rem;
    }

    .plan-price {
        font-size: 2rem;
    }

    .plan-features {
        font-size: 0.9rem;
    }

    /* Dashboard */
    .welcome-card {
        padding: 1.5rem;
    }

        .welcome-card h2 {
            font-size: 1.5rem;
        }

    /* Modal */
    .modal-content {
        padding: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    /* Contact */
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

        .contact-item i {
            margin-bottom: 0.5rem;
        }
}

@media (max-width: 380px) {
    /* Hero Section */
    .hero h1 {
        font-size: 1.6rem;
    }

    /* Section Styles */
    .section-title {
        font-size: 1.5rem;
    }

    /* Schedule Table */
    .schedule-table {
        min-width: 400px;
        font-size: 0.75rem;
    }

        .schedule-table th,
        .schedule-table td {
            padding: 0.5rem 0.3rem;
        }

    /* Buttons */
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

