/* General Layout */
body {
    background-color: #111;
    color: #eee;
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    cursor: "🖕";
}

/* Parallax Background */
body.parallax {
    position: relative;
    background: none;
}

body.parallax::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background.jpg') no-repeat 25% 50%;
    background-size: cover;
    background-attachment: fixed;
    opacity: 75%;
    z-index: -1;
}

/* Typography */
.section-heading {
    font-size: 2rem;
    font-weight: 600;
    color: #eee;
}

.review-source {
    font-size: 1.25rem;
    font-weight: 500;
    color: #eee;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    color: #ff5555;
    text-align: center;
}

/* Navigation */
nav {
    background-color: #222;
    padding: 10px 0;
    width: 100%;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    display: inline-block;
    margin: 5px 10px;
}

nav a {
    color: #ff5555;
    text-decoration: none;
    font-weight: bold;
    padding: 12px;
    display: inline-block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: white;
    text-shadow: 0 0 8px rgba(255, 85, 85, 0.5);
    transition: all 0.2s ease-in-out;
}

/* Social Media Links */
.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links li {
    display: inline-block;
}

.social-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #f1c40f;
    font-weight: bold;
    padding: 12px;
    transition: color 0.3s ease-in-out;
}

.social-links a:hover {
    color: #e74c3c;
}

.social-links i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Content Sections */
#content {
    background: rgba(0, 0, 0, 0.505);
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
}

#gallery {
    text-align: center;
    background: #333;
    padding: 30px;
    border-radius: 10px;
}

/* Blockquote styling */
blockquote {
    border-left: 4px solid #f39c12 !important;
    background-color: rgba(248, 249, 250, 0.1);
    padding: 1rem;
    border-radius: 0.25rem;
    font-style: italic;
    color: #f1c40f;
    margin: 15px 0;
}

/* Forms */
form {
    padding: 15px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Buttons general styling */
.button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    vertical-align: middle;
    line-height: normal;
}

/* CTA Section */
.cta-container {
    width: 100%;
    margin: 40px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    margin: 10px;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: normal;
}

.cta-button.primary {
    background: #f1c40f;
    color: #000;
    border: none;
}

.cta-button.secondary {
    background: transparent;
    color: #f1c40f;
    border: 2px solid #f1c40f;
}

.featured-button {
    background: #ff5555;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: skew(2deg);
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    line-height: normal;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    background: #222;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 5px;
        margin: 0;
    }

    .biobody {
        padding: 10px 5px;
    }

    .container.biobody {
        padding: 5px;
    }

    #content {
        margin: 5px;
        padding: 10px;
    }

    blockquote {
        margin: 10px 0;
        padding: 10px;
    }

    section {
        margin-bottom: 20px;
    }

    .display-4 {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .review-source {
        font-size: 1.1rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }

    .main-heading {
        font-size: 2rem;
    }

    .reviews-section {
        font-size: 1.2rem;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .featured-description {
        font-size: 1rem;
    }

    .stat-item {
        flex: 0 0 100%;
        margin: 10px 0;
    }

    #show-blurbs h3 {
        font-size: 1.5rem;
    }
    
    #show-blurbs p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
        padding: 8px;
        justify-content: center;
    }

    .gallery-grid .gallery-item {
        width: 100%;
        max-width: 150px;
    }

    .gallery-grid .gallery-thumb {
        height: 150px;
    }
}

@media (min-width: 768px) {
    nav ul li {
        margin: 0 15px;
    }
    
    nav a {
        font-size: 1.2rem;
    }
    
    button {
        width: auto;
    }

    .venue-links {
        flex-direction: row;
        justify-content: center;
    }
}

.animated-counter {
    position: relative;
    display: inline-block;
    min-width: 2ch;
    height: 1.2em;
}

.animated-counter::after {
    content: "10";
    position: absolute;
    left: 0;
    animation: countUp 10s forwards;
}

@keyframes countUp {
    0%, 9% { content: "10"; }
    10%, 19% { content: "11"; }
    20%, 29% { content: "12"; }
    30%, 39% { content: "13"; }
    40%, 49% { content: "14"; }
    50%, 59% { content: "15"; }
    60%, 69% { content: "16"; }
    70%, 79% { content: "17"; }
    80%, 89% { content: "18"; }
    90%, 94% { content: "19"; }
    95%, 100% { content: "20"; }
}

/* Spotlight Section */
.spotlight-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.spotlight-effect {
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: radial-gradient(circle, rgba(255,85,85,0.2) 0%, rgba(0,0,0,0) 70%);
    animation: pan 15s linear infinite;
}

@keyframes pan {
    from {
        transform: translate(-50%, -50%);
    }
    to {
        transform: translate(50%, 50%);
    }
}

.main-heading {
    font-size: 3rem;
    text-shadow: 0 0 10px rgba(255,85,85,0.8);
    margin-bottom: 30px;
    text-align: center;
}

/* Reviews Section */
.reviews-section {
    font-size: 1.6rem;
    color: #f1c40f;
    margin-bottom: 40px;
}

.review-item {
    margin-bottom: 2rem;
}

/* Featured Card */
.featured-card {
    background: rgba(0,0,0,0.8);
    border: 2px solid #ff5555;
    border-radius: 12px;
    padding: 30px;
    margin: 20px auto;
    transform: skew(-2deg);
    text-align: center;
    max-width: 600px;
}

.featured-title {
    color: #ff5555;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.featured-description {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-align: left;
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
}

.stat-item {
    margin: 20px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: #f1c40f;
}

.stat-label {
    color: #aaa;
}

/* Show Blurbs Section */
#show-blurbs {
    margin: 40px 0;
}

#show-blurbs article {
    background: rgba(0, 0, 0, 0.261);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    border: 2px solid #ff5555;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    transform: skew(-1deg);
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#show-blurbs p {
    background: rgba(0, 0, 0, 1);
}

#show-blurbs article.revenge {
    background-image: url('../images/revenge-bg.jpg');
}

#show-blurbs article.middle-rage {
    background-image: url('../images/middle-rage-bg.jpg');
}

#show-blurbs h3 {
    color: #ff5555;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#show-blurbs p {
    color: #eee;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Shows Page */
.shows-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.venue-section {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #ff5555;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}

.venue-section h3 {
    color: #ff5555;
    margin-bottom: 15px;
}

/* Additional Contact Links */
.additional-links {
    margin-top: 40px;
    text-align: center;
}

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

.venue-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 85, 85, 0.1);
    border: 1px solid #ff5555;
    border-radius: 4px;
    color: #ff5555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.venue-link:hover {
    background: rgba(255, 85, 85, 0.2);
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    justify-items: center;
    align-items: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 2px solid #ff5555;
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.gallery-item:hover {
    transform: scale(1.02);
    cursor: pointer;
}

.gallery-thumb {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

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

#tagesspiegel-logo {
 background-color: white;
 /* add rounded borders */ 
 border-radius: 5px;

}

/* General Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}