/* Import Be Vietnam Pro from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* Apply Be Vietnam Pro font to entire website */
* {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

body {
    font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 400;
    line-height: 1.6;
}

/* Navbar scroll effect */
.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.hero .swiper-slide img {
    filter: brightness(0.7);
}

/* Custom gradient backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(16, 185, 129, 0.3) 100%);
}

/* Card hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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) !important;
}

/* Button hover effects */
.btn-primary {
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Navbar customization */
.navbar-brand h1 {
    background: linear-gradient(135deg, #2563eb, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: 45vh !important;
        min-height: 280px !important;
        margin-top: 70px !important;
    }

    .swiper-slide img {
        height: 180px !important;
    }

    .navbar-brand h1 {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 35vh !important;
        min-height: 220px !important;
        margin-top: 60px !important;
    }

    .swiper-slide img {
        height: 130px !important;
    }

    .navbar-brand h1 {
        font-size: 1.125rem !important;
    }
}
