: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: 1200px; 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; } .equipment-section { background-color: rgba(24, 24, 27, 0.8); padding: 2rem; border-radius: 10px; margin: 2rem 0; } .equipment-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; } .equipment-category { margin-bottom: 2rem; } .equipment-category h2 { margin-bottom: 1rem; color: var(--primary-color); text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); font-size: 25px; } .equipment-item { display: flex; justify-content: space-between; padding: 0.5rem; border-bottom: 1px solid rgba(145, 70, 255, 0.2); transition: background-color 0.3s ease; } .equipment-item:hover { background-color: rgba(145, 70, 255, 0.1); } .equipment-item:last-child { border-bottom: none; } .equipment-name { font-weight: bold; color: var(--text-color); } .equipment-value { text-align: right; } .equipment-value a { color: var(--text-color); text-decoration: none; transition: color 0.3s ease, text-shadow 0.3s ease; position: relative; } .equipment-value a::after { content: ''; position: absolute; width: 100%; height: 1px; bottom: -2px; left: 0; background-color: var(--primary-color); transform: scaleX(0); transform-origin: right; transition: transform 0.3s ease; } .equipment-value a:hover { color: var(--primary-color); text-shadow: 0 0 8px rgba(145, 70, 255, 0.5); } .equipment-value a:hover::after { transform: scaleX(1); transform-origin: left; } @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); } .equipment-section { padding: 1rem; } .equipment-item { flex-direction: column; gap: 0.5rem; } .equipment-value { text-align: left; } .equipment-section h1 { font-size: 28px; } .equipment-category h2 { font-size: 22px; } .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: 1200px; } body { font-size: 18px; } h1 { font-size: 42px; } h2 { font-size: 32px; } .equipment-item { padding: 1rem; font-size: 18px; } } @media (min-width: 769px) and (max-width: 1024px) { .container { padding: 1.5rem; } .equipment-section { padding: 1.5rem; } .equipment-item { padding: 0.7rem; } }