/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

body {
    /* Pastikan path gambar benar */
    background: url('background.avif') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

/* Overlay Gelap */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Container Utama menggunakan Flexbox */
.main-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Memastikan tinggi minimal selayar penuh */
    text-align: center;
    padding: 0 20px;
}

/* Header/Logo */
header {
    padding-top: 50px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span { color: #3498db; }

/* Konten Tengah (Hero) */
.hero {
    flex: 1; /* Ini yang mendorong footer ke bawah */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Ukuran font adaptif */
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contact-link-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95); /* Putih bersih sedikit transparan */
    padding: 6px 6px 6px 25px;
    border-radius: 50px;
    text-decoration: none;
    width: 100%;
    max-width: 500px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

#display-text {
    color: #444;
    font-size: 0.95rem;
    font-weight: 400;
}

.fake-button {
    background: #3498db;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

/* Efek Hover */
.contact-link-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: #ffffff;
}

.contact-link-box:hover .fake-button {
    background: #2980b9;
}

/* Perbaikan untuk Mobile */
@media (max-width: 500px) {
    .contact-link-box {
        padding: 10px;
        flex-direction: column;
        border-radius: 15px;
        gap: 15px;
    }
    
    #display-text {
        padding: 10px 0 5px 0;
    }
    
    .fake-button {
        width: 100%;
        text-align: center;
    }
}
/* Form */
.subscribe-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.subscribe-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    outline: none;
}

.subscribe-form button {
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    background-color: #3498db;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

/* Footer (Pasti di Bawah) */
footer {
    padding: 30px 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
    .subscribe-form {
        flex-direction: column;
    }
}