/* Zalando Sans Expanded Schriftart für spezifische Texte */
@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+Expanded:wght@700&display=swap');
/* Normale Zalando Sans für andere Texte */
@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans:ital,wght@0,200;0,400;0,500;0,700;1,200&display=swap');

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

body {
    font-family: 'Zalando Sans', sans-serif;
    background-color: white;
    color: black;
    overflow-x: hidden;
}

.page {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: white;
}

.page.active {
    display: block;
}

/* Landing Page */
#landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
}

.logo-container {
    text-align: center;
    width: 100%;
}

.logo {
    width: 690px;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

.menu-items {
    display: flex;
    justify-content: space-between;
    width: 600px;
    position: relative;
    margin: 0 auto;
}

.menu-item {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: black;
    cursor: pointer;
    transition: color 0.3s ease, opacity 0.3s ease;
    padding: 10px 0;
    text-transform: lowercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

/* Positionierung der Menu Items */
.menu-item:nth-child(1) { /* listen */
    text-align: left;
    flex: 1;
}

.menu-item:nth-child(2) { /* be part */
    text-align: center;
    flex: 1;
}

.menu-item:nth-child(3) { /* store */
    text-align: right;
    flex: 1;
}

.menu-item:hover {
    color: #950000;
}

#store:hover {
    opacity: 0.5;
}

/* Coming soon text for store */
.coming-soon {
    font-family: 'Zalando Sans', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 18px;
    color: black;
    margin-top: 0px;
    letter-spacing: 0.5px;
    text-transform: none;
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    right: 0;
    
    /* ADJUSTABLE POSITIONING - Change these values as needed */
    top: 70%; /* Distance from bottom of "store" text */
    margin-top: 10px; /* Additional spacing - adjust this value */
    left: 50%; /* Horizontal center alignment */
    transform: translateX(-30%); /* Center alignment offset */
    
    display: none;
}

#store {
    position: relative;
    cursor: default;
}

#store:hover .coming-soon {
    display: block;
}

/* Popup Stile */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.popup-content {
    background-color: white;
    margin: 10% auto;
    padding: 40px;
    width: 500px;
    position: relative;
    text-align: center;
}

.popup-content h2 {
    font-family: 'Zalando Sans', sans-serif;
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.smart-link-container {
    margin: 20px 0;
}

#newsletter-form {
    margin: 20px 0;
}

#newsletter-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    font-family: 'Zalando Sans', sans-serif;
    font-size: 16px;
}

#newsletter-form button {
    width: 100%;
    padding: 12px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Zalando Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-top: 10px;
}

.newsletter-note {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    /* Landing Page Mobile */
    .logo {
        width: 90%;
        max-width: 500px;
    }
    
    .menu-items {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }
    
    .menu-item {
        font-size: 28px;
        text-align: center !important;
    }
    
    .menu-item:nth-child(1),
    .menu-item:nth-child(2),
    .menu-item:nth-child(3) {
        text-align: center !important;
        flex: none;
    }

    /* Coming soon text mobile */
    .coming-soon {
        font-size: 16px;
        position: relative;
        top: 0;
        margin-top: 5px;
        left: 0;
        transform: none;
        width: auto;
    }
    
    #store:hover .coming-soon {
        display: block;
    }
    
    /* Popup Mobile */
    .popup-content {
        width: 90%;
        padding: 30px 20px;
        margin: 20% auto;
    }
    
    .popup-content h2 {
        font-size: 24px;
    }
}

/* Prevent horizontal scrolling on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .page {
        width: 100%;
        overflow-x: hidden;
    }
}