:root { --primary-color: #9146FF; --secondary-color: #772CE8; --background-color: #0E0E10; --text-color: #efeff1; --header-height: 210px; } body { margin: 0; padding: 20px; background: url('../images/background.webp') no-repeat center center fixed; background-size: cover; font-family: 'Inter', sans-serif; background-color: var(--background-color); color: var(--text-color); align-items: center; line-height: 1.6; } .full-width-header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height); background-size: cover; background-position: center; background-repeat: no-repeat; z-index: 1000; } .full-width-header::after { content: ''; position: absolute; bottom: -50px; left: 0; width: 100%; height: 50px; background: linear-gradient(to bottom, var(--background-color), transparent); z-index: 999; } .container { max-width: 800px; margin: 0 auto; padding: 2rem; padding-top: var(--header-height); } .logo { width: 200px; height: auto; margin: 40px auto; display: block; position: fixed; left: 5%; top: 20%; transform: translateX(-50%); z-index: 1001; } .nav-container, .nav-container2 { position: fixed; top: 20px; display: flex; flex-direction: column; gap: 10px; z-index: 2000; } .nav-container { right: 20px; } .nav-container2 { left: 20px; } .nav-button { padding: 0.7rem 1.5rem; border-radius: 8px; background: linear-gradient(145deg, var(--primary-color), var(--secondary-color)); color: white; text-decoration: none; font-weight: bold; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); text-align: center; min-width: 120px; touch-action: manipulation; } .nav-button:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); } .nav-button.active { background: linear-gradient(145deg, var(--secondary-color), var(--primary-color)); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3); transform: translateY(1px); } .dein-element { background-color: rgba(24, 24, 27, 0.8); border: 2px solid #9146FF; border-radius: 10px; box-shadow: 0 0 10px rgba(145, 70, 255, 0.6); } .counter-box { position: relative; margin-top: 10px; text-align: left; } .footer { background-color: rgba(24, 24, 27, 0.9); padding: 1rem; text-align: center; margin-top: 2rem; border-radius: 10px; font-size: 13px; } .footer-container { max-width: 1200px; margin: 0 auto; } .footer-nav a, .footer-social a { color: var(--primary-color); text-decoration: none; margin: 0 10px; font-weight: bold; } .footer-nav a:hover, .footer-social a:hover { text-decoration: underline; } .contact-section { background-color: rgba(24, 24, 27, 0.8); padding: 2rem; border-radius: 10px; margin: 2rem 0; } .contact-section h1 { margin-bottom: 1rem; color: var(--primary-color); text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); text-align: center; font-size: 36px; } .contact-form { display: flex; flex-direction: column; gap: 1.5rem; } .form-group { display: flex; flex-direction: column; gap: 0.5rem; } .form-group label { font-weight: bold; color: var(--primary-color); } .form-group input, .form-group textarea { padding: 0.8rem; border-radius: 5px; border: 1px solid rgba(145, 70, 255, 0.3); background-color: rgba(14, 14, 16, 0.8); color: var(--text-color); font-family: inherit; transition: border-color 0.3s ease, box-shadow 0.3s ease; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 10px rgba(145, 70, 255, 0.3); } .form-group textarea { min-height: 150px; resize: vertical; } .submit-button { padding: 1rem 2rem; border: none; border-radius: 10px; background: linear-gradient(145deg, var(--primary-color), var(--secondary-color)); color: white; font-weight: bold; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); } .submit-button:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4); } @media (min-width: 150px) and (max-width: 1480px) { .logo { display: none !important; } } @media (max-width: 768px) { :root { --header-height: 150px; } .nav-container, .nav-container2 { position: static; width: 100%; flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 10px; margin: 10px 0; } .nav-button { flex: 1; min-width: 140px; max-width: 200px; padding: 8px 15px; font-size: 14px; } .container { padding: 1rem; padding-top: calc(var(--header-height) + 20px); } .content-wrapper { flex-direction: column; align-items: center; } .footer { padding: 1rem; font-size: 12px; } .footer-nav, .footer-social { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; } .footer-nav a, .footer-social a { margin: 5px; } } @media (min-width: 2150px) { :root { --header-height: 250px; } } @media (min-width: 1920px) { .container { max-width: 1000px; } body { font-size: 18px; } } @media (min-width: 150px) and (max-width: 1480px) { .logo { display: none !important; } } @media (min-width: 769px) and (max-width: 1024px) { .container { padding: 1.5rem; } .social-button { padding: 0.9rem 1.8rem; } .lightbox-img { width: 30%; } }