/* Reset dasar */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0044cc, #ffdd00); /* Gradasi biru ke kuning */
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    padding: 0;
    color: black;
    height: 100vh; /* Pastikan tinggi sesuai layar */
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: center;
    background: black;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar a {
    color: yellow;
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.navbar a:hover {
    color: #0044cc;
    text-shadow: 0px 0px 5px yellow;
}

/* Container utama */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
}

/* Header */
.header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 35px;
    font-weight: bold;
    color: black;
    background: yellow;
    padding: 15px 40px;
    border-radius: 15px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

/* Reuni Card (Panjang Seperti Lowongan Kerja) */
.reuni-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 3px solid yellow;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    width: 100%; /* Buat memanjang */
    max-width: 900px;
    margin-bottom: 20px;
}

/* Judul Acara */
.judul-acara {
    font-size: 28px;
    font-weight: bold;
    color: #0044cc;
    background: yellow;
    padding: 10px;
    border-radius: 10px;
    width: fit-content;
    margin-bottom: 15px;
}

/* Informasi Reuni */
.info {
    font-size: 18px;
    line-height: 1.6;
}

.info p {
    margin: 10px 0;
    font-weight: bold;
}

/* Tombol Hubungi Panitia */
.contact-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 18px;
    background: yellow;
    color: black;
    border-radius: 30px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: 2px solid black;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    width: fit-content;
    align-self: flex-start;
    margin-top: 15px;
}

.contact-button:hover {
    background: #ffcc00;
}

/* Footer */
.footer {
    text-align: center;
    padding: 15px;
    background-color: black;
    color: white;
    font-weight: bold;
}
