/* CSS Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Konstanta Palet Warna sesuai Foto */
:root {
    --terracotta-dark: #913d26;
    --terracotta-main: #b65337;
    --beige-gold: #c3a26f;
    --dark-brown: #53433a;
    --light-bg: #faf7f5;
}

/* Header / Navigasi */
header {
    background-color: var(--terracotta-dark);
    padding: 1px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
	height: 9vh;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    width: 35%;
	margin-top: 12px;
}

.nav-links.right {
    justify-content: flex-end;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
    font-weight: 500;
}

.logo-container {
    width: 30%;
    text-align: center;
    margin-top: 16px;
}

.logo-container a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid #ffffff;
    border-radius: 50%;
    display: inline-block;
    position: 50px 20px;
}

.logo-icon::before {
    content: "Z";
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: sans-serif;
}

/* Bagian 1: Beranda (Hero Section) */
.hero-section {
    position: relative;
    height: 100vh;
    width: 200vh;
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.35)), url('BERANDA.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.hero-content {
    color: #ffffff;
    max-width: 600px;
}

.hero-tagline {
    font-family: "Lato Light";
    font-size: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 0px;
    opacity: 0.9;
    margin-top: 400px;
}

.hero-title {
    font-family: "Lato Semibold", "Cormorant Semi";
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 10px;
    font-weight: 400;
}

.hero-title span {
    display: block;
}

.hero-title em {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

/* Bagian 2: Tentang Kami */
.about-section {
    background-color: #ffffff;
}

.about-image-banner {
    height: 450px;
    background: url('TENTANG KAMI.jpg') no-repeat center center/cover;
}

.about-text-block {
    background-color: var(--terracotta-main);
    color: #ffffff;
    padding: 80px 10%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
}

@media (max-width: 768px) {
    .about-text-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-left p {
    font-family: "Lato";
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
    text-align: justify;
}

.about-founder {
    font-size: 13px;
    font-style: italic;
    opacity: 0.8;
    margin-top: -20px;
}

.about-right h2 {
    font-family: "Cormorant Semi";
    font-size: 36px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
    margin-top: -20px;
}

.about-right p {
    font-family: "Lato";
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.95;
}

/* Bagian 3: Produk */
.products-section {
    background-color: #ffffff;
}

.products-image-banner {
    height: 600px;
    width: 200vh;
    background: url('PRODUK.jpg') no-repeat center center/cover;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img-wrapper {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f0f0f0;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 25px 20px;
    color: #ffffff;
    flex-grow: 1;
}

/* Variasi warna kartu sesuai Desain Foto 3 */
.card-beige { background-color: var(--beige-gold); }
.card-terracotta { background-color: var(--terracotta-main); }
.card-dark { background-color: var(--dark-brown); }

.product-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.product-desc {
    font-size: 11px;
    opacity: 0.75;
    margin-bottom: 15px;
    font-weight: 300;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
}

.out-of-stock-notice {
    text-align: center;
    margin-top: 50px;
    font-family: "Cormorant Semi";
    font-size: 18px;
    font-style: italic;
	color: #6d513c;
    text-decoration: none;
}
.out-of-stock-notice a {
    color: #6d513c;
    text-decoration: none;

}
/* Bagian 4: Kontak & Footer */
.contact-section {
    background-color: #ffffff;
}

.contact-image-banner {
    height: 900px;
    background: url('KONTAK.jpg') no-repeat center center/cover;
}

.contact-footer-block {
    background-color: var(--terracotta-main);
    color: #ffffff;
    padding: 60px 10% 40px 10%;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 300;
}

.info-item svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.store-location-title {
    font-family: "Lato";
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.store-name {
    font-family: "Lato Semibold";
    font-style: italic;
    font-size: 20px;
    margin-bottom: 5px;
}

.store-address {
    font-size: 13px;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.5;
}

/* Google Maps Container */
.map-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 350px;
    background-color: #e5e3df;
    border: 5px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    background-color: var(--terracotta-dark);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 25px 20px;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.8px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}