
body {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background-color: #1a1a1a;
    scroll-behavior: smooth;
}


.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f8b400 !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #f8b400 !important;
    transform: scale(1.1);
}

/* ==================== NAVBAR TOGGLE CUSTOM ==================== */
.navbar-toggler {
    border: 2px solid #f8b400 !important; 
    border-radius: 5px;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
}

.navbar-toggler i {
    color: #f8b400; 
    font-size: 24px;
    transition: color 0.3s ease-in-out;
}

.navbar-toggler:hover {
    background-color: #f8b400; 
}

.navbar-toggler:hover i {
    color: #1a1a1a; 
}
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0; 
    }

    .navbar-brand {
        font-size: 1.2rem; 
    }

    .navbar-nav .nav-link {
        font-size: 0.9rem; 
        margin: 5px 10px; 
    }

    .navbar-toggler {
        padding: 3px 8px; 
        border-width: 1px;
    }

    .navbar-toggler i {
        font-size: 20px; 
    }
}


/* Home Section - Fullscreen 100vh */
/* ==================== HOME SECTION ==================== */
#home {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
   
    position: relative;
    padding: 50px 0;
}

#home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

#home .container {
    position: relative;
    z-index: 1;
}

#home h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8b400;
    animation: fadeInUp 1s ease-in-out;
}

#home p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease-in-out;
}

.btn-custom {
    background: linear-gradient(45deg, #f8b400, #d99a00);
    border: none;
    padding: 14px 30px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
    animation: fadeInUp 2s ease-in-out;
}

.btn-custom:hover {
    background: linear-gradient(45deg, #d99a00, #b38500);
    transform: scale(1.05);
}

/* ======= Gambar Home ======= */
#carouselExample .carousel-inner img {
    width: 180px !important;
    height: 180px !important;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.3);
}

/* ======= FEATURES DI TENGAH BAWAH HOME ======= */
.feature-card {
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    text-align: center;
}

.feature-card i {
    font-size: 40px;
    color: #f8b400;
    margin-bottom: 10px;
}

.feature-card h5 {
    color: #f8b400;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.9rem;
    color: #ddd;
    margin-top: 5px;
}

.feature-card:hover {
    transform: scale(1.05);
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
    #home {
        height: auto;
        padding: 100px 0;
        
    }

    #home h2 {
        font-size: 2rem;
    }

    #home p {
        font-size: 1rem;
    }

    .btn-custom {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Carousel Image */
    #carouselExample .carousel-inner img {
        width: 150px !important;
        height: 150px !important;
    }

    /* Features di Mobile */
    .feature-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .feature-card i {
        font-size: 30px;
    }

    .feature-card h5 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }
}

/* Catalog Section */
#katalog {
    background: #1a1a1a;
    padding: 60px 0;
}
#katalog h2 {
    font-weight: 700;
    color: #f8b400;
}
.card {
    background: #292929;
    border: none;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.03);
}

.card-title {
    font-weight: 600;
    color: #f8b400;
}

.product-description {
    font-size: 14px;
    color: #ddd;
}

/* Testimonials */

/* Testimonial Section */
#testimonial {
    background: linear-gradient(135deg, #1a1a1a 30%, #f8b400 100%);
    color: #fff;
    padding: 60px 0;
    position: relative;
}

/* Overlay untuk Efek Blur */
#testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 0;
}

#testimonial .container {
    position: relative;
    z-index: 1;
}

/* Gaya Judul */
#testimonial h2 {
    font-weight: 700;
    color: #f8b400;
    text-align: center;
}

/* Gaya Paragraf */
#testimonial p.lead {
    font-size: 18px;
    color: #ddd;
}

/* Gaya Kartu Testimonial */
.card {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Efek Hover pada Testimonial */
.card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.3);
}

/* Animasi Fade-in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#testimonial .card {
    animation: fadeInUp 1s ease-in-out;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    padding: 10px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #f8b400;
}

/* Responsiveness */
@media (max-width: 768px) {
    #testimonial .row {
        text-align: center;
    }
    #testimonial .col-md-5 {
        margin-bottom: 20px;
    }
}

/* Contact Section */
#contact {
    background: linear-gradient(to right, #f8b400, #d99a00);
    color: #fff;
    padding: 60px 0;
}

.white-card {
    background: #fff;
    color: #333;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
}

/* Social Media Icons */
.social-icon {
    font-size: 30px;
    transition: 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.2);
}

