/* Custom styles */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Hero Section & Slideshow --- */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg-1 {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('media/slider/1.JPG');
}

.hero-bg-2 {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('media/slider/2.JPG');
}

.hero-bg-3 {
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('media/slider/3.JPG');
}

/* Add a subtle text shadow for better readability on hero images */
.hero-section h1, .hero-section p {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}


/* --- Navigation --- */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #f59e0b; /* amber-500 */
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #1f2937; /* gray-800 */
}

.nav-link:hover::after {
    width: 100%;
}


/* --- Cards --- */
.info-card {
    background-color: #fff;
    border-radius: 0.75rem; /* 12px */
    border: 1px solid #e5e7eb; /* gray-200 */
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24; /* amber-400 */
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* --- Section Styling --- */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f59e0b; /* amber-500 */
    border-radius: 2px;
}

/* Button styles from Tailwind for consistency */
.bg-amber-500 {
    background-color: #f59e0b;
}

.hover\:bg-amber-600:hover {
    background-color: #d97706;
}

.transition-colors {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}