/*
Theme Name: PauliNights
Theme URI: https://paulinights.com
Author: PauliNights
Author URI: https://paulinights.com
Description: Underground Music Label & Event Brand aus Hamburg. Elektronische Musik, Vinyl-Kultur und globale Soundtrends.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: paulinights
Tags: music, dark, one-column, custom-menu, featured-images, translation-ready
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --black: #0a0a0a;
    --dark: #141414;
    --card: #1a1a1a;
    --card2: #222222;
    --white: #f0f0f0;
    --gray: #888888;
    --light-gray: #555555;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 0.75em;
}

h1 { font-size: 2.8rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.2em; color: var(--white); }

.gold { color: var(--gold); }
.gray { color: var(--gray); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0 24px;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.site-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav .current-menu-item a {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 8px 20px;
    border-radius: 2px;
    font-weight: 700 !important;
}

.nav-cta:hover {
    background: var(--gold-light);
    color: var(--black) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    display: block;
    transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 68px;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0f0f0f 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border-radius: 2px;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
    padding: 80px 0;
}

.section--dark {
    background: var(--dark);
}

.section--card {
    background: var(--card);
}

.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-sub {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 560px;
    margin-bottom: 48px;
}

.rule {
    border: none;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    margin: 0;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual-inner {
    background: var(--card2);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 40px;
    position: relative;
}

.about-visual-inner::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 40px; height: 40px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =============================================
   NEWSLETTER SECTION
   ============================================= */
.newsletter-section {
    background: var(--card);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 80px 0;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 32px auto 0;
}

.newsletter-input {
    flex: 1;
    background: var(--black);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 14px 18px;
    font-size: 0.95rem;
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.2s;
    border-radius: 2px;
}

.newsletter-input:focus {
    border-color: var(--gold);
}

.newsletter-input::placeholder {
    color: var(--light-gray);
}

.newsletter-note {
    font-size: 0.8rem;
    color: var(--light-gray);
    margin-top: 12px;
}

/* =============================================
   POSTS / BLOG
   ============================================= */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.post-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.2s, transform 0.2s;
    overflow: hidden;
}

.post-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.post-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--card2);
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.03);
}

.post-card-body {
    padding: 24px;
}

.post-card-cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.post-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--white);
}

.post-card-excerpt {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.post-card-meta {
    font-size: 0.75rem;
    color: var(--light-gray);
}

/* =============================================
   SINGLE POST
   ============================================= */
.post-header {
    padding: 120px 0 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.post-content {
    padding: 60px 0;
}

.post-content h2,
.post-content h3 {
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.post-content p,
.post-content ul,
.post-content ol {
    margin-bottom: 1.4em;
    color: rgba(240,240,240,0.85);
    font-size: 1.05rem;
    line-height: 1.8;
}

.post-content ul,
.post-content ol {
    padding-left: 1.5em;
}

.post-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px;
    margin: 32px 0;
    background: var(--card);
    font-style: italic;
    color: var(--gray);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--dark);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-text {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: var(--gray);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--light-gray);
}

.footer-legal a {
    color: var(--light-gray);
    margin-left: 24px;
}

.footer-legal a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--gold);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .main-nav { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .posts-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .hero-actions { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* =============================================
   WORDPRESS CORE CLASSES
   ============================================= */
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--gray); text-align: center; margin-top: 6px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
