/* Mengimpor CSS utama */
@import url('style.css');

/* Hero Section Contact */
.hero-contact {
    background-image: url('IMG/utama.jpg'); /* Tambahkan gambar latar belakang */
    background-size: cover; /* Agar gambar menyesuaikan ukuran area */
    background-position: center; /* Agar gambar terpusat di tengah */
    color: white;
    height: 80vh; /* Mengatur tinggi hero section */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}


.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Contact Form Section */
.contact-form {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.contact-form h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-form p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form .submit-button {
    background-color: #0071e3;
    padding: 12px 24px;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form .submit-button:hover {
    background-color: #005bb5;
}

/* Contact Information Section */
.contact-info {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

/* Container untuk footer */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Bagian Links Footer */
.footer-links {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

/* Bagian Social Media */
.social-media {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

/* Bagian Informasi Tambahan */
.footer-info {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000; /* Latar belakang hitam */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Pastikan loading screen berada di atas konten lainnya */
}

/* Logo yang akan kedap-kedip */
.loading-logo {
    width: 350px; /* Ukuran logo */
    animation: blink 1s infinite; /* Kedap-kedip setiap 1 detik */
}

/* Efek Kedap-Kedip untuk logo */
@keyframes blink {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(1.1); /* Sedikit lebih besar saat redup */
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
