/* style.css - Nuansa soft coklat ke cream dan putih */
:root {
    --primary-brown: #8B6914;
    --light-brown: #D4B895;
    --cream: #FFF8E7;
    --white: #FFFFFF;
    --dark-brown: #5C4033;
    --soft-brown: #C4A882;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, #F5EDE0 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

/* Logo Section */
.logo-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.6s ease;
}

.logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-brown), var(--soft-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: var(--shadow);
}

.logo i {
    font-size: 40px;
    color: var(--white);
}

.logo-text {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-brown);
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 14px;
    color: var(--primary-brown);
    margin-top: 5px;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 105, 20, 0.1);
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--cream);
    border-color: var(--light-brown);
}

.link-button i {
    font-size: 22px;
    width: 30px;
    color: var(--primary-brown);
}

.link-button span {
    flex: 1;
    text-align: center;
}

/* Footer Section */
.footer {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 105, 20, 0.1);
}

.contact-info {
    margin-bottom: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--dark-brown);
    font-size: 14px;
}

.contact-item i {
    color: var(--primary-brown);
    width: 20px;
}

.address {
    margin: 10px 0;
    color: var(--dark-brown);
    font-size: 14px;
    line-height: 1.5;
}

.maps-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    color: var(--primary-brown);
    font-size: 13px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.maps-link:hover {
    background: var(--light-brown);
    color: var(--white);
}

.copyright {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(139, 105, 20, 0.1);
    font-size: 12px;
    color: #999;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-button {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.link-button:nth-child(1) { animation-delay: 0.1s; }
.link-button:nth-child(2) { animation-delay: 0.2s; }
.link-button:nth-child(3) { animation-delay: 0.3s; }
.link-button:nth-child(4) { animation-delay: 0.4s; }
.link-button:nth-child(5) { animation-delay: 0.5s; }

/* Responsive */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .link-button {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .link-button i {
        font-size: 18px;
    }
}