/* Legal Pages Unified Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=League+Gothic:ital@0;1&family=Work+Sans:wght@400;600&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 30px;
    width: 90px;
}

.nav-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Legal Pages Specific Styles */
.terms-page,
.impressum-page,
.privacy-page {
    margin-top: 80px;
    padding: 0;
    background: #fff;
}

/* Remove top padding for impressum page */
.impressum-page {
    margin-top: 0;
}

.page-header {
    background: #000;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}


.page-subtitle {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.terms-content,
.impressum-content,
.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.intro-section h2 {
    font-family: 'League Gothic', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #000;
}

.intro-section p {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.terms-section,
.impressum-section {
    margin-bottom: 3rem;
}






.section-content strong {
    font-weight: 600;
}

.section-content a {
    color: #000;
    text-decoration: underline;
}

.section-content a:hover {
    text-decoration: none;
}

.content-section {
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'League Gothic', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #000;
}

.content-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #000;
}

.content-text p {
    margin-bottom: 1rem;
}

.content-text strong {
    font-weight: 600;
}

.content-text a {
    color: #000;
    text-decoration: underline;
}

.content-text a:hover {
    text-decoration: none;
}

/* Footer */
.site-footer {
    background: #000;
    color: #fff;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    transition: opacity 0.2s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}



/* Password Modal Styles */
.password-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.password-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    
    /* Liquid Glass Effect */
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.password-modal.active .modal-content {
    transform: scale(1);
}



.modal-content-inner {
    z-index: 3;
    position: relative;
    padding: 0;
    color: white;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.modal-header h3 {
    margin: 0;
    font-family: 'League Gothic', sans-serif;
    font-size: 1.8rem;
    font-weight: normal;
    color: white;
    text-transform: uppercase;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    margin: 0 0 25px 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: white;
    line-height: 1.5;
}

.password-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

#password-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Work Sans', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

#password-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

#password-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.download-btn {
    padding: 15px 25px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.download-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-btn:active {
    transform: translateY(0);
}

.password-error {
    color: #e74c3c;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    margin-top: 10px;
    min-height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .main-content {
        padding: 2rem 1rem;
        margin-top: 70px;
    }
    
    .page-header {
        padding: 3rem 1rem;
    }
    
    .terms-content,
    .impressum-content,
    .privacy-content {
        padding: 3rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px 25px 15px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .password-input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .download-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .intro-section h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    

}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #000;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    max-width: 350px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(0, 0, 0, 0.9);
}

.cookie-btn {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    border: 1px solid rgba(0, 0, 0, 0.95);
    padding: 10px 20px;
    border-radius: 999px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    align-self: flex-start;
}

.cookie-btn:hover {
    background: #000;
    transform: translateY(-1px);
}

.cookie-btn:active {
    transform: translateY(0);
}

/* Mobile responsive for cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 15px;
    }
    
    .cookie-content p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
} 