/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');

/* Reset dan General Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
    color: #000;
    background-color: #fff;
    line-height: 1.6;
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* |------------------------------------------------
| 1. VARIABEL WARNA
|------------------------------------------------
*/
:root {
    --green-dark: #004d40;
    --green-light: #4db6ac;
    --white: #fff;
    --black: #000;
    --grey-text: #666;
    --light-grey-bg: #F5F5F5;
}


/* |------------------------------------------------
| 2. HEADER
|------------------------------------------------
*/
.header {
    background-color: var(--white);
    color: var(--black);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--green-dark); }

.nav ul { list-style: none; display: flex; margin-left: 0; }
.nav li { margin-left: 30px; }
.nav a { font-weight: 500; font-size: 0.95rem; color: var(--black); transition: color 0.3s ease; }
.nav a:hover { color: var(--green-dark); }

.cta-button-header {
    background: linear-gradient(to right, var(--green-dark), var(--green-light));
    color: var(--white); padding: 10px 20px; border-radius: 5px; font-weight: 700; transition: opacity 0.3s ease;
    display: inline-block;
}
.cta-button-header:hover { opacity: 0.9; }


/* |------------------------------------------------
| 3. HERO SECTION
|------------------------------------------------
*/
.hero {
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    padding-left: 5%;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}
#bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); z-index: 1; }
.hero-content-wrapper { position: relative; z-index: 2; max-width: 450px; margin-left: 0; margin-right: auto; }
.hero-content { background: none; padding: 0; color: var(--white); }
.hero h2 { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; margin-bottom: 10px; color: var(--white); }
.hero p { font-size: 1.1rem; margin-bottom: 30px; color: var(--white); }
.cta-button {
    background: linear-gradient(to right, var(--green-dark), var(--green-light));
    color: var(--white); padding: 15px 30px; border-radius: 5px; font-weight: 700; transition: opacity 0.3s ease;
}
.cta-button:hover { opacity: 0.9; }


/* |------------------------------------------------
| 4. ABOUT SECTION
|------------------------------------------------
*/
.about {
    background-color: var(--white); padding-top: 50px; padding-bottom: 100px; text-align: center; position: relative;
}
.about-bg {
    background: linear-gradient(to right, var(--green-dark), var(--green-light));
    position: absolute; top: 0; left: 0; width: 100%; height: 75%; z-index: 0;
}
.about .container { position: relative; z-index: 1; }
.about-subtitle { font-size: 0.85rem; font-weight: 500; color: rgba(255, 255, 255, 0.8); margin-bottom: 5px; letter-spacing: 2px; }
.about h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 50px; font-weight: 700; color: var(--white); }
.features-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; padding-top: 30px; }
.feature-item {
    flex: 1 1 300px; max-width: 350px; background-color: var(--white); padding: 40px 30px; text-align: center; border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; flex-direction: column; justify-content: center;
    min-height: 350px;
}
.feature-item:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); }
.feature-title { font-family: 'Roboto', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; color: var(--black); letter-spacing: 1px; }
.feature-item p { font-size: 0.95rem; line-height: 1.6; color: var(--grey-text); margin-bottom: 10px; }


/* |------------------------------------------------
| 5. KOLEKSI SECTION
|------------------------------------------------
*/
.collection { background-color: var(--white); padding: 80px 0; text-align: center; }
.collection h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 50px; color: var(--black); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.product-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
.product-card img { border-radius: 5px 5px 0 0; width: 100%; height: 280px; object-fit: cover; }
.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 15px 15px 5px;
    color: var(--black);
    text-align: center;
    min-height: 40px;
}
.product-card p {
    color: var(--grey-text);
    margin-bottom: 15px;
    text-align: center;
}
.btn-product {
    background: linear-gradient(to right, var(--green-dark), var(--green-light));
    color: var(--white); padding: 10px 20px; border-radius: 5px; transition: opacity 0.3s ease; cursor: pointer;
    display: inline-block;
}
.btn-product:hover { opacity: 0.9; }

.all-collection-button {
    background: linear-gradient(to right, var(--green-dark), var(--green-light));
    color: var(--white); border: none; padding: 12px 30px; margin-top: 50px; display: inline-block; border-radius: 5px;
    font-weight: 700; transition: opacity 0.3s ease; text-transform: uppercase;
}
.all-collection-button:hover { opacity: 0.9; }


/* |------------------------------------------------
| 6. KONTAK DAN FOOTER [SUDAH DIREVISI]
|------------------------------------------------
*/
.contact { 
    background: linear-gradient(to right, var(--green-dark), var(--green-light)); 
    color: var(--white); 
    padding: 80px 0; 
    text-align: center; 
}

.contact h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.5rem; 
    margin-bottom: 30px; 
}

.contact-info p { margin-bottom: 10px; }

/* Container untuk Ikon */
.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px; /* Jarak lebih lega dari teks */
    gap: 30px; /* Jarak antar ikon agar tidak berdempet */
}

/* --- Styling Ikon Besar & Jelas --- */
.social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    
    /* Ukuran Lingkaran diperbesar */
    width: 70px; 
    height: 70px;
    
    background-color: rgba(255, 255, 255, 0.15); /* Transparan tapi jelas */
    border-radius: 50%;
    color: #ffffff; 
    
    /* Ukuran Ikon Font diperbesar */
    font-size: 32px;
    
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5); /* Border dipertebal sedikit */
}

