/* ============================================
   UNIFYR – Coming Soon / Baustellenseite
   CI Colors:
     Ashes:       #28282d
     White:       #FFFFFF
     Blue:        #507282
     Orange:      #ff6d1e
     Beige:       #f5e6d7
     Beige Light: #faf5f0
   Fonts:
     Albert Sans (body)
     Ubuntu Mono (accents/mono)
   ============================================ */

:root {
    --color-ashes: #28282d;
    --color-white: #ffffff;
    --color-blue: #507282;
    --color-orange: #ff6d1e;
    --color-beige: #f5e6d7;
    --color-beige-light: #faf5f0;

    --font-body: 'Albert Sans', sans-serif;
    --font-mono: 'Ubuntu Mono', monospace;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-ashes);
    color: var(--color-white);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Particles Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Page Wrapper */
.page-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0 1.5rem;
}

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

.logo-img {
    height: 28px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 1;
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

/* Flame Icon */
.hero-icon {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.flame-icon {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 30px rgba(255, 109, 30, 0.4));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Label */
.hero-label {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 1.5rem;
}

/* Headline */
.hero-headline {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.hero-headline .highlight {
    color: var(--color-orange);
}

/* Sub */
.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-beige);
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 700px;
    margin-bottom: 3.5rem;
}

.pillar {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.pillar:hover {
    background: rgba(255, 109, 30, 0.06);
    border-color: rgba(255, 109, 30, 0.15);
}

.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
    color: var(--color-orange);
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
}

.pillar h3 {
    font-family: var(--font-mono);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.pillar p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-beige);
    font-weight: 300;
}

/* Notify */
.notify {
    width: 100%;
    max-width: 480px;
}

.notify-text {
    font-size: 0.9375rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
    font-weight: 400;
}

.notify-form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.notify-form:focus-within {
    border-color: var(--color-orange);
}

.notify-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    outline: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
}

.notify-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.notify-form button {
    padding: 0.875rem 1.5rem;
    background: var(--color-orange);
    color: var(--color-white);
    border: none;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.notify-form button:hover {
    background: #e5611a;
}

.notify-success {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--color-orange);
    font-weight: 500;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.slogan {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    color: var(--color-blue);
    margin-bottom: 0.5rem;
}

.footer-links {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-orange);
}

.footer-sep {
    color: rgba(255, 255, 255, 0.15);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-ashes);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--color-beige);
    margin: 0;
}

.cookie-text a {
    color: var(--color-orange);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.cookie-btn--accept {
    background: var(--color-orange);
    color: var(--color-white);
}

.cookie-btn--accept:hover {
    background: #e5611a;
}

.cookie-btn--reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn--reject:hover {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ======= Responsive ======= */
@media (max-width: 640px) {
    .pillars {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pillar {
        padding: 1.25rem 1rem;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-form input,
    .notify-form button {
        width: 100%;
    }

    .flame-icon {
        height: 60px;
    }

    .hero {
        padding: 1rem 0 3rem;
    }
}

@media (max-width: 400px) {
    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-sub {
        font-size: 1rem;
    }
}
