/* ============================================================
   HARDTWALDBATTERIE – Homepage Specific Styles
   Styles unique to hardtwaldbatterie (1).html
   ============================================================ */


/* === Custom Cursor (homepage variant) === */
.cursor-glow {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    z-index: 9999;
    transition: opacity 0.3s ease;
}


/* === Navigation (homepage scrolled state) === */
nav {
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    border-bottom: none;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
}

.nav-logo {
    font-size: 1.1rem;
}

.nav-logo svg {
    width: 32px;
    height: 32px;
}

.nav-links {
    gap: 3rem;
}

.nav-links a {
    font-weight: 300;
    letter-spacing: 0.2em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}


/* === Hero Section (homepage full-screen variant) === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-ritual);
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(139, 37, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(10, 18, 16, 0.9) 0%, transparent 70%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    animation: float-up 8s infinite;
}

.hero-rune {
    position: absolute;
    font-family: 'Cinzel', serif;
    font-size: 15rem;
    color: rgba(201, 162, 39, 0.03);
    pointer-events: none;
    opacity: unset;
    text-shadow: none;
    animation: pulse-glow-scale 6s ease-in-out infinite;
}

.hero-rune.left { left: 5%; top: 20%; }
.hero-rune.right { right: 5%; bottom: 20%; }

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 1000px;
}

.hero-symbol {
    width: 120px;
    height: 120px;
    margin: 0 auto 3rem;
    animation: rotate-slow 60s linear infinite;
}

.hero-symbol svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.4));
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-gold) 50%, var(--text-light) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

.hero-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-style: normal;
    max-width: unset;
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-light);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.hero-cta:hover {
    color: var(--bg-void);
    box-shadow: var(--glow-gold);
}

.hero-cta:hover::before {
    opacity: 1;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    animation: bounce-subtle 2s ease-in-out infinite;
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-dim);
}


/* === Section Styling === */
section {
    padding: 8rem 3rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-rune {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.6;
    margin-bottom: 1.5rem;
    display: block;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 1px;
    background: var(--gradient-gold);
    margin: 1.5rem auto;
}

.section-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* === Manifest Section === */
.manifest {
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.manifest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.manifest-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
}

.manifest-text {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 2;
    text-align: center;
}

.manifest-text em {
    color: var(--accent-gold);
    font-style: italic;
}

.manifest-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(201, 162, 39, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.1);
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(201, 162, 39, 0.06);
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}


/* === Inclusion Banner === */
.inclusion-banner {
    background: linear-gradient(90deg,
        rgba(139, 37, 0, 0.2) 0%,
        rgba(201, 162, 39, 0.15) 50%,
        rgba(139, 37, 0, 0.2) 100%);
    padding: 3rem;
    text-align: center;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    position: relative;
    overflow: hidden;
}

.inclusion-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 0, 0, 0.05),
        rgba(255, 127, 0, 0.05),
        rgba(255, 255, 0, 0.05),
        rgba(0, 255, 0, 0.05),
        rgba(0, 0, 255, 0.05),
        rgba(75, 0, 130, 0.05),
        rgba(148, 0, 211, 0.05),
        transparent);
    animation: rainbow-sweep 8s linear infinite;
}

.inclusion-text {
    position: relative;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.inclusion-text span {
    display: inline-block;
    margin: 0 0.5rem;
}


/* === Events Section === */
.events {
    background: var(--bg-forest);
}

.events-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.event-card {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 3rem;
    padding: 3rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.1);
    transition: all 0.4s ease;
    align-items: center;
}

.event-card:hover {
    border-color: rgba(201, 162, 39, 0.4);
    box-shadow: var(--glow-ember);
    transform: translateX(10px);
}

.event-date {
    text-align: center;
    padding: 1.5rem;
    background: rgba(201, 162, 39, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.event-day {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.event-month {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.event-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.event-meta {
    display: flex;
    gap: 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

.event-status {
    padding: 0.75rem 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.event-status.upcoming {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

.event-status.soon {
    background: var(--gradient-gold);
    color: var(--bg-void);
}

.event-status.past {
    background: transparent;
    border: 1px solid var(--text-dim);
    color: var(--text-dim);
}

.event-status.available {
    background: var(--gradient-fire);
    color: var(--bg-void);
    font-weight: 700;
}

a.event-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.event-card:hover {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: var(--glow-fire);
}

/* === Archive Link (below events grid) === */
.events-archive-link {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.06);
}

.events-archive-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dim);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.events-archive-link a:hover {
    color: var(--accent-gold);
    border-color: rgba(201, 162, 39, 0.2);
}

.events-archive-link .archive-rune {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    opacity: 0.4;
}


/* === Gallery Section === */
.gallery {
    background: var(--bg-void);
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--bg-deep);
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: grayscale(30%) contrast(1.1);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1.2);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.gallery-caption span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--accent-gold);
    letter-spacing: 0.1em;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(201, 162, 39, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 37, 0, 0.1) 0%, transparent 50%);
}

.gallery-placeholder svg {
    width: 60px;
    height: 60px;
    opacity: 0.2;
}


/* === Lineup Section === */
.lineup {
    background: var(--bg-deep);
    position: relative;
}

.lineup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-ember), transparent);
}

.lineup-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.artist-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.artist-card {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.artist-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    background: rgba(201, 162, 39, 0.05);
}

.artist-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--bg-forest);
    border: 2px solid rgba(201, 162, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--accent-gold);
}

.artist-name {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.artist-genre {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* === Newsletter Section === */
.newsletter {
    background: linear-gradient(to bottom, var(--bg-forest), var(--bg-void));
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.2);
    color: var(--text-light);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: var(--text-dim);
}

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

.newsletter-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.newsletter-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-void);
}


/* === Footer (homepage full layout) === */
footer {
    background: var(--bg-void);
    padding: 4rem 3rem 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    text-align: left;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(201, 162, 39, 0.1);
}

.footer-bottom {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
}

/* Override base footer p for homepage */
footer p {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
}
