/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;700&display=swap');

/* Basic Body and Font Styles */
body {
    font-family: 'Kanit', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Navbar Customization */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    border-radius: 50%;
}

/* Hero Section */
.hero-section {
    position: relative;
    color: white;
    text-align: center;
}

.hero-section img {
    height: 500px;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Card Styles */
.card {
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
}
