/* ===================================
   TAG-TRÄUMER - Tages Tanz Website
   Modern Event Website with Gradient Design
   =================================== */

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

:root {
    /* Weinerei 1877 Inspired Colors */
    --primary-gold: #D4AF37;
    --accent-gold: #C9A961;
    --soft-gold: #E8D7B5;
    
    /* Dark Theme */
    --dark-bg: #000000;
    --dark-secondary: #1a1a1a;
    --dark-card: #0d0d0d;
    
    /* Text Colors */
    --text-light: #ffffff;
    --text-cream: #f5f5dc;
    --text-gray: #a0a0a0;
    --text-dark: #1a1a1a;
    
    /* Accent Colors */
    --accent-rose: #d4a5a5;
    --warning: #C9A961;
    
    /* Fonts - Weinerei 1877 Inspired */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo-image {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.nav-brand .logo-image:hover {
    opacity: 1;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 20px 50px;
}

/* Floating Circles Animation */
.floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.03);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 70%;
    animation-delay: 3s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
}

.circle-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    left: 80%;
    animation-delay: 9s;
}

.circle-5 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 50%;
    animation-delay: 12s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-50px) translateX(30px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-100px) translateX(-30px) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-50px) translateX(50px) scale(1.05);
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-logo {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-logo-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    opacity: 0.95;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.hero-logo-image:hover {
    opacity: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.logo-subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 1px;
}

.logo-subtitle a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo-subtitle a:hover {
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-cream);
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-style: italic;
    letter-spacing: 2px;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.hero-genre,
.hero-concept {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-cream);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Countdown Timer */
.countdown-container {
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.countdown-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-cream);
    letter-spacing: 2px;
}

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

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-top: 5px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: transparent;
    color: var(--primary-gold);
    padding: 15px 50px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-gold);
    margin-top: 20px;
}

.btn-primary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* === SECTION STYLES === */
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-cream);
    letter-spacing: 4px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-gold);
}

.section-subtitle {
    text-align: center;
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 50px;
}

