/* styles.css */

/* maven-pro-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Maven Pro';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/maven-pro-v36-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}



:root {
    --primary-color: #FFB800;
    --bg-color: #131210;
    --text-color: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Maven Pro', sans-serif;
    background-color: var(--bg-color);
    background-image: url('../img/bg.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

/* Logo */
img.logo {
    display: block;
    width: 208px;
    height: auto;
    padding: 20px 40px;
    margin-top: 30px;
}

/* Sections */
body > section {
    position: relative;
    padding: 60px 40px;
}

body > section:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background-color: #bbb;
}

h2 {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h3 {
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 400;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(19, 18, 16, 0.95);
}

/* Logo */
img.logo {
    width: 180px;
    height: auto;
    display: block;
    padding: 0;
    margin: 0;
}

/* Menu Toggle */
.menu-toggle {
    position: static;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    position: relative;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span:first-child {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
    transform: translateY(-10px);
}

.menu-toggle span:last-child {
    bottom: 0;
}

/* Animation für das Menü-Icon */
.menu-toggle.active span:first-child {
    transform: rotate(45deg);
    top: 9px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg);
    bottom: 9px;
}

.nav-menu {
    position: fixed;
    top: 60px;
    right: 40px;
    background: rgba(0, 0, 0, 0.9);
    padding: 15px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu a {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    padding: 8px 20px;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #FFF;
}

/* Patreon area */
.patreon-container {
    position: fixed; /* Remove fixed positioning */
    top: 20px;
    right: 120px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: auto;
    margin-left: 40px;
}


.patreon-text {
    color: var(--text-color);
    font-size: 0.875rem;
}

.patreon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.patreon-button:hover {
    background: #FFF;
}

.patreon-button img {
    width: 70px;
    height: auto;
}

.discord-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 30px;
    background: #5865F2;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.discord-button:hover {
    background: var(--primary-color);
}

.discord-button img {
    width: 70px;
    height: auto;
}

@media (max-width: 768px) {
    .patreon-container {
        top: 20px;
        right: 70px;
    }
    
    .patreon-text {
        display: none;
    }
}

/* Patreon area */
.contact-btn-container {
    position: relative; /* Remove fixed positioning */
    display:flex;
    padding-top:30px;
    align-items: center;
    justify-content: center;
    margin:0 auto;
    gap:15px;
}

/* Impressum Lightbox */
.impressum-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.impressum-content {
    background: var(--bg-color);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
}

.impressum-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 768px) {
    .menu-toggle {
        top: 20px;
        right: 20px;
    }
    
    .nav-menu {
        top: 60px;
        right: 20px;
    }
}

/* About Section */
#about {
    margin-top:40px;
    
    
}

.bio {
    font-size: 0.875rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Latest Section */

.latest-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    font-size: 0.875rem;
    text-align: center;

}

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

.post-thumbnail img {
    width: 100px;
    height: auto;
    display: block;
    margin:0 auto;
}

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

.post-content h3 {
    margin: 0;
}

.post-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.patreon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin:0 auto;
}

.patreon-link:hover {
    background: #FFF;
}

.patreon-link img {
    width: 70px;
    height: auto;
}



/* Music & Visual Section gemeinsame Styles */
.tracks,
.video-grid {
    display: grid;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Music Section spezifisch */
.tracks {
    grid-template-columns: repeat(2, 1fr);
}

/* Visual Section spezifisch */
.video-grid {
    grid-template-columns: repeat(3, 1fr);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}


/* Responsive Design */
@media (max-width: 1200px) {
    .tracks {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .patreon-container {
        position: static;
        margin: 0 20px;
    }

    .patreon-button {
        width: 80px;
        height: 28px;
    }
    
    .discord-button {
        width: 80px;
        height: 28px;
    }
    
    .latest-posts {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .header {
        flex-wrap: nowrap;
        gap: 10px;
    }

    img.logo {
        width: 100px;
    }

    .patreon-button {
        width: 80px;
        height: 26px;
    }

    .patreon-button img {
        width: 60px;
    }
    
    .discord-button {
        width: 80px;
        height: 26px;
    }

    .discord-button img {
        width: 60px;
    }
    
    .latest-posts {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

}

