:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --accent-red: #d90429;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Animasi Fade In */
.reveal {
    animation: fadeIn 1.8s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Layout Container */
.main-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 80px;
}

.logo-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.main-logo {
    width: 20em; /* Sesuaikan ukuran logo cube */
}

.brand-text {
    text-align: left;
    position: relative;
}

.brand-text h1 {
    font-size: 3rem;
    line-height: 0.85;
    font-weight: 700;
    letter-spacing: -1px;
}

.script-text {
    font-family: 'Dancing Script', crossorigin;
    color: var(--accent-red);
    font-size: 1.8rem;
    position: absolute;
    bottom: -15px;
    right: -10px;
}

/* Headline Styling */
.headline h2 {
    font-family: 'Crimson Pro', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

/* Address Styling */
.address {
    font-size: 0.95rem;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Footer & Social Media */
.footer-contact {
    width: 100%;
    max-width: 1100px;
}

.footer-line {
    width: 100%;
    height: 1.5px;
    background-color: #ffffff;
    margin-bottom: 30px;
}

.contact-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-box img {
    width: 28px;
    transition: transform 0.3s ease;
}

.contact-box:hover img {
    transform: scale(1.2);
}

.wa-numbers {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Responsive Tablet & HP */
@media (max-width: 768px) {
    .headline h2 {
        font-size: 1.8rem;
    }
    
    .logo-flex {
        flex-direction: column;
    }
    
    .brand-text {
        text-align: center;
    }

    .contact-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-box {
        width: 100%;
        justify-content: center;
    }
}