/* assets/css/landing.css
   Landing page pemasaran untuk memorable.id (index.php root).
   Palet warna sengaja disamakan dengan tema "Formal" (deep green + gold + cream)
   supaya landing page terasa "serasi" dengan kualitas undangan yang dijual. */

:root {
    --lp-accent: #0b4a2f;       /* deep green - sama dgn template-formal.css */
    --lp-accent-soft: #b8952f;  /* gold */
    --lp-bg: #fbf9f3;           /* cream */
    --lp-bg-alt: #f4efe2;
    --lp-text: #2b2b2b;
    --lp-text-muted: #6b6558;
    --lp-line: #ddd3b8;
    --lp-white: #ffffff;
    --lp-font-heading: 'EB Garamond', 'Georgia', serif;
    --lp-font-script: 'Tangerine', cursive;
    --lp-font-body: 'Poppins', 'Segoe UI', sans-serif;
}

.lp-body {
    margin: 0;
    font-family: var(--lp-font-body);
    color: var(--lp-text);
    background: var(--lp-bg);
    line-height: 1.6;
}

.lp-body * { box-sizing: border-box; }

.lp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Navbar ---------- */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 249, 243, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--lp-line);
}
.lp-nav .lp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}
.lp-brand {
    font-family: var(--lp-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--lp-accent);
    text-decoration: none;
    letter-spacing: 0.5px;
}
.lp-brand span { color: var(--lp-accent-soft); }
.lp-nav-links { display: flex; gap: 22px; align-items: center; }
.lp-nav-links a {
    color: var(--lp-text);
    text-decoration: none;
    font-size: 0.92rem;
}
.lp-nav-links a:hover { color: var(--lp-accent); }
.lp-nav-cta {
    background: var(--lp-accent);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.88rem !important;
}
.lp-nav-cta:hover { background: #093b25; color: #fff !important; }

/* ---------- Hero ---------- */
.lp-hero {
    background: linear-gradient(160deg, var(--lp-accent) 0%, #093a25 60%, #082f1e 100%);
    color: #f6f3e9;
    padding: 90px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.lp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(184,149,47,0.18), transparent 40%),
                       radial-gradient(circle at 85% 75%, rgba(184,149,47,0.15), transparent 45%);
    pointer-events: none;
}
.lp-hero-script {
    font-family: var(--lp-font-script);
    font-size: 2.6rem;
    color: var(--lp-accent-soft);
    display: block;
    margin-bottom: 4px;
    position: relative;
}
.lp-hero h1 {
    font-family: var(--lp-font-heading);
    font-size: 3rem;
    margin: 0 0 18px;
    font-weight: 600;
    position: relative;
}
.lp-hero p.lp-tagline {
    max-width: 620px;
    margin: 0 auto 34px;
    font-size: 1.08rem;
    color: #e7e2d2;
    position: relative;
}
.lp-hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn-primary {
    background: var(--lp-accent-soft);
    color: #2b2000;
    box-shadow: 0 8px 20px rgba(184,149,47,0.35);
}
.lp-btn-outline {
    background: transparent;
    color: #f6f3e9;
    border: 1px solid rgba(246,243,233,0.5);
}
.lp-btn-outline:hover { background: rgba(246,243,233,0.08); color: #f6f3e9; }

/* ---------- Section heading ---------- */
.lp-section { padding: 84px 0; }
.lp-section-alt { background: var(--lp-bg-alt); }
.lp-eyebrow {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    color: var(--lp-accent-soft);
    font-weight: 600;
    margin-bottom: 8px;
}
.lp-section h2 {
    font-family: var(--lp-font-heading);
    text-align: center;
    font-size: 2.1rem;
    color: var(--lp-accent);
    margin: 0 0 14px;
}
.lp-section-sub {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
    color: var(--lp-text-muted);
    font-size: 0.98rem;
}

/* ---------- Fitur grid ---------- */
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}
.lp-feature-card {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 14px;
    padding: 30px 24px;
    text-align: left;
    transition: box-shadow .15s ease, transform .15s ease;
}
.lp-feature-card:hover {
    box-shadow: 0 12px 28px rgba(11,74,47,0.08);
    transform: translateY(-3px);
}
.lp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(11,74,47,0.08);
    color: var(--lp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 16px;
}
.lp-feature-card h3 {
    font-family: var(--lp-font-heading);
    font-size: 1.15rem;
    margin: 0 0 8px;
    color: var(--lp-text);
}
.lp-feature-card p {
    font-size: 0.9rem;
    color: var(--lp-text-muted);
    margin: 0;
}

/* ---------- Galeri Template (mockup CSS-only) ---------- */
.lp-template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.lp-template-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--lp-line);
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}
.lp-mockup {
    height: 190px;
    position: relative;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.lp-mockup .lp-mockup-dot {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.lp-mockup .lp-mockup-name {
    font-family: var(--lp-font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.lp-mockup .lp-mockup-line {
    height: 6px;
    border-radius: 4px;
    width: 60%;
    opacity: 0.55;
}
.lp-template-label {
    padding: 16px 18px 20px;
}
.lp-template-label strong {
    display: block;
    font-family: var(--lp-font-heading);
    font-size: 1.05rem;
    color: var(--lp-text);
}
.lp-template-label span {
    font-size: 0.83rem;
    color: var(--lp-text-muted);
}

/* Mockup varian per tema */
.lp-mockup-klasik { background: linear-gradient(160deg, #fdfaf6, #efe3d1); }
.lp-mockup-klasik .lp-mockup-dot { background: #a9825f; }
.lp-mockup-klasik .lp-mockup-name { color: #3a332c; }
.lp-mockup-klasik .lp-mockup-line { background: #a9825f; }

.lp-mockup-modern { background: linear-gradient(160deg, #ffffff, #e5e7eb); }
.lp-mockup-modern .lp-mockup-dot { background: #1f2937; }
.lp-mockup-modern .lp-mockup-name { color: #111827; }
.lp-mockup-modern .lp-mockup-line { background: #1f2937; }

.lp-mockup-islami { background: linear-gradient(160deg, #fbf9f4, #dcece2); }
.lp-mockup-islami .lp-mockup-dot { background: #0f5132; }
.lp-mockup-islami .lp-mockup-name { color: #2b2b2b; }
.lp-mockup-islami .lp-mockup-line { background: #0f5132; }

.lp-mockup-formal { background: linear-gradient(160deg, #fbf9f3, #e3d6ad); }
.lp-mockup-formal .lp-mockup-dot { background: #b8952f; }
.lp-mockup-formal .lp-mockup-name { color: #0b4a2f; }
.lp-mockup-formal .lp-mockup-line { background: #b8952f; }

/* ---------- CTA band ---------- */
.lp-cta-band {
    background: var(--lp-accent);
    color: #f6f3e9;
    text-align: center;
    padding: 64px 24px;
    border-radius: 20px;
    margin: 0 24px;
}
.lp-cta-band h2 {
    color: #fff;
    font-family: var(--lp-font-heading);
    font-size: 1.8rem;
    margin: 0 0 10px;
}
.lp-cta-band p { color: #e7e2d2; margin: 0 0 26px; }

/* ---------- Footer ---------- */
.lp-footer {
    background: #082f1e;
    color: #cfc9b6;
    padding: 56px 0 28px;
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 36px;
}
.lp-footer-brand {
    font-family: var(--lp-font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
}
.lp-footer h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 14px;
}
.lp-footer ul { list-style: none; margin: 0; padding: 0; }
.lp-footer li { margin-bottom: 9px; font-size: 0.88rem; }
.lp-footer a { color: #cfc9b6; text-decoration: none; }
.lp-footer a:hover { color: var(--lp-accent-soft); }
.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: #93927f;
}
.lp-footer-bottom a { color: #93927f; }
.lp-footer-bottom a:hover { color: var(--lp-accent-soft); }

@media (max-width: 768px) {
    .lp-nav-links { display: none; }
    .lp-hero h1 { font-size: 2.2rem; }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-cta-band { margin: 0 12px; padding: 48px 20px; }
}
