/* Malá Tržnica — Landing Page */

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

:root {
    --brown: #3D1E0C;
    --brown-dark: #2A1407;
    --cream: #FFF8F0;
    --cream-dark: #F5E6D3;
    --orange: #E8862A;
    --orange-glow: rgba(232, 134, 42, 0.1);
}

body {
    font-family: 'Sora', sans-serif;
    background: var(--brown);
    color: var(--cream);
    min-height: 100vh;
    overflow: hidden;
}

.landing {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.landing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('pattern.png') repeat;
    opacity: 0.2;
    pointer-events: none;
}

/* Jemný dekoratívny kruh v pozadí */
.landing-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.landing-content {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
    max-width: 640px;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo */
.landing-logo {
    height: 180px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.3));
}

/* Nadpis */
.landing-title {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--cream);
    margin-bottom: 1.2rem;
}

.landing-soon {
    display: block;
    font-family: 'DynaPuff', cursive;
    font-size: 1rem;
    font-weight: 500;
    color: var(--orange);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.landing-highlight {
    color: var(--orange);
    position: relative;
}

.landing-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    opacity: 0.25;
}

/* Popis */
.landing-desc {
    font-size: 1.05rem;
    font-weight: 400;
    color: #C9B8A6;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 2rem;
}

/* Oddelovač */
.landing-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #8B7562;
}

.landing-divider span {
    display: block;
    width: 50px;
    height: 1px;
    background: #5C3A1E;
}

/* Päta */
.landing-footer {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream);
    opacity: 0.3;
    letter-spacing: 0.05em;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    .landing-logo {
        height: 130px;
        margin-bottom: 1.5rem;
    }

    .landing-title {
        font-size: 1.6rem;
    }

    .landing-desc {
        font-size: 0.92rem;
    }

    .landing-bg {
        width: 350px;
        height: 350px;
    }
}

@media (min-width: 1200px) {
    .landing-logo {
        height: 220px;
    }

    .landing-title {
        font-size: 2.8rem;
    }
}
