/* Background untuk navbar */
nav.navbar-light {
    background-image: linear-gradient(180deg, #00000054 50%, #FFFFFF00 100%);
}

nav.navbar-dark {
    background-image: linear-gradient(180deg, #0000004f 50%, #ffffff00 100%);
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    margin-top: 160px;
    margin-bottom: 160px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
    color: #343a40;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    padding: 10px;
    width: 300px;
    max-width: 100%;
    gap: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 1.5em;
    color: #007bff;
}

.info-link {
    font-size: 1em;
    color: #495057;
    text-decoration: none;
}

.info-link:hover {
    text-decoration: underline;
}

.info-description {
    font-size: 0.9em;
    color: #6c757d;
    margin-top: 5px;
}

p {
    margin-bottom: 30px;
    font-size: 1.2em;
    color: #495057;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid;
    border-radius: 5px;
    padding: 10px;
    width: 200px;
    max-width: 100%;
    height: auto;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.3s;
}

.icon-wrapper.instagram {
    border-color: #c13584;
}

.icon-wrapper.facebook {
    border-color: #3b5998;
}

.icon-wrapper.whatsapp {
    border-color: #128c7e;
}

.icon-wrapper.email {
    border-color: #c8102e;
}

.icon-wrapper i {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.social-name {
    font-size: 1.2em;
    color: #495057;
}

.social-description {
    font-size: 0.9em;
    color: #6c757d;
    margin-top: 5px;
}

.icon-wrapper:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.icon-wrapper.instagram:hover {
    background-color: #c13584;
    color: #fff;
}

.icon-wrapper.facebook:hover {
    background-color: #3b5998;
    color: #fff;
}

.icon-wrapper.whatsapp:hover {
    background-color: #128c7e;
    color: #fff;
}

.icon-wrapper.email:hover {
    background-color: #c8102e;
    color: #fff;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .contact-container {
        margin-top: 70px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .social-icons {
        flex-direction: column;
        align-items: center;
    }

    .icon-wrapper {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .icon-wrapper i {
        font-size: 1.2em;
    }

    .social-name, .social-description {
        font-size: 1em;
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .info-item {
        padding: 8px;
    }

    .info-item i {
        font-size: 1.2em;
    }
}
