/* style.css */
:root {
    --korea-red: #CD2E3A;
    --korea-blue: #0047A0;
}
body {
    background-color: #FFFFFF;
    color: #1f2937;
    font-family: sans-serif; /* Added a fallback font */
}
.cta-button {
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(205, 46, 58, 0.39);
    background-color: var(--korea-red);
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(205, 46, 58, 0.5);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.nav-link {
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--korea-blue);
}
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.partner-logo {
    transition: transform 0.3s ease;
    filter: grayscale(0%);
    opacity: 0.9;
}
.partner-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}
.album-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}
.album-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}
.album-item:hover .album-image {
    transform: scale(1.05);
}
.album-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 1rem 1rem;
    font-size: 0.875rem;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.album-item:hover .album-description {
    opacity: 1;
    transform: translateY(0);
}
#loader {
    transition: opacity 0.5s ease-out;
}
