/* ============================================
   Hajnalfény - Redesigned Layout (Wireframe Based)
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --color-background: #FFF9F2;
    --color-text: #5D4A66;
    --color-accent: #E87461;
    --color-highlight: #FFD275;
    --color-border: #FFB380;
    --color-white: #FFFFFF;
    --color-light-gray: #f5f5f5;
    --font-family: 'Montserrat', sans-serif;
    --shadow-soft: 0 2px 10px rgba(93, 74, 102, 0.08);
    --shadow-hover: 0 4px 20px rgba(93, 74, 102, 0.12);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-white);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #d45a47;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: white;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
}


.btn-primary:hover {
    background: #d45a47;
    color: var(--color-white);

}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}


.nav-menu a.btn.btn-primary.btn-sm,
.navbar a.btn.btn-primary.btn-sm {
    color: #fff;
    /* fehér szöveg */
    text-decoration: none;
    /* gombnál általában nem kell aláhúzás */
}



/* Header & Navigation */
.header {
    background: var(--color-white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    /* Adjust based on preference */
    width: auto;
    display: block;
}

.footer .logo-img {
    height: 50px;
    margin: 0 auto 15px;
    filter: brightness(0) invert(1);
    /* If footer logo should be white */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #666;
    font-weight: 400;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--color-accent);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text);
    cursor: pointer;
}

/* Hero Section - With 3 Feature Cards */
.hero {
    padding: 60px 0 40px;
    background: var(--color-background);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--color-text);
    font-size: 3rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #666;
}

.hero-image-container {
    flex: 1;
    max-width: 500px;
}

.hero-image-container img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: block;
}

@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hero-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-card-image {
    height: 180px;
    background: #ddd;
    overflow: hidden;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-content {
    padding: 20px;
}

.hero-card h4 {
    margin-bottom: 8px;
}

.hero-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Section Styling */
.section {
    padding: 70px 0;
}

.section-gray {
    background: var(--color-light-gray);
}

.section-cream {
    background: var(--color-background);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    margin-bottom: 10px;
}

.section-title p {
    color: #888;
    max-width: 600px;
    margin: 0 auto;
}

/* Intro Blocks - Alternating */
.intro-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
}

.intro-block:last-child {
    margin-bottom: 0;
}

.intro-block.reverse {
    direction: rtl;
}

.intro-block.reverse>* {
    direction: ltr;
}

.intro-content h3 {
    color: var(--color-text);
    margin-bottom: 1rem;
}

.intro-content p {
    color: #666;
    line-height: 1.8;
}

.intro-image {
    background: #e0e0e0;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Service Icons Row - Circles */
.service-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

a.service-icon,
.service-icon {
    text-align: center;
    width: 120px;
    text-decoration: none;
    display: block;
}

.service-icon .icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-icon:hover .icon-circle {
    background: var(--color-highlight);
    border-color: var(--color-highlight);
    transform: scale(1.05);
}

.service-icon span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    display: block;
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #eee;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
}

.service-card-image {
    height: 180px;
    background: #ddd;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    padding: 20px;
}

.service-card h4 {
    margin-bottom: 8px;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Schedule Table */
.schedule-wrapper {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.schedule-table th {
    background: var(--color-text);
    color: var(--color-white);
    padding: 15px;
    font-weight: 500;
    text-align: left;
    font-size: 0.9rem;
}

.schedule-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tr:hover td {
    background: #fafafa;
}

.schedule-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.schedule-badge.group {
    background: var(--color-highlight);
    color: var(--color-text);
}

.schedule-badge.individual {
    background: var(--color-accent);
    color: var(--color-white);
}

/* Event Cards - 3 Column */
.event-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #eee;
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow-hover);
}

.event-card-image {
    height: 160px;
    background: #ddd;
    overflow: hidden;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-content {
    padding: 20px;
}

.event-date {
    display: inline-block;
    background: var(--color-highlight);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.event-card h4 {
    margin-bottom: 8px;
}

.event-location {
    color: #888;
    font-size: 0.85rem;
}

/* About Section - Side by Side */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    background: #e0e0e0;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h3 {
    margin-bottom: 1rem;
}

.about-content p {
    line-height: 1.8;
}

/* Prices Section - 3 Columns */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.price-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--color-accent);
}

.price-card.featured {
    border: 2px solid var(--color-accent);
    position: relative;
}

.price-card.featured::before {
    content: 'Népszerű';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.price-card h4 {
    margin-bottom: 5px;
}

.price-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 15px 0;
}

.price-card .price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #888;
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.price-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #666;
}

.price-card li:last-child {
    border-bottom: none;
}

/* Prices Box - Original (fallback) */
.prices-box {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid #eee;
}

.prices-box h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.prices-box ul {
    list-style: none;
}

.prices-box li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
}

.prices-box li:last-child {
    border-bottom: none;
}

/* Testimonials - Quote Style */
.testimonials-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    display: grid;
    align-items: center;
}

.testimonial-slide {
    grid-area: 1 / 1 / 2 / 2;
    text-align: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    color: var(--color-border);
    font-size: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-accent);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--color-accent);
}

/* Blog Cards */
.blog-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #eee;
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    height: 180px;
    background: #ddd;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-date {
    color: var(--color-accent);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.blog-card h4 {
    margin-bottom: 8px;
}

.blog-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* Footer */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: 30px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .logo {
    color: var(--color-white);
}

