/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Hero section styling */
.hero-section {
    position: relative;
    height: 100vh;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About section styling */
.about-section {
    padding: 5rem 0;
}

.about-section .section-title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #ff5722; /* Menggunakan warna tema */
}

/* Events section styling */
.events-section {
    padding: 5rem 0;
}

.events-section .section-title {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #ff5722; /* Menggunakan warna tema */
}

/* Card styling for events */
.card {
    transition: transform 0.2s; /* Efek transisi */
}

.card:hover {
    transform: scale(1.05); /* Efek hover */
}

/* Footer styling */
.footer {
    background-color: #ff5722 !important;
    position: relative; /* Footer tetap di bawah konten */
    bottom: 0; /* Posisi footer di bawah */
    width: 100%; /* Lebar footer penuh */
    padding: 1.5rem 0;
    text-align: center;
}

.footer a {
    color: white; /* Warna link di footer */
    margin: 0 0.5rem; /* Margin antar icon */
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh; /* Ketinggian untuk layar kecil */
    }

    .about-section .section-title,
    .events-section .section-title {
        font-size: 2rem; /* Ukuran font untuk layar kecil */
    }
}
.hero-section {
    position: relative;
    height: 100vh; /* Atur tinggi section menjadi 100% dari viewport */
    overflow: hidden; /* Pastikan tidak ada overflow */
}

.hero-image {
    position: absolute; /* Posisi gambar absolute */
    top: 0;
    left: 0;
    width: 100%; /* Lebar penuh */
    height: 100%; /* Tinggi penuh */
}

.hero-image img {
    width: 100%; /* Lebar gambar penuh */
    height: 100%; /* Tinggi gambar penuh */
    object-fit: cover; /* Pastikan gambar tetap proporsional dan menutupi area */
    display: block; /* Hapus space di bawah gambar */
}
