/*
Theme Name: Anna Ullrich
Theme URI: https://anna-ullrich.at
Author: Anna Ullrich
Author URI: https://anna-ullrich.at
Description: A modern, dark WordPress theme for Techno DJ Anna Ullrich from Vienna.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: annaullrich
*/

/* ============================================
   CSS Custom Properties / Variables
   ============================================ */
:root {
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-rose: #d4a5a5;
    --color-rose-light: #e8c4c4;
    --color-rose-dark: #b88a8a;
    --color-gray: #1a1a1a;
    --color-gray-light: #2a2a2a;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-rose);
    text-decoration: none;
    transition: var(--transition);
}

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

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

ul,
ol {
    list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 10vw, 8rem);
}

h2 {
    font-size: clamp(2rem, 6vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   Layout Utilities
   ============================================ */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section--full-height {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
}

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

.custom-logo-link img {
    height: 40px;
    width: auto;
    max-width: 180px;
    transition: var(--transition);
}

.site-header.scrolled .site-logo img {
    height: 30px;
    max-width: 140px;
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-rose);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--color-rose);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
    margin-top: 20vh;
}

.hero-logo {
    max-width: 400px;
    width: 80%;
    margin: 0 auto 2rem;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-rose);
    margin-bottom: 2rem;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: linear-gradient(180deg, var(--color-black) 0%, var(--color-gray) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-rose);
    z-index: -1;
}

.about-content h2 {
    color: var(--color-rose);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-rose);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Events Section
   ============================================ */
.events {
    background: var(--color-gray);
    position: relative;
}

.events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/pattern.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

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

.section-header h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.section-header .subtitle {
    color: var(--color-rose);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    align-items: center;
}

.event-item:hover {
    background: rgba(212, 165, 165, 0.05);
    border-color: var(--color-rose);
    transform: translateX(10px);
}

.event-date {
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-rose);
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.event-info h4 {
    margin-bottom: 0.5rem;
}

.event-info .venue {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.event-link {
    padding: 0.75rem 2rem;
    border: 1px solid var(--color-rose);
    color: var(--color-rose);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.event-link:hover {
    background: var(--color-rose);
    color: var(--color-black);
}

/* Bandsintown Widget Container */
.events-widget-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Bandsintown Widget Styling */
.bit-widget-initializer {
    display: block !important;
}

.bit-widget .bit-event,
.bit-events .bit-event {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 1.5rem 2rem !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s ease !important;
}

.bit-widget .bit-event:hover,
.bit-events .bit-event:hover {
    background: rgba(212, 165, 165, 0.05) !important;
    border-color: var(--color-rose) !important;
    transform: translateX(10px);
}

.bit-widget .bit-date,
.bit-events .bit-date {
    font-family: var(--font-heading) !important;
    color: var(--color-rose) !important;
}

.bit-widget .bit-venue,
.bit-events .bit-venue {
    color: rgba(255, 255, 255, 0.6) !important;
}

.bit-widget .bit-button,
.bit-events .bit-button,
.bit-widget a.bit-rsvp,
.bit-events a.bit-rsvp {
    border: 1px solid var(--color-rose) !important;
    background: transparent !important;
    color: var(--color-rose) !important;
    font-family: var(--font-heading) !important;
    letter-spacing: 0.1em !important;
    padding: 0.75rem 1.5rem !important;
    transition: all 0.3s ease !important;
}

.bit-widget .bit-button:hover,
.bit-events .bit-button:hover,
.bit-widget a.bit-rsvp:hover,
.bit-events a.bit-rsvp:hover {
    background: var(--color-rose) !important;
    color: var(--color-black) !important;
}

.bit-widget .bit-no-dates,
.bit-events .bit-no-dates,
.bit-play-my-city {
    color: rgba(255, 255, 255, 0.6) !important;
    font-family: var(--font-body) !important;
}

.bit-play-my-city input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--color-white) !important;
}

.bit-play-my-city button {
    background: var(--color-rose) !important;
    border: none !important;
    color: var(--color-black) !important;
}

/* ============================================
   Music Section
   ============================================ */
.music {
    background: var(--color-black);
    position: relative;
    overflow: hidden;
}

.music-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.music-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(50px);
}

.music-content {
    position: relative;
    z-index: 1;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.platform-link svg {
    width: 48px;
    height: 48px;
    fill: var(--color-white);
    transition: var(--transition);
}

.platform-link span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

.platform-link:hover {
    background: var(--color-rose);
    border-color: var(--color-rose);
    transform: translateY(-5px);
}

.platform-link:hover svg {
    fill: var(--color-black);
}

.platform-link:hover span {
    color: var(--color-black);
}

/* Spotify Embed */
.spotify-embed {
    margin-top: 3rem;
    border-radius: 12px;
    overflow: hidden;
}

.spotify-embed iframe {
    width: 100%;
    border: none;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background: var(--color-gray);
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(212, 165, 165, 0);
    transition: var(--transition);
}

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

.gallery-item:hover::after {
    background: rgba(212, 165, 165, 0.2);
}

/* ============================================
   Vision Section
   ============================================ */
.vision {
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-black) 100%);
    text-align: center;
}

.vision-quote {
    max-width: 900px;
    margin: 0 auto;
}

.vision-quote blockquote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1.4;
    color: var(--color-white);
    position: relative;
    padding: 2rem 0;
}

.vision-quote blockquote::before {
    content: '"';
    font-size: 8rem;
    color: var(--color-rose);
    opacity: 0.3;
    position: absolute;
    top: -2rem;
    left: -2rem;
    font-family: Georgia, serif;
}

.vision-highlight {
    color: var(--color-rose);
}

/* ============================================
   Booking Section
   ============================================ */
.booking {
    background: var(--color-black);
    position: relative;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-info h2 {
    color: var(--color-rose);
    margin-bottom: 1.5rem;
}

.booking-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--color-rose);
}

.contact-item a {
    color: var(--color-white);
}

.contact-item a:hover {
    color: var(--color-rose);
}

/* Booking Form */
.booking-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-rose);
    background: rgba(212, 165, 165, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--color-rose);
    border: none;
    color: var(--color-black);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--color-rose-light);
    transform: translateY(-2px);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--color-gray);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-section h4 {
    color: var(--color-rose);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--color-rose);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-rose);
    border-color: var(--color-rose);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
    transition: var(--transition);
}

.social-links a:hover svg {
    fill: var(--color-black);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

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

/* ============================================
   Page Templates
   ============================================ */
.page-header {
    padding: 180px 0 80px;
    background: var(--color-gray);
    text-align: center;
}

.page-header h1 {
    color: var(--color-rose);
}

.page-content {
    padding: 80px 0;
    background: var(--color-black);
}

.page-content .container {
    max-width: 800px;
}

.page-content h2 {
    color: var(--color-rose);
    margin: 2rem 0 1rem;
}

.page-content h3 {
    color: var(--color-white);
    margin: 1.5rem 0 0.75rem;
}

.page-content p,
.page-content li {
    color: rgba(255, 255, 255, 0.8);
}

.page-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.page-content ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

.page-content a {
    text-decoration: underline;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {

    .about-grid,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-black);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 1.5rem;
    }

    .event-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .event-link {
        width: 100%;
        display: block;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 90%;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Utility Classes
   ============================================ */
.text-rose {
    color: var(--color-rose);
}

.text-white {
    color: var(--color-white);
}

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}