/* Landing Page Styles */

/* Global Styles */
body {
    font-family: 'Noto Sans KR', 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content .buttons {
    margin-top: 2rem;
}

.hero-content .btn {
    margin: 0 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature .icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Classes Section */
.classes-section {
    padding: 100px 0;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
    height: 220px;
    object-fit: cover;
}

.card-title {
    font-weight: 700;
    color: #4a6cf7;
}

/* Instructors Section */
.instructors-section {
    padding: 100px 0;
}

.instructor-card {
    text-align: center;
    margin-bottom: 30px;
}

.instructor-card .card-img-top {
    height: 300px;
    object-fit: cover;
}

.instructor-title {
    color: #4a6cf7;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f2f5;
    color: #333;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #4a6cf7;
    color: white;
}

/* Schedule Section */
.schedule-section {
    padding: 100px 0;
}

.timetable {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.timetable th {
    background-color: #4a6cf7;
    color: white;
    text-align: center;
    padding: 15px;
}

.timetable td {
    padding: 12px;
    text-align: center;
    vertical-align: middle;
}

.class-ballet {
    background-color: #ffecf1;
    color: #ff6384;
    font-weight: 500;
}

.class-modern {
    background-color: #f1f8ff;
    color: #36a2eb;
    font-weight: 500;
}

.class-jazz {
    background-color: #fff9e6;
    color: #ffcd56;
    font-weight: 500;
}

.class-hiphop {
    background-color: #eaedfb;
    color: #4a6cf7;
    font-weight: 500;
}

.class-pilates {
    background-color: #e7f9ec;
    color: #4bc0c0;
    font-weight: 500;
}

/* Location Section */
.location-section {
    padding: 100px 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.directions {
    margin-top: 2rem;
}

.direction {
    margin-bottom: 1.5rem;
}

.direction h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #4a6cf7;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer h4, .footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer p {
    opacity: 0.8;
}

.footer .social-links {
    margin-top: 1.5rem;
}

.footer .social-link {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.footer .social-link:hover {
    background-color: white;
    color: #2c3e50;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-section, 
    .classes-section, 
    .instructors-section, 
    .schedule-section, 
    .location-section, 
    .contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content .btn {
        display: block;
        margin: 0.5rem auto;
        width: 80%;
    }
}