/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Oswald:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

/* Variabel Warna */
:root {
    --bg-color: #e4e4e4;
    --primary-color: #18008f; /* Warna utama (Biru Tua) */
    --accent-color: #D25400; /* Warna aksen (Oranye) */
    --text-light: #161616;
    
    /* Font Standardisasi */
    --font-header: 'Playfair Display', sans-serif; /* Font paper needed */
    --font-menu: 'Poppins', sans-serif; /* Font paper needed */
    --font-slogan: 'Gulfs Display', sans-serif; /* Font content needed (diganti Poppins untuk web) */
    --font-body: 'Poppins', sans-serif; /* Font content needed (diganti Poppins untuk web) */
}

/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--primary-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-header);
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-color);
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    padding-top: 50px;
    text-transform: uppercase;
}

.accent-color {
    color: var(--accent-color);
}

/* 1. HEADER */
.main-header {
    background-color: var(--bg-color);
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .logo {
    font-family: var(--font-header);
    font-size: 1.8em;
    font-weight: 700;
}

.nav-menu a {
    margin-left: 25px;
    font-family: var(--font-menu);
    font-weight: 600;
}

.cart-icon {
    font-weight: 600;
    padding: 8px 15px;
    transition: all 0.3s;
}

.cart-icon:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

/* 2. HERO SECTION */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 300px 4%;
    background: linear-gradient(to right, #ffffff, #f9f9f9);
}

.hero-left, .hero-right {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.hero-left {
    text-align: center;
}

.hero-logo {
    max-width: 80%;
    height: auto;
    border-radius: 50%; /* Efek melingkar jika logonya kotak */
    box-shadow: 0 0 30px rgba(16, 33, 74, 0.1);
}

.hero-right h1 {
    font-size: 3.5em;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif; /* Menggunakan Oswald untuk Header/Slogan */
}

.hero-right p {
    font-size: 1.2em;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #a84200; /* Warna aksen lebih gelap */
}

/* 3. SECTION 2: PRODUCT */
.product-section {
    padding: 50px 5%;
    background-color: #f7f7f7;
}

.product-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    gap: 40px;
}

.product-item.reversed {
    flex-direction: row-reverse;
}

.product-left, .product-right {
    flex: 1;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-right h3 {
    font-size: 2em;
    margin-bottom: 10px;
}

.product-right p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* 4. SECTION 3: GALLERY (Carousel) */
.gallery-section {
    padding: 50px 5%;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: calc(100% / 3); /* Menampilkan 3 foto per tampilan */
    height: 350px; 
    object-fit: cover;
    padding: 5px;
}

.carousel-button {
    position: absolute;
    top: calc(50% + 25px); /* Sesuaikan dengan tinggi h2 + margin */
    transform: translateY(-50%);
    background: rgba(16, 33, 74, 0.7);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 50;
    font-size: 1.5em;
}

.carousel-button.prev { left: 5%; }
.carousel-button.next { right: 5%; }

.gallery-explanation {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
    font-style: italic;
    font-size: 1.1em;
    color: var(--text-light);
}

/* 5. SECTION 4: TESTIMONI */
.testimoni-section {
    padding: 50px 5%;
    background-color: #fff8f5; /* Background sedikit berbeda */
}

.testimoni-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimoni-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    flex: 1;
}

.testi-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--accent-color);
}

.testi-quote {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.testi-name {
    font-weight: 600;
    color: var(--accent-color);
}

/* 6. SECTION 5: MY TEAM */
.team-section {
    padding: 50px 5%;
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team-member {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    flex-basis: 150px; /* Lebar standar anggota */
}

.team-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.member-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.member-role {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9em;
}

/* 7. FOOTER */
.main-footer {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 40px 5% 10px;
}

.footer-cta {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta h3 {
    color: var(--bg-color);
    margin-bottom: 15px;
}

.order-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1em;
    text-transform: uppercase;
}

.footer-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-details h4 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.footer-details p {
    font-size: 0.9em;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social a {
    color: var(--bg-color);
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--accent-color);
}

.footer-copyright {
    text-align: center;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 10px;
}

/* MEDIA QUERIES for Mobile Responsiveness */
@media (max-width: 768px) {
    .main-header {
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-menu {
        margin-top: 10px;
        order: 3;
        flex-basis: 100%;
        text-align: center;
    }
    .nav-menu a {
        margin: 0 10px;
    }
    .header-actions {
        order: 2;
    }

    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-left {
        margin-top: 40px;
    }
    .hero-right h1 {
        font-size: 2.5em;
    }
    
    .product-item {
        flex-direction: column;
    }
    .product-item.reversed {
        flex-direction: column;
    }

    .carousel-item {
        min-width: 100%; /* Hanya menampilkan 1 foto per tampilan di mobile */
    }

    .testimoni-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .team-list {
        gap: 10px;
    }
    .team-member {
        flex-basis: 100px;
        padding: 10px;
    }

    .footer-details {
        flex-direction: column;
        text-align: center;
    }
    .footer-social {
        order: -1;
    }
}