* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #dc2626;
    --metallic-silver: #c0c0c0;
    --metallic-gold: #ffd700;
    --dark-metal: #1a1a1a;
    --deep-black: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-metal) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Rock band typography */
h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.brand-heading {
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    letter-spacing: 4px;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(5px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: transparent;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px var(--primary-red);
}

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

main {
    margin-top: 0;
}

section {
    padding: 6rem 2rem;
}

.hero {
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        url('concert-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(0, 0, 0, 0.95) 100%),
        radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}



.hero > * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.hero-logo {
    position: relative;
}

.hero-logo-img {
    height: 280px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.5)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.5)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(220, 38, 38, 0.8)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.5));
        transform: scale(1.02);
    }
}

.tagline {
    background: var(--deep-black);
    padding: 5rem 2rem;
    text-align: center;
}

.tagline p {
    font-size: 1.4rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--metallic-silver), var(--text-primary), var(--metallic-gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    max-width: 800px;
    line-height: 1.8;
    margin: 0 auto;
}

.tour {
    background-image: url('kuvat/NA-23.jpg');
    background-size: cover;
    background-position: center 80%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 8rem 0;
}

.tour::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.tour > * {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.tour h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--primary-red), var(--metallic-gold), var(--metallic-silver));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    position: relative;
}

.tour h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--metallic-gold));
    border-radius: 2px;
}

.gallery {
    background-image: url('kuvat/NA-23.jpg');
    background-size: cover;
    background-position: center 80%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 8rem 0;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.gallery > * {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.gallery h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--metallic-gold), var(--text-primary), var(--metallic-silver));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--metallic-gold), var(--primary-red));
    border-radius: 2px;
}

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

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(220, 38, 38, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-image:hover {
    transform: scale(1.05) rotateZ(1deg);
    border-color: var(--primary-red);
    box-shadow: 
        0 8px 25px rgba(220, 38, 38, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2);
}

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

.fanshop {
    background: linear-gradient(135deg, var(--deep-black) 0%, var(--dark-metal) 50%, var(--deep-black) 100%);
    padding: 8rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: none;
    position: relative;
    overflow: hidden;
}

.fanshop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.fanshop > * {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.fanshop h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 4px;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    background: linear-gradient(135deg, var(--primary-red), var(--metallic-gold), var(--metallic-silver));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    position: relative;
}

.fanshop h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--metallic-gold), var(--metallic-silver));
    border-radius: 2px;
}

.fanshop .products {
    max-width: 1200px;
    margin: 0 auto;
}

.album {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.album-cover {
    width: 200px;
    height: 200px;
    background-color: #222;
    border: 1px solid #333;
}

.album-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.album-info p {
    color: #666;
    margin-bottom: 1rem;
}

.play-btn,
.tickets-btn,
.buy-btn,
a.tickets-btn {
    background: linear-gradient(135deg, var(--deep-black), var(--dark-metal));
    color: var(--text-primary);
    border: 1px solid var(--metallic-silver);
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 3px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    text-decoration: none;
    display: inline-block;
}

.play-btn::before,
.tickets-btn::before,
.buy-btn::before,
a.tickets-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), rgba(220, 38, 38, 0.2), transparent);
    transition: left 0.6s ease;
}

.play-btn:hover,
.tickets-btn:hover,
.buy-btn:hover,
a.tickets-btn:hover {
    border-color: var(--metallic-gold);
}

.play-btn:hover::before,
.tickets-btn:hover::before,
.buy-btn:hover::before,
a.tickets-btn:hover::before {
    left: 100%;
}

.tickets-btn.sold-out {
    background-color: #666;
    color: #999;
    border-color: #666;
    cursor: not-allowed;
}

.tickets-btn.sold-out:hover {
    background-color: #666;
    color: #999;
}

.tour-dates {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #333;
}

.date-day {
    font-weight: bold;
    min-width: 80px;
}

.date-venue {
    flex: 1;
    margin-left: 2rem;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 2rem;
    justify-items: center;
    align-items: stretch;
}

.product {
    position: relative;
    text-align: center;
    background-color: #000;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product:hover {
    transform: translateY(-2px);
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background-color: #000;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: block;
}

.product-info {
    padding: 1rem;
    color: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-text {
    flex-grow: 1;
}

.product h3 {
    margin: 0 0 0.5rem 0;
    color: white;
    font-size: 1.1rem;
}

.product .price {
    font-size: 1.2rem;
    color: var(--metallic-silver);
    margin: 0.5rem 0 0 0;
    font-weight: bold;
}

.product .buy-btn {
    margin: 1rem auto 1rem auto;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    display: inline-block;
    width: auto;
    align-self: center;
}

.product-gallery {
    position: relative;
    background-color: #000;
}

.product-gallery .product-image {
    background-color: #000;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.gallery-arrow:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-arrow.prev {
    left: 10px;
}

.gallery-arrow.next {
    right: 10px;
}

.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}


footer {
    background-color: #000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #666;
    font-style: italic;
    margin: 0;
    letter-spacing: 1px;
}


.footer-bottom {
    margin-top: 1rem;
}

