/* Reset und grundlegende Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    background-color: #fff;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.container {
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    /* flex: 1; */
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}


.container h1 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

#alert-container {
    width: 100%;
    max-width: 500px;
}

.logo-container {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 0 auto;
    margin-bottom: 3rem;
    cursor: default;
}

.logo-container svg {
    position: relative;
    z-index: 1;
    width: 340px;
    height: 340px;
}

.coming-soon {
    font-size: 1.75rem;
    color: #333;
    background-color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin: 0;
}

.newsletter-form {
    width: 100%;
    max-width: 500px;
    margin: 0;
    display: flex;
    flex-direction: row;
    background-color: #eee;
    padding: 0;
    border-radius: 100px;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.newsletter-form:focus-within {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    flex: 1;
    margin: 0;
    min-width: 0;
}

input[type="email"] {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    background-color: transparent;
    transition: all 0.3s ease;
    min-width: 0;
}

input[type="email"]::placeholder {
    color: #999;
    font-size: 1rem;
}

input[type="email"]:focus {
    outline: none;
}

button {
    background-color: #000;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    font-weight: 500;
    white-space: nowrap;
    margin: 0;
}

button:hover {
    background-color: #333;
}

/* Header Styles */
header {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    padding: 1rem 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
}

nav ul li a:hover {
    color: #007bff;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.75rem;
    color: #999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
}

footer p {
    margin: 0;
    position: relative;
    z-index: 20;
}

footer a {
    color: inherit;
    text-decoration: none;
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

footer a:hover {
    text-decoration: underline;
}

.logo {
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
}

.alert {
    width: 100%;
    max-width: 500px;
    margin: 0;
    padding: 16px 24px;
    border-radius: 100px;
    font-size: 1rem;
    animation: fadeIn 0.5s ease-in;
    letter-spacing: 0.5px;
    background: rgba(213, 237, 218, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(195, 230, 203, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    box-sizing: border-box;
    line-height: 1.2;
    text-align: center;
}

.alert.success {
    color: #155724;
}

.alert.success a {
    color: inherit;
    text-decoration: none;
    cursor: text;
}

.alert.success a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.alert.error {
    background-color: rgba(248, 215, 218, 0.95);
    color: #721c24;
    border: 1px solid rgba(245, 198, 203, 0.5);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
    15% {
        opacity: 0.15;
    }
    30% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.pulse-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 310px;
    height: 310px;
    border: 1px solid black;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    background: transparent;
    transform: translate(-50%, -50%) scale(1.5);
    animation: pulse 7s linear infinite;
}

.pulse-circle.animate {
    animation: pulse 7s linear;
}

.logo-container.animate .pulse-circle {
    animation: pulse 3s ease-out forwards;
}

/* Media Queries */
@media screen and (max-width: 480px) {
    .container {
        padding: 1rem 1.5rem;
        gap: 0.75rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: visible;
        margin-top: -2rem;
    }

    .logo-container {
        width: 220px;
        height: 220px;
        margin-bottom: 2rem;
        overflow: visible;
    }
    
    .logo-container svg {
        width: 220px;
        height: 220px;
    }
    
    .pulse-circle {
        width: 200px;
        height: 200px;
    }
    
    .newsletter-form {
        flex-direction: row;
        border-radius: 100px;
        max-width: 100%;
        width: 100%;
        position: relative;
    }
    
    .form-group {
        flex: 1;
        min-width: 0;
    }
    
    input[type="email"] {
        text-align: left;
        padding: 12px 16px;
        font-size: 0.9rem;
        width: 100%;
        min-width: 0;
    }
    
    input[type="email"]::placeholder {
        font-size: 0.9rem;
    }
    
    button {
        padding: 12px 24px;
        border-radius: 0;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .alert {
        border-radius: 100px;
        padding: 12px 16px;
        font-size: 0.9rem;
        margin: 0;
        width: 100%;
        min-height: 41px;
    }
    
    .coming-soon {
        font-size: 1.25rem;
        letter-spacing: 2px;
    }
}

/* Language Switcher Styles */
.language-switcher {
    margin: 0;
    font-size: 0.75rem;
    display: inline-block;
}

.language-switcher::before {
    content: '|';
    margin: 0 5px;
    color: #999;
}

.language-switcher a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    color: #333;
}

.language-switcher .active {
    text-decoration: line-through;
    color: #999;
    pointer-events: none;
}

/* Landscape Mode für mobile Geräte */
@media (orientation: landscape) and (max-height: 600px) {
    html, body {
        position: relative;
        overflow-y: auto;
        height: auto;
    }
    
    body {
        min-height: 100vh;
        padding: 2rem 0;
        display: block;
    }
    
    .container {
        padding-top: 0;
        padding-bottom: 3rem;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }
    
    footer {
        position: relative;
        bottom: auto;
        margin-top: 1rem;
        width: 100%;
        clear: both;
        z-index: 10;
    }
    
    footer p, footer a {
        position: relative;
        z-index: 20;
        pointer-events: auto;
    }
}

/* Zusätzliche Stile für die Beats-Seite */
.beats-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Back to Home Button */
.back-button {
    color: #000; 
    text-decoration: none; 
    border: 1px solid #000; 
    padding: 10px 20px; 
    border-radius: 100px; 
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1.5rem;
}

.back-button:hover {
    background-color: #000;
    color: #fff;
}

/* Mobile Anpassungen für Beats-Seite */
@media screen and (max-width: 480px) {
    .beats-container {
        gap: 1rem;
    }
}

/* Download Button */
.download-btn {
    display: inline-block;
    background: #000;
    color: #fff !important;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: none;
}
.download-btn:hover {
    background: #333;
    color: #fff;
}

/* Instructions List */
.instructions ol {
    text-align: left;
    margin: 0 auto 2rem auto;
    padding-left: 1.5em;
}
.instructions li {
    margin-bottom: 0.5em;
}

@media screen and (max-width: 600px) {
  .container {
    padding-top: 2.5rem;
  }
  h1, .coming-soon {
    margin-top: 0.5rem;
  }
}

h1 {
  line-height: 1.3;
} 