/* ===========================================================
   sale.duhomelab.ch — Landing
   Elegant, minimalist, mediterranean
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Inter:wght@300;400;500&display=swap');

:root {
    --bg: #faf8f5;
    --fg: #1a1a1a;
    --fg-muted: rgba(255, 255, 255, 0.85);
    --accent: #c9a96e;
    --overlay: rgba(0, 0, 0, 0.35);
    --serif: 'Cormorant Garamond', 'Georgia', serif;
    --sans: 'Inter', -apple-system, sans-serif;
}

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

html, body {
    height: 100%;
    overflow: hidden;
    font-family: var(--sans);
    color: var(--fg);
    background: var(--bg);
}

/* === Background slideshow === */
.bg-slideshow {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.05);
    animation: kenburns 20s ease-in-out infinite alternate;
}

.bg-slide.active {
    opacity: 1;
}

@keyframes kenburns {
    from { transform: scale(1.05); }
    to   { transform: scale(1.15); }
}

.bg-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1;
}

/* === Content === */
.content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: var(--fg-muted);
}

.brand {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1.2s 0.3s ease-out forwards;
}

h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1.2s 0.6s ease-out forwards;
}

h1 em {
    font-style: italic;
    color: var(--accent);
}

.tagline {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeUp 1.2s 0.9s ease-out forwards;
}

.choices {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1.2s 1.2s ease-out forwards;
}

.choice {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    text-decoration: none;
    transition: all 0.4s ease;
    min-width: 240px;
}

.choice:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.choice-location {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
}

.choice-name {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 400;
}

footer {
    position: fixed;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

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

@media (max-width: 600px) {
    .choices { flex-direction: column; }
    .choice { min-width: 280px; }
}
