:root {
    --primary-color: #dfaa78;
    --text-dark: #2c2926;
    --text-light: #f5f2ed;
    --glass-bg: rgba(25, 24, 23, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #1a1a1a;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1.05); /* Slight zoom for premium feel */
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(20,15,10,0.6) 100%);
    z-index: -1;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 2rem 8rem;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    width: 100%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

/* Shine effect on card */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 4rem);
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a39c94;
    margin-bottom: 3rem;
}

.message-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 2rem;
    font-weight: 400;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    line-height: 1;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #dedbd5;
    margin-bottom: 0;
}

.feature-item strong {
    color: var(--primary-color);
    font-weight: 500;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto 2rem;
    opacity: 0.6;
}

.coming-soon {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem !important;
    color: var(--primary-color) !important;
}

.notify-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 480px) {
    .notify-form {
        flex-direction: row;
    }
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(0,0,0,0.3);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.notify-form input:focus {
    border-color: var(--primary-color);
    background: rgba(0,0,0,0.5);
}

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

.notify-form button {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-form button:hover {
    background-color: #ebbc90;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.notify-form button.success {
    background-color: #8fb98b;
    color: white;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .content-wrapper {
        padding: 1rem 1rem 6rem;
    }
    .glass-card {
        padding: 2rem 1.5rem;
    }
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.impressum-link-container {
    display: inline-block;
}

.impressum-link {
    color: rgba(245, 242, 237, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    pointer-events: auto;
}

.impressum-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
