/* 1. SETUP & FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --card-bg: rgba(22, 22, 22, 0.9);
    --accent: #00f2ff; 
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--accent);
    transition: 0.3s;
}

.logo:hover {
    opacity: 0.7;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent);
}

/* 3. HERO SECTION (STARTSEITE) */
.hero {
    height: 70vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 2px solid var(--accent);
    padding: 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 0;
    text-transform: lowercase;
    letter-spacing: 5px;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
}

/* 3.1 HERO SMALL (FÜR UNTERSEITEN MUSIC & REVIEWS) */
.hero-small {
    padding: 100px 20px 60px;
    text-align: center;
    background: linear-gradient(to bottom, #111, #0a0a0a);
    border-bottom: 1px solid #222;
}

.hero-small h2 {
    font-size: 3rem;
    color: var(--accent);
    text-transform: none;
    letter-spacing: 3px;
    margin: 0;
}

/* 4. LAYOUT & CARDS */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.card h3 {
    color: var(--accent);
    margin-top: 0;
}

/* 4.1 SPEZIAL-ELEMENTE IN CARDS */
.date {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

/* 5. BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
    margin-top: auto; /* Schiebt Button immer nach unten */
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--accent);
}

.btn-small {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 15px;
    display: inline-block;
    transition: 0.3s;
}

.btn-small:hover {
    letter-spacing: 1px;
}

/* 6. FOOTER & SOCIALS */
footer {
    background-color: #050505;
    padding: 60px 20px;
    border-top: 1px solid #222;
    text-align: center;
}

.footer-content p {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-links a {
    color: var(--text-main);
    font-size: 1.8rem;
    transition: 0.3s ease;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-5px);
}
