/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f4f8;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Kontainer utama */
.container {
    max-width: 900px;
    margin: auto;
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Heading */
h1 {
    color: #005b96;
    margin-bottom: 10px;
}

h2 {
    color: #0077cc;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Paragraf */
p {
    margin-bottom: 15px;
}

/* Navigasi */
ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

ul li {
    display: inline-block;
    margin-right: 10px;
}

ul li a {
    text-decoration: none;
    background-color: #0077cc;
    color: white;
    padding: 8px 14px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

ul li a:hover {
    background-color: #005b96;
}

/* Gambar */
img {
    display: block;
    margin: 20px 0;
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

/* Footer */
footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9em;
    color: #777;
}
 
/* Khusus styling untuk daftar fasilitas */
.facility-list {
    list-style: none;
    padding-left: 0;
}

.facility-list li {
    background-color: #e3f2fd;
    margin-bottom: 10px;
    padding: 12px 16px;
    border-left: 6px solid #2196f3;
    border-radius: 5px;
    font-size: 1.05em;
    transition: background-color 0.3s;
}

.facility-list li:hover {
    background-color: #d0ebff;
}

/* Tabel Jadwal */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.schedule-table th,
.schedule-table td {
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    text-align: center;
}

.schedule-table thead {
    background-color: #0077cc;
    color: white;
}

.schedule-table tbody tr:nth-child(even) {
    background-color: #f1f7fd;
}

.schedule-table tbody tr:hover {
    background-color: #e0f0ff;
}

/* Form Kontak */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    width: 100%;
}

.contact-form input[type="submit"] {
    width: 150px;
    background-color: #0077cc;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

.contact-form input[type="submit"]:hover {
    background-color: #005b96;
}
