@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@400;500;600&display=swap');

/* =====================
   RESET & BASE
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #5c4b37;
    background-color: #fefbf6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =====================
   HEADER
===================== */
header {
    background: #f8f4e9;
    padding: 1rem 0;
    border-bottom: 1px solid #e8dfca;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #8b7355;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #5c4b37;
    font-weight: 500;
}
/* =====================
   HEADER FULL WIDTH FIX (FINAL)
===================== */
header nav.container {
    max-width: none;        /* ❗ buang batas tengah */
    width: 100%;
    padding-left: 70px;     /* logo makin ke kiri */
    padding-right: 70px;    /* menu makin ke kanan */
}
/* =====================
   HERO BACKDROP (FINAL FIX)
===================== */
.hero {
    width: 100%;
    height: 100vh; /* FULL 1 LAYAR */
    background-color: #f8f4e9;
    background-image: url('/limcycake_balikpapan/assets/images/bghomepagee.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* BUTTON DI BAWAH BACKDROP */
.hero-cta {
    text-align: center;
    margin: 3rem 0 4rem;
}

/* =====================
   BUTTON
===================== */
.btn-primary {
    background: #a9926d;
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #8b7355;
}

/* =====================
   FEATURES
===================== */
.features {
    margin: 4rem 0;
    text-align: center;
}

.features h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8b7355;
    margin-bottom: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #f8f4e9;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e8dfca;
    text-align: center;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.6rem;
    color: #8b7355;
}

.feature-card p {
    font-size: 0.95rem;
    color: #7a6852;
}

/* =====================
   FOOTER (JANGAN DIUBAH)
===================== */
footer {
    background: #8b7355;
    color: #f8f4e9;
    margin-top: 4rem;
    padding: 3rem 0 1.5rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #fff;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.4rem;
    color: #f1e6d8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 2.5rem;
    padding-top: 1.2rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        background-size: cover;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* =========================
   CART TITLE (KERANJANG)
   ========================= */
.cart-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    color: #8b7355;
    margin: 1.5rem 0 0.5rem;
}
.contact-header {
    text-align: center;
    margin: 40px auto 30px;
    max-width: 700px;
}

.contact-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #6b4f2d; /* samain tone LimcyCake */
}

.contact-header p {
    margin-top: 8px;
    font-size: 1rem;
    color: #8a7a60;
}
.contact-title {
    font-family: 'Playfair Display', serif; /* SAMA KAYAK KERANJANG */
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #8b6a44;
    text-align: center;
}
/* HEADER PRODUK */
.produk-header {
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.produk-header h1 {
    font-family: 'Playfair Display', serif; /* SAMA KAYAK KERANJANG */
    font-weight: 600;
    font-size: 2.2rem;
    color: #8b7355;
    margin-bottom: 0.3rem;
}

.produk-header p {
    font-family: 'Poppins', sans-serif;
    color: #7a6852;
    font-size: 0.95rem;
}
/* ============================= */
/* BACKGROUND CUSTOMER PAGE */
/* ============================= */
body.inner-page {
    background:
        linear-gradient(
            rgba(248, 244, 233, 0.35),
            rgba(248, 244, 233, 0.35)
        ),
        url("/limcycake_balikpapan/assets/images/bgcustsuperfix.jpeg") no-repeat center center;

    background-size: cover;
    min-height: 100vh;
}