.social-link:hover {
    background-color: #ffffff; /* Jadi putih solid saat hover */
    color: var(--green-dark);  /* Ikon jadi hijau saat hover agar kontras */
    transform: translateY(-5px) scale(1.1); /* Efek membesar */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer Style */
.footer {
    background: linear-gradient(to right, var(--green-dark), var(--green-light));
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* |------------------------------------------------
| 7. HALAMAN DETAIL PRODUK
|------------------------------------------------
*/
.breadcrumb { padding: 100px 0 30px; font-size: 0.9rem; color: var(--grey-text); }
.breadcrumb a { color: var(--green-dark); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

.product-detail-section { padding-bottom: 80px; }
.detail-grid { display: flex; gap: 50px; align-items: flex-start; }
.product-gallery { flex: 1; max-width: 50%; }
.product-info { flex: 1; max-width: 50%; padding-top: 20px; }
.main-image { width: 100%; height: auto; border-radius: 8px; margin-bottom: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.product-title { font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 5px; color: var(--black); line-height: 1.2; }
.product-price { font-size: 2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 25px; }
.product-description p { margin-bottom: 1.5rem; line-height: 1.7; }
.action-buttons { margin-top: 30px; }
.add-to-cart-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: linear-gradient(to right, var(--green-dark), var(--green-light));
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
    font-size: 1rem;
}
.add-to-cart-btn:hover { opacity: 0.9; }


/* |------------------------------------------------
| 8. HALAMAN SEMUA KOLEKSI
|------------------------------------------------
*/
.collection-header {
    background-color: var(--light-grey-bg);
    padding: 120px 0 60px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--black);
}
.collection-summary {
    font-size: 1.1rem;
    color: var(--grey-text);
    max-width: 800px;
    margin: 0 auto;
}
.all-products-grid-section {
    padding: 60px 0;
}


/* |------------------------------------------------
| 10. MAPS SECTION
|------------------------------------------------
*/
.location-map {
    padding: 80px 0;
    text-align: center;
}
.location-map h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.location-map p {
    color: var(--grey-text);
    margin-bottom: 40px;
}
.map-container {
    max-width: 600px; 
    margin: 0 auto; 
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 0;
}
.map-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; 
}


/* |------------------------------------------------
| 11. ACTIVITY SECTION
|------------------------------------------------
*/
.activity-section {
    background-color: var(--light-grey-bg);
    padding: 80px 0;
    text-align: center;
}
.activity-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.activity-section p {
    color: var(--grey-text);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.activity-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: block;
    height: 350px;
}
.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.activity-card:hover img {
    transform: scale(1.05);
}
.activity-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    color: var(--white);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    text-align: left;
}
.activity-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.activity-card:hover .activity-info h3 {
    transform: translateY(0);
}

/* Styling Halaman Detail Kegiatan */
.activity-detail {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}
.activity-detail h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.activity-meta {
    font-size: 0.9rem;
    color: var(--grey-text);
    margin-bottom: 30px;
}
.activity-main-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}
.activity-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}


/* |------------------------------------------------
| 13. TAMBAHAN: TESTIMONI SECTION
|------------------------------------------------
*/
.testimonials {
    background-color: var(--light-grey-bg);
    padding: 80px 0;
    text-align: center;
}
.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--black);
}
.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    max-width: 350px;
    text-align: left;
    position: relative;
}
.testimonial-text {
    font-style: italic;
    color: var(--grey-text);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.user-profile {
    display: flex;
    align-items: center;
}
.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    background-color: #ddd;
}
.user-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
}
.user-info span {
    font-size: 0.8rem;
    color: var(--green-dark);
}


/* |------------------------------------------------
| 14. TAMBAHAN: FLOATING WHATSAPP BUTTON
|------------------------------------------------
*/
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Warna resmi WA */
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2000;
    font-size: 2rem; 
    transition: transform 0.3s ease;
    text-decoration: none;
}
.floating-wa:hover {
    transform: scale(1.1);
    color: #fff;
}


/* |------------------------------------------------
| 15. RESPONSIVE / MEDIA QUERIES
|------------------------------------------------
*/
@media (max-width: 768px) {
    .header .container { flex-direction: column; text-align: center; }
    .nav { margin: 10px 0; }
    .nav ul { justify-content: center; flex-wrap: wrap; }
    .nav li { margin: 5px 10px; }
    .cta-button-header { margin-top: 10px; }
    
    .hero { padding-left: 20px; padding-right: 20px; text-align: center; justify-content: center; }
    .hero-content-wrapper { max-width: 90%; margin: 0 auto; }
    .hero h2 { font-size: 2.5rem; }
    
    .about-bg { height: auto; position: relative; padding: 50px 0; }
    .about h2, .about-subtitle { color: var(--white); }
    .features-grid { flex-direction: column; align-items: center; gap: 20px; padding-top: 0; margin-top: -80px; }
    
    .product-grid { grid-template-columns: 1fr; }
    
    .breadcrumb { padding-top: 100px; }
    .detail-grid { flex-direction: column; }
    .product-gallery, .product-info { max-width: 100%; width: 100%; }
    .product-title { font-size: 2rem; }

    .activity-grid { grid-template-columns: 1fr; }
    .activity-detail h1 { font-size: 2.2rem; }

    /* Fix tambahan untuk Floating WA di HP */
    .floating-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
}