/* === ABOUT SECTION === */
.about {
    padding: 100px 20px;
    background-color: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.about-text {
    color: var(--text-gray);
    position: relative;
    z-index: 2;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--dark-card);
    padding: 25px;
    border-radius: 0;
    border-left: 2px solid var(--primary-gold);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.feature-item p {
    margin: 0;
    color: var(--text-gray);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flyer-image {
    width: 100%;
    max-width: 500px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.flyer-image:hover {
    transform: scale(1.05);
}

.location-preview {
    width: 100%;
    max-width: 500px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.location-preview:hover {
    transform: scale(1.05);
}

/* Music Diversity */
.music-diversity {
    margin-top: 40px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.diversity-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.music-diversity > p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.music-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 20px;
}

.music-type {
    background: var(--dark-card);
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.music-type:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.music-type i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: block;
}

.music-type h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.music-type p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Heritage Section Enhanced */
.heritage-section {
    margin-top: 80px;
    padding: 50px;
    background: rgba(212, 175, 55, 0.03);
    border-left: 2px solid var(--primary-gold);
}

.heritage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.heritage-text-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.heritage-highlight {
    background: var(--dark-card);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.heritage-highlight i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.heritage-highlight blockquote {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-cream);
    line-height: 1.8;
    margin: 0;
}

.heritage-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.heritage-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.heritage-text em {
    color: var(--text-cream);
    font-style: italic;
}

.heritage-text strong {
    color: var(--text-light);
    font-weight: 600;
}

/* === EVENTS SECTION === */
.events {
    padding: 100px 20px;
    background: var(--dark-secondary);
}

/* Events Intro */
.events-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 50px 0;
    padding: 40px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    position: relative;
    z-index: 2;
}

.intro-text strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.intro-image:hover {
    transform: scale(1.03);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    background: rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-gold);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-gold);
}

.event-card.featured {
    border: 1px solid var(--primary-gold);
    background: rgba(212, 175, 55, 0.05);
}

.event-card.halloween {
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.event-card.halloween::before {
    background: var(--accent-gold);
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 6px 15px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-badge-free {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    color: var(--primary-gold);
    padding: 6px 15px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary-gold);
}

.event-date {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    margin-top: 30px;
}

.date-day {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: var(--primary-gold);
}

.date-month-year {
    display: flex;
    flex-direction: column;
}

.date-month {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
}

.date-year {
    font-size: 1rem;
    color: var(--text-gray);
}

.event-details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
    letter-spacing: 1px;
}

.event-genre,
.event-time,
.event-location {
    margin: 10px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-genre i,
.event-time i,
.event-location i {
    color: var(--primary-gold);
    width: 20px;
}

.event-djs {
    margin: 20px 0;
}

.dj-label {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 10px;
}

.dj-names {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dj-names .dj-name {
    background: transparent;
    color: var(--primary-gold);
    padding: 5px 15px;
    border-radius: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.85rem;
    font-weight: 400;
}

/* === DJS SECTION === */
.djs {
    padding: 100px 20px;
    background-color: var(--dark-bg);
}

.djs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.dj-card {
    text-align: center;
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: 0;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.dj-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dj-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.dj-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dj-card .dj-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

.dj-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    font-style: italic;
}

.dj-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.dj-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.dj-social {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
}

.dj-social:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.dj-social i {
    margin-right: 8px;
    color: var(--primary-gold);
}

.dj-note {
    margin-top: 15px;
    padding: 10px 15px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 2px solid var(--primary-gold);
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}

.dj-note i {
    color: var(--primary-gold);
    margin-right: 8px;
}

.dj-genre {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.genre-tag {
    background: transparent;
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 400;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* === COMMUNITY SECTION === */
.community {
    padding: 100px 20px;
    background-color: var(--dark-bg);
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.community-text {
    color: var(--text-gray);
}

.community-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

.community-text strong {
    color: var(--text-light);
    font-weight: 600;
}

.community-quote {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-gold);
    margin: 40px 0;
    padding: 30px;
    border-left: 3px solid var(--primary-gold);
    background: rgba(212, 175, 55, 0.03);
    line-height: 1.8;
}

.community-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.value-item {
    background: var(--dark-card);
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(10px);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.value-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.value-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* === LOCATION SECTION === */
.location {
    padding: 100px 20px;
    background: var(--dark-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.location-info {
    color: var(--text-gray);
}

.location-logo {
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0;
    text-align: center;
    margin-bottom: 25px;
}

.weinerei-logo-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: brightness(1.1);
    opacity: 0.9;
}

.location-logo h3 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 5px;
}

.location-logo p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.location-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.location-description {
    line-height: 1.8;
    margin-bottom: 30px;
}

.location-details p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.location-details strong {
    color: var(--text-light);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-gold);
    padding: 12px 30px;
    border-radius: 0;
    border: 1px solid var(--primary-gold);
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.btn-secondary i {
    margin-right: 8px;
}

.location-map iframe {
    width: 100%;
    height: 500px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* Location Gallery */
.location-gallery {
    margin-top: 80px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--primary-gold);
    margin: 0;
    font-style: italic;
}

/* === FOOTER === */
.footer {
    background-color: var(--dark-card);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-gold);
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.footer-brand p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 15px;
}

.footer-links h4,
.footer-info h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

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

.footer-links a,
.footer-info a,
.footer-contact a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-info a:hover,
.footer-contact a:hover {
    color: var(--primary-gold);
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        padding: 30px;
        transition: left 0.3s ease;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-logo-image {
        max-width: 220px;
    }
    
    .logo-main {
        font-size: 3rem;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .about-content,
    .location-content,
    .community-content,
    .events-intro,
    .heritage-content {
        grid-template-columns: 1fr;
    }
    
    .music-split {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .heritage-section {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .events-grid,
    .djs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .nav-brand .logo-image {
        height: 30px;
    }
    
    .hero-logo-image {
        max-width: 180px;
    }
    
    .weinerei-logo-image {
        max-width: 200px;
    }
    
    .logo-main {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .event-date {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .date-day {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}