/* =====================================================
   KEENIX Website – Style
   ===================================================== */

/* ---------- Google Font laden ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* ---------- Reset ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---------- Basis ---------- */
html, body {
    width: 100%;
    height: 100%;
    font-family: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
}

/* ---------- Hintergrundbild ---------- */
body {
    background-image: url('../images/background.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ---------- Toggle-Button (Hamburger) ---------- */
.toggle-btn {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1001;
    background: rgba(30, 30, 30, 0.85);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: background 0.2s;
}
.toggle-btn:hover { background: rgba(60, 60, 60, 0.9); }

/* Toggle-Button ausblenden, wenn Sidebar offen ist */
body.sidebar-is-open .toggle-btn {
    display: none;
}

/* ---------- Sidebar ---------- */
.sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: #1c1c1c;
    border-right: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.sidebar.sidebar-open { left: 0; }

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.12em;
    color: #fff;
}
.sidebar-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: color 0.2s;
}
.sidebar-close:hover { color: #fff; }

.sidebar ul {
    list-style: none;
    padding: 10px 0 20px;
}
.sidebar-category {
    padding: 16px 18px 6px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
    font-family: Arial, sans-serif;
}
.sidebar ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    transition: color 0.2s, background 0.2s;
    border-left: 3px solid transparent;
}
.sidebar ul li a:hover,
.sidebar ul li.active a {
    color: #fff;
    background: rgba(255,255,255,0.06);
    border-left-color: #8a2be2;
}

/* ---------- Overlay ---------- */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
}
.sidebar-overlay.active { display: block; }

/* ---------- Content ---------- */
.content {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 40px;
}

/* ---------- Hero / Home ---------- */
.hero-wrapper {
    text-align: center;
    animation: fadeUp 1.5s ease-out forwards;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 18vw, 14rem);
    letter-spacing: 0.18em;
    color: #fff;
    text-shadow: 0 0 60px rgba(100,50,200,0.3), 0 0 120px rgba(60,20,120,0.2);
}
.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.8rem);
    letter-spacing: 0.4em;
    color: #999;
    margin-top: 8px;
}

/* ---------- Page Header ---------- */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}
.page-header h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: 0.15em;
    color: #fff;
}

/* ---------- 404 ---------- */
.not-found-wrapper {
    text-align: center;
    padding: 40px;
}
.not-found-code {
    font-size: clamp(6rem, 20vw, 12rem);
    color: #8a2be2;
    letter-spacing: 0.1em;
}
.not-found-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #ccc;
    margin: 10px 0 20px;
    letter-spacing: 0.1em;
}
.not-found-wrapper p { color: #777; margin-bottom: 30px; }
.btn-home {
    display: inline-block;
    padding: 12px 30px;
    background: #8a2be2;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    transition: background 0.2s;
}
.btn-home:hover { background: #6a1b9a; }

/* ---------- Musik-Seite ---------- */
.musik-container {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.embed-section h2 {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    color: #999;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.embed-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
}
.embed-wrapper iframe {
    display: block;
}
.embed-wrapper--video {
    aspect-ratio: 16 / 9;
}
.embed-wrapper--video iframe {
    width: 100%;
    height: 100%;
}

/* ---------- Contact-Seite ---------- */
.contact-container {
    width: 100%;
    max-width: 600px;
}
.contact-info { margin-bottom: 30px; }
.contact-info h2 {
    font-size: 2rem;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 10px;
}
.contact-info p { color: #888; line-height: 1.6; }
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
}
.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: border-color 0.2s;
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8a2be2;
}
.btn-submit {
    padding: 14px 28px;
    background: #8a2be2;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-submit:hover { background: #6a1b9a; }
.email-section { margin-top: 10px; }
.email-section p { color: #777; margin-bottom: 8px; }
.email-link {
    color: #8a2be2;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}
.email-link:hover { text-decoration: underline; }

/* ---------- Links-Seite ---------- */
.links-container { width: 100%; max-width: 700px; }
.links-intro {
    text-align: center;
    color: #777;
    margin-bottom: 36px;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}
.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.social-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.2);
}
.social-icon {
    width: 48px;
    height: 48px;
}
.social-icon svg {
    width: 100%;
    height: 100%;
}
/* Farben pro Platform */
.social-card--instagram { color: #E1306C; }
.social-card--instagram:hover { border-color: #E1306C; }
.social-card--tiktok { color: #69C9D0; }
.social-card--tiktok:hover { border-color: #69C9D0; }
.social-card--spotify { color: #1DB954; }
.social-card--spotify:hover { border-color: #1DB954; }
.social-card--youtube { color: #FF0000; }
.social-card--youtube:hover { border-color: #FF0000; }
.social-card--soundcloud { color: #FF5500; }
.social-card--soundcloud:hover { border-color: #FF5500; }

.social-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    color: #ccc;
}

/* ---------- Animation ---------- */
@keyframes fadeUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .sidebar { width: 100%; left: -100%; }
    .toggle-btn { top: 12px; left: 12px; }
    .content { padding: 76px 16px 40px; }
    .social-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}