/* Footer */
footer {
    text-align: center;
    background: #1a1a1a;
    color: #f8b400;
    padding: 10px 0;
    margin-top: 20px;
}
/* Navbar Sticky */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-size: 35px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

/* ========== SECTION ABOUT ========== */
#about {
    background: linear-gradient(135deg, #1a1a1a 30%, #f8b400 100%);
    color: #fff;
    padding: 80px 0;
}

#about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffcc00;
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
    animation: fadeInUp 1.5s ease-in-out;
}

/* Gambar */
.about-img {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.3);
    animation: fadeInLeft 1s ease-in-out;
}

/* Kotak Keunggulan */
.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
    margin-bottom: 20px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.5);
}

.feature-box i {
    font-size: 40px;
    color: #ffcc00;
    margin-bottom: 10px;
}

.feature-box h5 {
    font-weight: 700;
    color: #ffcc00;
    font-size: 1.2rem;
}

/* Tombol */
.btn-custom {
    background: linear-gradient(45deg, #ffcc00, #d99a00);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

.btn-custom:hover {
    background: linear-gradient(45deg, #d99a00, #b38500);
    transform: scale(1.05);
}

/* ========== ANIMASI ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    #about {
        text-align: center;
    }

    .about-img {
        margin-bottom: 20px;
        max-width: 280px;
    }

    .about-text {
        font-size: 1rem;
    }

    .feature-box {
        padding: 15px;
    }

    .feature-box i {
        font-size: 30px;
    }

    .feature-box h5 {
        font-size: 1rem;
    }

    .btn-custom {
        padding: 10px 25px;
        font-size: 1rem;
    }
}


/* ==================== SECTION KONTAK ==================== */
#contact {
    background: #0f0f0f; /* Background gelap */
    color: #fff;
    padding: 80px 0;
}

#contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8b400; /* Kuning emas */
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

#contact p {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-in-out;
}

/* ==================== FORM KONTAK DARK MODE ==================== */
/* ==================== SECTION KONTAK ==================== */
#contact {
    background: #0f0f0f; /* Gelap */
    color: #fff;
    padding: 60px 0;
}

#contact h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f8b400; /* Kuning emas */
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

#contact p {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-in-out;
}

/* ==================== FORM KONTAK DARK MODE ==================== */
.contact-form {
    background: #111; /* Lebih gelap tapi tetap beda dengan section */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.05);
    animation: fadeInUp 1.5s ease-in-out;
    border: 1px solid rgba(255, 215, 0, 0.15);
    max-width: 600px; /* Lebih kecil biar gak terlalu besar */
    margin: 0 auto; /* Tengahin */
}

.contact-form label {
    font-weight: 600;
    color: #f8b400; /* Kuning emas */
    font-size: 0.95rem;
    margin-bottom: 5px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    background: #1a1a1a; /* Lebih pekat */
    border: 1px solid #222;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.3s ease-in-out;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #222;
    border-color: #f8b400;
    outline: none;
    color: #ffffff;
}

/* Tombol Kirim */
.contact-form button {
    background: #f8b400;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    color: #000;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    width: 100%;
    text-align: center;
    font-size: 1rem;
}

.contact-form button:hover {
    background: #d99a00;
    transform: scale(1.03);
}

/* ==================== SOCIAL MEDIA LINKS ==================== */
.social-media-links {
    text-align: center;
    animation: fadeInUp 1.8s ease-in-out;
}

.social-media-links h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f8b400;
}

/* ==================== SOCIAL MEDIA CARD COMPACT ==================== */
.social-media-links .card {
    background: #111; /* Sama dengan form */
    color: #fff;
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 2px 5px rgba(255, 215, 0, 0.1);
    max-width: 160px; /* Lebih kecil */
    margin: 10px auto;
}

.social-media-links .card:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.2);
}

.social-icon {
    font-size: 30px;
    margin-bottom: 5px;
}

/* ==================== ANIMASI ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    #contact h2 {
        font-size: 1.8rem;
    }

    #contact p {
        font-size: 1rem;
    }

    .contact-form {
        padding: 20px;
        max-width: 90%;
    }

    .social-media-links h5 {
        font-size: 1rem;
    }

    .social-icon {
        font-size: 28px;
    }

    .social-media-links .card {
        max-width: 140px;
        padding: 12px;
    }
} 
