/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background: url('https://via.placeholder.com/1500x800.png?text=Merpati+Terbang') no-repeat center center/cover;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.coming-soon-container {
    z-index: 1;
    color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
}

.content h1.logo {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #148BDB;
}

.content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timer-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.timer-box span {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e67e22;
    display: block;
}

.timer-box p {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.follow-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.social-links a img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
}

.social-links a img:hover {
    transform: scale(1.1);
}

/* Di file style.css Anda */

.logo-image {
    max-width: 150px; /* Sesuaikan ukuran logo sesuai kebutuhan */
    height: auto;
    margin-bottom: 20px; /* Memberikan sedikit jarak antara logo dan judul */
}

/* Responsive Design */
@media (max-width: 768px) {
    .content h1.logo {
        font-size: 2.5rem;
    }
    .content h2 {
        font-size: 1.5rem;
    }
    .countdown-timer {
        gap: 1rem;
    }
    .timer-box {
        width: 80px;
        padding: 1rem;
    }
    .timer-box span {
        font-size: 2rem;
    }
}