.footer .logo span {
    color: var(--color-highlight);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-soft);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-cards,
    .service-cards,
    .event-cards,
    .blog-cards,
    .prices-grid {
        grid-template-columns: 1fr;
    }

    .intro-block,
    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .intro-block.reverse {
        direction: ltr;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .section {
        padding: 50px 0;
    }

    .hero {
        padding: 40px 0 30px;
    }

    .service-icons {
        gap: 25px;
    }

    .service-icon .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-accent {
    color: var(--color-accent);
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Admin Styles */
.admin-header {
    background: var(--color-text);
    color: var(--color-white);
    padding: 15px 20px;
}

.admin-nav {
    display: flex;
    gap: 15px;
    list-style: none;
    background: var(--color-white);
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.admin-nav a {
    padding: 8px 16px;
    background: #f5f5f5;
    border-radius: 4px;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: var(--color-accent);
    color: var(--color-white);
}

.admin-content {
    padding: 20px;
    background: #f9f9f9;
    min-height: calc(100vh - 120px);
}

.admin-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.admin-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.admin-table tr:hover td {
    background: #fafafa;
}

.btn-danger {
    background: #dc3545;
    color: var(--color-white);
}

.btn-danger:hover {
    background: #c82333;
    color: var(--color-white);
}

.alert {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Login Page */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--color-background);
}

.login-box {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    width: 100%;
    max-width: 380px;
    text-align: center;
}

.login-box h2 {
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.login-box .logo {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
}

/* Detail Pages */
.page-detail {
    padding: 40px 0;
}

.page-detail .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 25px;
    color: #666;
    font-size: 0.9rem;
}

.page-detail .back-link:hover {
    color: var(--color-accent);
}

.page-detail-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-detail-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-detail-image {
    max-width: 700px;
    margin: 0 auto 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.page-detail-image img {
    width: 100%;
    height: auto;
}

.page-detail-content {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

.page-detail-content p {
    margin-bottom: 1.2rem;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    flex: 1;
    min-width: 300px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
    margin-bottom: 20px;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.contact-card p {
    margin-bottom: 15px;
    color: #666;
    font-size: 1.1rem;
}

.map-container {
    width: 100%;
    margin-top: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #e0e0e0;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* Blockquote Styling */
blockquote {
    border-left: 4px solid var(--color-accent);
    background: #fff5f2;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text);
    border-radius: 0 8px 8px 0;
    box-shadow: var(--shadow-soft);
}

blockquote p {
    margin-bottom: 0;
}


/* Schedule Refactor Styles */

/* Category Colors */
.cat-yoga {
    color: #4A90E2;
    font-weight: 600;
}

.cat-doin {
    color: #7ED321;
    font-weight: 600;
}

.cat-hike {
    color: #F5A623;
    font-weight: 600;
}

/* Table Enhancements */
.schedule-table {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.schedule-table th {
    background: #4a4a4a;
    /* Darker for better contrast */
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-table td {
    color: #333;
    /* Darker text for readability */
    font-weight: 500;
    vertical-align: middle;
}

.schedule-table tr {
    transition: background-color 0.2s ease;
}

.schedule-table tr:hover td {
    background-color: #fdf5e6;
    /* Light peach hover effect */
}

/* Location Link */
.location-link {
    color: #666;
    text-decoration: none;
    border-bottom: 1px dashed #999;
    transition: color 0.2s;
}

.location-link:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* Action Button */
.btn-book {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-accent);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(232, 116, 97, 0.3);
}

.btn-book:hover {
    background: #d45a47;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(232, 116, 97, 0.4);
    color: white;
}

/* Special Event Box */
.special-event-box {
    background: linear-gradient(135deg, #fff9f2 0%, #fff 100%);
    border: 2px solid var(--color-highlight);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 210, 117, 0.3);
    position: relative;
    overflow: hidden;
}

.special-event-box::before {
    content: '?';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 100px;
    color: rgba(255, 210, 117, 0.2);
    transform: rotate(15deg);
}

.special-event-box h3 {
    color: #F5A623;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.special-event-box p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}


/* Mobile Card View for Schedule */
@media (max-width: 768px) {
    .schedule-wrapper {
        overflow: visible;
        /* Allow cards to have shadows */
    }

    .schedule-table {
        background: transparent;
        box-shadow: none;
    }

    .schedule-table thead {
        display: none;
    }

    .schedule-table tbody {
        display: block;
        width: 100%;
    }

    .schedule-table tr {
        display: block;
        background: #fff;
        margin-bottom: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
        padding: 20px;
        transition: transform 0.2s;
    }

    .schedule-table tr:hover {
        transform: translateY(-3px);
    }

    .schedule-table tr:hover td {
        background: transparent;
        /* Reset hover bg */
    }

    .schedule-table td {
        display: block;
        padding: 4px 0;
        border: none;
        text-align: left;
    }

    /* Day */
    .schedule-table td:nth-of-type(1) {
        color: var(--color-accent);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85rem;
        margin-bottom: 2px;
    }

    /* Time */
    .schedule-table td:nth-of-type(2) {
        font-weight: 700;
        color: #4a4a4a;
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    /* Activity Name */
    .schedule-table td:nth-of-type(3) {
        font-size: 1.4rem;
        padding-top: 15px;
        border-top: 1px solid #f5f5f5;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    /* Location */
    .schedule-table td:nth-of-type(4) {
        margin-bottom: 20px;
        font-size: 1rem;
    }

    /* Button Container */
    .schedule-table td:nth-of-type(5) {
        margin-top: 5px;
    }

    .schedule-table .btn-book {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 1rem;
    }
}