.contact {
    background-image: url('kuvat/NA-21.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 8rem 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.contact > * {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--metallic-silver), var(--text-primary), var(--primary-red));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--metallic-silver), var(--primary-red));
    border-radius: 2px;
}


.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.contact-info {
    text-align: center;
    padding: 2rem 0 0 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-item {
    display: inline-block;
    margin: 0 2rem 1rem 0;
    text-align: center;
}

.contact-item:last-child {
    margin-right: 0;
}

.contact-item strong {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.contact-item p {
    font-size: 1rem;
    margin: 0;
    color: var(--text-primary);
}

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

.contact-info a:hover {
    color: var(--metallic-gold);
}

.form-description {
    color: #999;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #666;
}

.submit-btn {
    background: linear-gradient(135deg, var(--deep-black), var(--dark-metal));
    color: var(--text-primary);
    border: 1px solid var(--metallic-silver);
    padding: 1rem 2.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    letter-spacing: 3px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), rgba(220, 38, 38, 0.2), transparent);
    transition: left 0.6s ease;
}

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

.submit-btn:hover::before {
    left: 100%;
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Order Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #111;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    color: #666;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover {
    color: #fff;
}

.modal h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.order-product-info {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #222;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

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

.modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #fff;
}

.modal .form-group input,
.modal .form-group textarea,
.modal .form-group select {
    width: 100%;
    padding: 0.8rem;
    background-color: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 4px;
    font-size: 1rem;
}

.modal .form-group input:focus,
.modal .form-group textarea:focus,
.modal .form-group select:focus {
    outline: none;
    border-color: #555;
    background-color: #333;
}

.modal .submit-btn {
    background: linear-gradient(135deg, transparent, rgba(220, 38, 38, 0.1));
    color: var(--text-primary);
    border: 2px solid var(--primary-red);
    padding: 0.8rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    width: 100%;
    font-size: 1rem;
    border-radius: 4px;
}

.modal .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), rgba(220, 38, 38, 0.2), transparent);
    transition: left 0.6s ease;
}

.modal .submit-btn:hover {
    border-color: var(--metallic-gold);
}

.modal .submit-btn:hover::before {
    left: 100%;
}

.pickup-info {
    background-color: #333;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #666;
}

.pickup-info h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
}

.pickup-info p {
    color: #ccc;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    header {
        padding: 0.5rem 0;
    }
    
    /* Hero section */
    .hero {
        padding: 0 1rem;
        min-height: 100vh;
        background-position: 65% center;
    }
    
    .hero-logo-img {
        height: 200px;
    }
    
    /* Tagline */
    .tagline {
        padding: 4rem 1rem;
        margin-bottom: 3rem;
    }
    
    .tagline p {
        font-size: 1.1rem;
        letter-spacing: 2px;
        line-height: 1.6;
    }
    
    /* All sections */
    .tour,
    .gallery,
    .fanshop,
    .contact {
        padding: 6rem 0;
    }
    
    /* Tour section */
    .tour > *,
    .gallery > *,
    .contact > *,
    .fanshop > * {
        padding: 0 1rem;
    }
    
    .tour h2,
    .gallery h2,
    .fanshop h2,
    .contact h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .date {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .date-venue {
        margin-left: 0;
        font-size: 1.1rem;
    }
    
    .date-day {
        font-size: 1.2rem;
        min-width: auto;
    }
    
    /* Products grid */
    .products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 1.5rem;
        align-items: stretch;
    }
    
    .product-info {
        padding: 0.8rem;
    }
    
    .product h3 {
        font-size: 1rem;
    }
    
    .product .price {
        font-size: 1.1rem;
        margin: 0.4rem 0 0.8rem 0;
    }
    
    .product h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .price {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    /* Buttons */
    .play-btn,
    .tickets-btn,
    .buy-btn,
    a.tickets-btn,
    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    /* Contact */
    .contact-content {
        gap: 3rem;
    }
    
    .contact-item {
        display: block;
        margin: 0 0 1.5rem 0;
        text-align: center;
    }
    
    .contact-form h3,
    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .footer-info {
        justify-content: center;
        gap: 2rem;
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    /* Modal */
    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
        max-height: 90vh;
    }
    
    .close {
        top: 0.5rem;
        right: 1rem;
        font-size: 1.5rem;
    }
    
    /* Fix parallax on mobile devices */
    .hero,
    .tour,
    .gallery,
    .contact {
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero {
        background-position: 70% center;
    }
    
    .hero-logo-img {
        height: 150px;
    }
    
    .tagline {
        padding: 3rem 1rem;
    }
    
    .tagline p {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .tour,
    .gallery,
    .fanshop,
    .contact {
        padding: 4rem 0;
    }
    
    .tour h2,
    .gallery h2,
    .fanshop h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .products {
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: stretch;
    }
    
    .product-info {
        padding: 1rem;
    }
    
    .product h3 {
        font-size: 1.1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

/* Rock concert stage lighting effects */
@keyframes stageLight {
    0%, 100% { 
        box-shadow: 0 0 50px rgba(220, 38, 38, 0.3);
        transform: translateX(0);
    }
    25% { 
        box-shadow: 0 0 70px rgba(255, 215, 0, 0.4);
        transform: translateX(10px);
    }
    50% { 
        box-shadow: 0 0 60px rgba(192, 192, 192, 0.3);
        transform: translateX(-5px);
    }
    75% { 
        box-shadow: 0 0 80px rgba(220, 38, 38, 0.5);
        transform: translateX(5px);
    }
}


/* Amplifier glow effect for headings */
@keyframes ampGlow {
    0%, 100% { 
        text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
    }
    50% { 
        text-shadow: 0 0 30px rgba(220, 38, 38, 0.8), 0 0 40px rgba(255, 215, 0, 0.3);
    }
}

.tour h2,
.gallery h2,
.fanshop h2,
.contact h2 {
    animation: ampGlow 3s ease-in-out infinite;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}