
.about {
    padding: 10px 20px;
    text-align: center;
    background: linear-gradient(to right, #000000e8, #2c3e50, #000000);
    color: #ffffff;
}

.about-title h1 {
    font-size: 36px;
    color: #ffffff;
    background-color: #ff8d58;
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 3s ease;
}

.about-title p {
    font-size: 18px;
    color: #ffffff;

}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
    margin-top: 30px;
}

.gallery-container:hover {
    cursor: pointer;
}

.gallery-item {
    width: 250px;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    transform: scale(0.9);
    transition: transform 3s ease, box-shadow 3s ease;
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 115, 0, 0.7); /* Semi-transparent background */
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Zoom Animation on Text */
@keyframes zoomIn {
    0% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.gallery-item:hover .overlay {
    animation: zoomIn 0.4s ease forwards;
}

.about-title,
.gallery-container .gallery-item {
    animation: fadeInUp 3s ease both;
}

.gallery-container .gallery-item {
    animation-delay: 0.3s;
}

.map-teks {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin: 80px 0;
    flex-wrap: wrap;
    text-align: justify;
    justify-content: space-evenly;
    animation: fadeInUp 3s ease forwards;
}

.map iframe {
    width: 600px;
    height: 550px;
    border-radius: 20px;
    animation: fadeInUp 3s ease forwards;
    margin-top: 60px;
}

.teks-about {
    width: 600px;
}

.teks-about p {
    text-indent: 30px;
}

/* kontak kami ini yaaa */
.kontak-kami {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Agar vertikal tengah */
    padding: 40px 20px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 20px;
}

.kontak-title h1 {
    font-size: 36px;
    margin-bottom: 10px;
    background-color: #ff8d58;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    animation: fadeInDown 1s ease;
}

.kontak-title p {
    font-size: 18px;
    margin-bottom: 30px;
}

.kontak-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin-top: 30px;
    animation: scaleUp 0.8s ease forwards;
}

.kontak-form,
.kontak-info {
    width: 100%;
    max-width: 100%;
}

.kontak-form {
    background-color: #34495e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    animation: slideUp 1s ease forwards;
}

.kontak-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.kontak-form label {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.kontak-form input,
.kontak-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    outline: none;
    margin-bottom: 10px;
}

.kontak-form textarea {
    resize: none;
}

.kontak-form .btn-submit {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    background-color: #ff8d58;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.4s ease, transform 0.2s ease;
}

.kontak-form .btn-submit:hover {
    background-color: #ff6f30;
    transform: scale(1.05);
}

.kontak-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.kontak-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Animasi */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* toko online inii */
.kontak-links {
    margin-top: 40px;
    padding: 20px;
    background-color: #34495e;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 3s ease forwards;
}

.kontak-links h3 {
    font-size: 24px;
    color: #ff8d58;
    margin-bottom: 50px;
}

/* Toko Online List */
.online-stores {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    animation: fadeInUp 3s ease forwards;
}

.online-stores li {
    display: inline-block;
    position: relative;
    padding: 0; /* Hilangkan padding */
    border-radius: 0; /* Hilangkan radius */
    box-shadow: none; /* Hilangkan bayangan */
    animation: fadeInUp 0.4s ease forwards;
}

.online-stores li:hover {
    transform: translateY(-5px);
}

/* Link Utama */
.online-stores a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    gap: 10px;
}

/* Ikon */
.online-stores img {
    width: 48px; /* Ukuran ikon */
    height: 48px;
    transition: transform 0.3s ease;
}

.online-stores li:hover img {
    transform: scale(1.2); /* Membesar saat hover */
}

/* Dropdown Styles */
.dropdown {
    display: block;
    position: absolute;
    top: 10%; /* Posisikan lebih dekat ke ikon */
    left: 5%;
    transform: translateX(-50%);
    background-color: #34495e;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    list-style: none;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px); /* Kurangi jarak animasi */
    transition: all 0.3s ease;
    z-index: 10;
}

/* Dropdown Tampilkan Saat Hover */
.online-stores li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Jarak lebih pendek */
}

/* Dropdown Item */
.dropdown li {
    margin: 5px 0;
}

.dropdown li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dropdown li a:hover {
    background-color: #ff8d58;
    transform: scale(1.05);
    color: #fff;
}


/* icon whatsapp */
/* Floating Contact Container */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0; /* Mulai dengan opacity 0 */
    animation: fadeInUp 3s ease forwards;
    animation-delay: 2s; /* Menunggu 3 detik sebelum muncul */
}

/* Hubungi Icon */
.hubungi-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ff8d58, #ff6f30);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.hubungi-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Menu */
.contact-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    animation: fadeInUp 0.4s ease forwards;
}

.hidden {
    display: none;
}

/* Menu Items */
.menu-item {
    width: 60px;
    height: 60px;
    background-color: #34495e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #4caf50, #00c853);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* WhatsApp */
.menu-item.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Call */
.menu-item.call {
    background: linear-gradient(135deg, #3498db, #1d78c1);
}

/* Email */
.menu-item.email {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* Fade In Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    /* Gaya lebih spesifik untuk layar yang sangat kecil */
    .about-title h1 {
        font-size: 20px;
        border-radius: 20px;
        margin: 15px;
    }

    .map-teks {
        gap: 20px;
        margin: 10px 0;
    }

    .map iframe {
        width: 100%;
        height: 350px;
        border-radius: 20px;
        margin-top: 10px;
    }
}
