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

/* Main Container */
.march-container {
    background-color: #f8f9fa;
    min-height: 100vh;
}

/* Typography */
.main-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 1rem;
}

.subtitle {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.2rem;
    color: #666;
}

/* School Logos */
.school-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.school-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.school-logo:hover {
    transform: scale(1.1);
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Lyrics Card */
.lyrics-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease;
}

.lyrics-card:hover {
    transform: translateY(-5px);
}

.lyrics-card .card-title {
    font-family: 'Prompt', sans-serif;
    color: #0056b3;
}

.lyrics-content {
    font-family: 'Sarabun', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.verse {
    margin-bottom: 2rem;
}

.chorus {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(0, 86, 179, 0.05);
    border-radius: 10px;
}

.chorus strong {
    color: #0056b3;
}

.repeat {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .school-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .school-logo {
        width: 120px;
        height: 120px;
    }
    
    .lyrics-content {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .school-logo {
        width: 100px;
        height: 100px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) {
    .lyrics-card:hover {
        transform: none;
    }
    
    .school-logo:hover {
        transform: none;
    }
}