/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-cream: #FFF8F0;
    --secondary-beige: #F5E7DA;
    --accent-blue: #4A90E2;
    --accent-green: #7FB069;
    --accent-yellow: #F9D571;
    --accent-coral: #F28C8C;
    
    /* Typography */
    --font-primary: 'Noto Sans KR', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Border Radius */
    --border-radius: 8px;
    --border-radius-large: 16px;
    
    /* Shadows */
    --shadow-soft: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 24px rgba(0,0,0,0.12);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    background-color: var(--primary-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
    background-color: var(--accent-blue);
    color: white;
}

.btn-video {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-video:hover {
    background: linear-gradient(135deg, #ee5a24, #d63031);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.3);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--accent-blue);
    margin: 0;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: var(--accent-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.gallery-actions {
    margin-top: 1rem;
    text-align: center;
}

/* Programs Section */
.programs {
    padding: var(--section-padding);
    background-color: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background-color: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.program-image {
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-coral));
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 3rem;
}

.program-content {
    padding: 1.5rem;
}

.program-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.program-content p {
    color: #666;
    margin-bottom: 1rem;
}

.program-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.program-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.program-details i {
    color: var(--accent-blue);
}

/* Info Section */
.info {
    padding: var(--section-padding);
    background-color: var(--primary-cream);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.info-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.info-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    color: var(--accent-blue);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    margin: 0;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

/* Gallery Section */
.gallery {
    padding: var(--section-padding);
    background-color: var(--primary-cream);
}

/* Slideshow Styles */
.gallery-slideshow {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Dots container */
.dots-container {
    text-align: center;
    margin-top: 20px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: var(--accent-blue);
}

/* Fade animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* Contact Form */
.contact-form {
    background-color: var(--primary-cream);
    padding: 2rem;
    border-radius: var(--border-radius-large);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    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(--accent-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-blue);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-soft);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    

    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .about-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .slideshow-container {
        height: 300px;
    }
    
    .prev, .next {
        padding: 12px;
        font-size: 16px;
    }
    
    .dot {
        height: 10px;
        width: 10px;
        margin: 0 3px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .program-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slideshow-container {
        height: 250px;
    }
    
    .gallery-slideshow {
        max-width: 100%;
    }
    
    .prev, .next {
        padding: 8px;
        font-size: 14px;
    }
    
    .dots-container {
        margin-top: 15px;
    }
    
    .dot {
        height: 8px;
        width: 8px;
        margin: 0 2px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.program-card,
.info-card,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.program-card:hover .program-placeholder {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Quick Info Section */
.quick-info {
    padding: 3rem 0;
    background-color: white;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-info-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-cream);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.quick-info-card:hover {
    transform: translateY(-5px);
}

.quick-info-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.quick-info-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.quick-info-card p {
    color: #666;
    margin: 0;
}

/* Individual Experience Section */
.individual-experience {
    padding: var(--section-padding);
    background-color: var(--primary-cream);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-text h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.experience-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.experience-text ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.experience-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.experience-image img {
    width: 100%;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
}

/* Group Experience Section */
.group-experience {
    padding: var(--section-padding);
    background-color: white;
}

.group-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.group-category {
    padding: 2rem;
    background-color: var(--primary-cream);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
}

.group-category h3 {
    color: #333;
    margin-bottom: 1rem;
}

.group-category p {
    color: #666;
    margin-bottom: 1rem;
}

.group-category ul {
    list-style: none;
    padding: 0;
}

.group-category ul li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.2rem;
}

.group-category ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.group-info {
    background-color: var(--accent-blue);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
}

.group-info h3 {
    margin-bottom: 1rem;
}

.group-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.group-info ul li {
    padding: 0.5rem 0;
}

/* Reservation Status Section */
.reservation-status {
    padding: var(--section-padding);
    background-color: var(--primary-cream);
}

.reservation-table {
    background-color: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.reservation-table table {
    width: 100%;
    border-collapse: collapse;
}

.reservation-table th,
.reservation-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.reservation-table th {
    background-color: var(--accent-blue);
    color: white;
    font-weight: 600;
}

.reservation-table tr:hover {
    background-color: #f9f9f9;
}

/* Notice Section */
.notice {
    padding: var(--section-padding);
    background-color: white;
}

.notice-list {
    max-width: 800px;
    margin: 0 auto;
}

.notice-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.notice-item:hover {
    background-color: #f9f9f9;
}

.notice-date {
    width: 120px;
    color: #666;
    font-size: 0.9rem;
}

.notice-title {
    flex: 1;
    color: #333;
    font-weight: 500;
}

.notice-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.notice-badge:contains("공지") {
    background-color: #ff6b6b;
    color: white;
}

.notice-badge:contains("새소식") {
    background-color: #4ecdc4;
    color: white;
}

.notice-badge:contains("안내") {
    background-color: #45b7d1;
    color: white;
}

/* Facilities Section */
.facilities {
    padding: var(--section-padding);
    background-color: var(--primary-cream);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.facility-item {
    background-color: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
}

.facility-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.facility-item h3 {
    padding: 1rem;
    margin: 0;
    color: #333;
    text-align: center;
}

/* Location Section */
.location {
    padding: var(--section-padding);
    background-color: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h3 {
    color: #333;
    margin-bottom: 2rem;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.transport-item i {
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

.transport-item h4 {
    color: #333;
    margin-bottom: 0.3rem;
}

.transport-item p {
    color: #666;
    margin: 0;
}

.location-map {
    height: 400px;
    background-color: #f5f5f5;
    border-radius: var(--border-radius-large);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-medium);
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quick-info-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .group-categories {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reservation-table {
        overflow-x: auto;
    }
    
    .notice-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .notice-date {
        width: auto;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}

/* Programs Slideshow Styles */
.programs-slideshow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.program-slideshow-container {
    background-color: white;
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.program-slideshow-container:hover {
    transform: translateY(-5px);
}

.program-title {
    color: #333;
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.program-description {
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.program-slideshow {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.program-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.program-slide.active {
    opacity: 1;
}

.program-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-details {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    text-align: center;
}

.program-details span {
    color: #666;
    font-size: 0.9rem;
}

.program-details i {
    color: var(--accent-blue);
    margin-right: 0.3rem;
}

/* Responsive adjustments for program slideshow */
@media (max-width: 768px) {
    .programs-slideshow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-slideshow {
        height: 200px;
    }
    
    .program-details {
        flex-direction: column;
        gap: 0.5rem;
    }
} 