/* ============================================
   Da's Vastgoed - Coming Soon Landing Page
   Statische HTML/CSS versie
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #1a1212;
    color: #f5f5f0;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Selection */
::selection {
    background-color: rgba(140, 120, 83, 0.3);
    color: #f5f5f0;
}

/* ============================================
   Background & Overlays
   ============================================ */

.hero-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1645307904874-98b5f4777b54?crop=entropy&cs=srgb&fm=jpg&ixid=M3w4NjAzMzJ8MHwxfHNlYXJjaHwzfHxiZWxnaXVtJTIwZHVuZXMlMjBsYW5kc2NhcGUlMjBtaXN0JTIwZGFyayUyMG1vb2R5fGVufDB8fHx8MTc3MTUxNzg1OHww&ixlib=rb-4.1.0&q=85');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slow-zoom 20s ease-out forwards;
}

.legal-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-color: #1a1212;
}

.gradient-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        #1a1212 0%,
        rgba(26, 18, 18, 0.95) 20%,
        rgba(26, 18, 18, 0.7) 50%,
        rgba(26, 18, 18, 0.4) 80%,
        transparent 100%
    );
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
}

/* ============================================
   Layout
   ============================================ */

.main-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

@media (min-width: 768px) {
    .header {
        padding: 2rem 4rem;
    }
}

@media (min-width: 1024px) {
    .header {
        padding: 2rem 6rem;
    }
}

/* Logo */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f5f5f0;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo:hover {
    color: #8c7853;
}

@media (min-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
}

.logo-italic {
    font-style: italic;
    font-weight: 500;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #8c7853;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.status-line {
    width: 2rem;
    height: 1px;
    background-color: rgba(140, 120, 83, 0.4);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-bottom: 8rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 6rem;
    }
}

/* Decorative Line */
.decorative-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #8c7853, transparent);
    margin: 3rem 0;
}

/* Slogan */
.slogan {
    font-family: 'Playfair Display', serif;
    text-align: center;
    max-width: 56rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.slogan-line-1 {
    display: block;
    font-size: 2.25rem;
    color: #f5f5f0;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .slogan-line-1 {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .slogan-line-1 {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .slogan-line-1 {
        font-size: 4.5rem;
    }
}

.slogan-italic {
    font-style: italic;
    color: #8c7853;
}

.slogan-line-2 {
    display: block;
    font-size: 1.5rem;
    color: #a3a3a0;
    font-weight: 300;
}

@media (min-width: 640px) {
    .slogan-line-2 {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .slogan-line-2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .slogan-line-2 {
        font-size: 3rem;
    }
}

.slogan-line-3 {
    display: block;
    font-size: 1.875rem;
    color: #f5f5f0;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .slogan-line-3 {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .slogan-line-3 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .slogan-line-3 {
        font-size: 3.75rem;
    }
}

/* ============================================
   Footer
   ============================================ */

.footer {
    padding: 3rem 2rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 3rem 4rem;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 3rem 6rem;
    }
}

/* Location */
.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.location-icon {
    width: 1rem;
    height: 1rem;
    color: #8c7853;
}

.location-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    color: #a3a3a0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Year Indicator */
.year-indicator {
    margin-top: 2rem;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: rgba(163, 163, 160, 0.5);
    letter-spacing: 0.2em;
}

/* Legal Link */
.legal-link {
    margin-top: 1.5rem;
    text-align: center;
}

.legal-link a {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    color: rgba(140, 120, 83, 0.6);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.legal-link a:hover {
    color: #8c7853;
}

/* ============================================
   Side Accent (Desktop Only)
   ============================================ */

.side-accent {
    display: none;
}

@media (min-width: 1024px) {
    .side-accent {
        display: block;
        position: fixed;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
    }
}

.side-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: rgba(140, 120, 83, 0.3);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* ============================================
   Legal Page Styles
   ============================================ */

.legal-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    color: #8c7853;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #f5f5f0;
}

.back-link svg {
    width: 1rem;
    height: 1rem;
}

/* Legal Article */
.legal-article {
    flex: 1;
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem;
}

@media (min-width: 768px) {
    .legal-article {
        padding: 3rem 4rem;
    }
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #f5f5f0;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .legal-title {
        font-size: 2.5rem;
    }
}

.legal-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #8c7853;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(140, 120, 83, 0.2);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #f5f5f0;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.legal-section p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #a3a3a0;
}

.legal-section strong {
    color: #f5f5f0;
    font-weight: 600;
}

/* Legal Footer */
.legal-footer {
    padding: 2rem;
    border-top: 1px solid rgba(140, 120, 83, 0.1);
}

@media (min-width: 768px) {
    .legal-footer {
        padding: 2rem 4rem;
    }
}

.legal-footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo-small {
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    color: #f5f5f0;
}

.footer-divider {
    color: rgba(140, 120, 83, 0.3);
}

.footer-note {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: rgba(163, 163, 160, 0.5);
    letter-spacing: 0.1em;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slow-zoom {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fade-in-up 1s ease-out forwards;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

.delay-500 {
    animation-delay: 500ms;
}

.delay-600 {
    animation-delay: 600ms;
}

.delay-700 {
    animation-delay: 700ms;
}
