/* General Body and Font Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8;
    color: #1e293b;
    scroll-behavior: smooth;
}

/* Custom styles for a more polished look */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1200x800/2a4365/ffffff?text=Martial+Arts+Studio') no-repeat center center/cover;
    color: white;
    padding: 10rem 2rem;
}

.cta-button {
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #1a428a;
}

.section-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

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