/* General Styling */
body {
    font-family: 'Quicksand', sans-serif; /* Menggunakan Quicksand sesuai keinginan Anda */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

header {
    height: calc(100vh - 120px);
    display: flex; /* Use flexbox for vertical centering */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    flex-direction: column; /* Stack items vertically */
}

.mt-5 {
    margin-top: 2.5rem;
}

/* Header/Hero Section */
.hero {
    background-color: #4CAF50; /* Green background from logo */
    color: #fff;
    text-align: center;
    padding: 80px 20px 40px; /* Adjust padding to accommodate footer inside */
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
    padding-bottom: 80px; /* Space for the footer */
    box-sizing: border-box; /* Include padding in width calculation */
}

.hero .logo {
    width: 180px; /* Slightly larger logo */
    height: auto;
    /*margin-bottom: 25px;*/
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.hero h1 {
    font-size: 4em; /* Larger main title */
    /*margin-bottom: 10px;*/
    padding: 0px;
    margin: 0px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Subtle text shadow */
}

.tagline {
    font-size: 1.5em; /* Prominent tagline */
    font-weight: 500;
    padding: 0px;
    margin: 0px 0px 20px 0px;
    /*margin-bottom: 20px;*/
    opacity: 0.9;
}

.coming-soon-text {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Countdown Styling */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    min-width: 100px; /* Ensures consistent size */
}

.countdown-item span {
    display: block;
    font-size: 3.5em;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.countdown-item label {
    font-size: 1.1em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    text-transform: uppercase;
}

/* Button Styling */
.btn {
    display: inline-block;
    background: #fff;
    color: #4CAF50;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer; /* Indicate it's clickable */
    font-size: 1.1em;
}

.btn:hover:not(.disabled-btn) { /* Only hover if not disabled */
    background: #e0e0e0;
    color: #388e3c;
    transform: translateY(-3px);
}

.disabled-btn {
    opacity: 0.7;
    cursor: not-allowed;
    background: #cccccc; /* Greyed out background */
    color: #666666; /* Greyed out text */
    box-shadow: none;
}

/* Footer within Hero (mt-5 adjustment) */
.footer-hero {
    position: absolute; /* Position relative to .hero */
    bottom: 20px; /* Distance from bottom */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    width: 100%;
    max-width: 800px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.7);
}

.footer-hero p {
    margin: 5px 0;
}

.footer-hero b {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 15px 40px;
    }
    .hero h1 {
        font-size: 3em;
    }
    .tagline {
        font-size: 1.3em;
    }
    .coming-soon-text {
        font-size: 1.1em;
    }
    .countdown-item {
        padding: 15px 20px;
        min-width: 80px;
    }
    .countdown-item span {
        font-size: 2.5em;
    }
    .countdown-item label {
        font-size: 0.9em;
    }
    .btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .footer-hero {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2em;
    }
    .tagline {
        font-size: 1.1em;
    }
    .hero .logo {
        width: 120px;
    }
    .countdown-item {
        padding: 10px 15px;
        min-width: unset; /* Allow items to shrink more */
        flex-basis: 45%; /* Two items per row */
    }
    .countdown-item span {
        font-size: 2em;
    }
    .countdown-item label {
        font-size: 0.8em;
    }
    .countdown-container {
        gap: 10px;
    }
}