/* === Lakoje.com — Coming Soon === */
/* Brand: rose gold + cream, Playfair Display headings, Plus Jakarta Sans body */

:root {
    --bg: #FAF8F5;
    --bg-card: #FFFFFF;
    --text: #2C2C2C;
    --text-muted: #7A7A7A;
    --text-soft: #A0978E;
    --accent: #B76E79;
    --accent-dark: #8E4F5A;
    --accent-soft: #E8C7CD;
    --gold: #C9A961;
    --border: #EFE9E1;
    --shadow: 0 10px 40px rgba(143, 84, 95, 0.08);
    --shadow-lg: 0 20px 60px rgba(143, 84, 95, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Soft background decoration */
.bg-decoration {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(232, 199, 205, 0.4), transparent 70%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(201, 169, 97, 0.15), transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 32px 24px 48px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* === Header === */
header {
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}
.brand .dot {
    color: var(--accent);
    font-weight: 800;
}

/* === Hero === */
main { flex: 1; }

.hero {
    text-align: center;
    padding: 60px 0 40px;
    animation: fadeUp 0.8s ease-out;
}

.badge {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 84px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--text);
}

.brand-accent {
    color: var(--accent);
    font-style: italic;
}

.subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 12px;
    line-height: 1.6;
}
.subtitle-sm {
    font-size: 15px;
    color: var(--text-soft);
    margin-bottom: 40px;
}

/* === Signup form === */
.signup {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
    padding: 6px;
    background: var(--bg-card);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.signup input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
    background: transparent;
    border-radius: 12px;
}
.signup input::placeholder {
    color: var(--text-soft);
}

.signup button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.signup button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(143, 84, 95, 0.3);
}
.signup button:disabled {
    background: var(--text-soft);
    cursor: not-allowed;
    transform: none;
}

.form-note {
    margin-top: 16px;
    min-height: 22px;
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
}
.form-note.success { color: #2D7D3A; font-weight: 600; }
.form-note.error { color: #B92F3B; font-weight: 600; }

/* === Features grid === */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin: 60px 0 40px;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.feature {
    background: var(--bg-card);
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent-soft);
}

.feature .icon {
    font-size: 36px;
    margin-bottom: 8px;
    line-height: 1;
}
.feature .title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.feature .desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* === For venues CTA === */
.for-venues {
    background: linear-gradient(135deg, rgba(183, 110, 121, 0.06), rgba(201, 169, 97, 0.08));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    margin: 20px 0 40px;
    animation: fadeUp 0.8s ease-out 0.4s both;
}

.for-venues h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.for-venues p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 16px;
}
.for-venues p strong {
    color: var(--accent);
    font-weight: 700;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--accent);
    color: var(--accent);
    background: var(--bg-card);
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-outline:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(143, 84, 95, 0.25);
}

/* === Footer === */
footer {
    text-align: center;
    padding: 32px 0 8px;
    color: var(--text-soft);
    font-size: 13px;
    border-top: 1px solid var(--border);
    margin-top: 24px;
}
footer .region {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 8px;
}
footer a {
    color: var(--accent);
    text-decoration: none;
}
footer a:hover { text-decoration: underline; }

/* === Animations === */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Mobile === */
@media (max-width: 600px) {
    .container { padding: 20px 16px 32px; }
    header { padding: 12px 0; }
    .brand { font-size: 24px; }
    .hero { padding: 32px 0 24px; }
    .signup { flex-direction: column; padding: 8px; }
    .signup input { padding: 14px 16px; }
    .signup button { width: 100%; padding: 14px; }
    .features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .feature { padding: 18px 12px; }
    .feature .icon { font-size: 30px; }
    .for-venues { padding: 32px 18px; margin: 20px 0 32px; }
}

@media (max-width: 400px) {
    .features { grid-template-columns: 1fr 1fr; }
}
