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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 80%, rgba(0, 0, 0, 0.1) 100%),
        url('design-assets/annika.jpg');
    background-size: cover, cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.landing-page {
    width: 100%;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 2rem 0 0;
}

.landing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0;
    padding: 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero {
    color: white;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    width: 50%;
    max-width: 600px;
}

.hero-content {
    display: block;
    text-align: left;
    margin-bottom: 2rem;
}

.text-content {
    text-align: left;
}

.image-content {
    display: none;
}


.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.year {
    color: #ef4444;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(239, 68, 68, 0.4);
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #f0f0f0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
}

.artist-section {
    margin: 1.5rem 0;
    padding: 1rem 0;
}

.artist-name {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.artist-main {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
}

.artist-credential {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ef4444;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.event-details {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.date-time {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f9fafb;
}

.times {
    font-size: 1.2rem;
    color: #d1d5db;
    font-weight: 400;
}

.venue {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.venue-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: #f3f4f6;
}

.location {
    font-size: 1.1rem;
    color: #ef4444;
    font-weight: 600;
}

.pricing {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    color: #d1d5db;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.separator {
    color: #ef4444;
    font-weight: bold;
}

.cta-section {
    margin: 2rem 0 1.5rem 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.4);
    background: linear-gradient(45deg, #dc2626, #b91c1c);
}

.connection-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.connection-note p {
    font-size: 0.95rem;
    color: #9ca3af;
    font-style: italic;
}

.site-footer {
    background: rgba(10, 8, 6, 0.9);
    color: #6b5f53;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-content p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-content a {
    color: #f87171;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #ef4444;
    text-decoration: underline;
}

/* Tablet optimizations */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        width: 60%;
        max-width: none;
    }
}

/* Medium mobile optimizations */
@media (max-width: 768px) and (min-width: 481px) {
    .container {
        padding: 0.5rem;
        width: 100%;
        height: auto;
    }

    .hero {
        padding: 1rem;
        width: 75%;
        max-width: none;
    }

    body {
    }

    .hero-content {
        display: block;
        text-align: left;
        width: 100%;
        padding-left: 0;
    }

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

    .subtitle {
        font-size: 1.4rem;
    }

    .artist-main {
        font-size: 1.6rem;
    }

    .artist-name {
        font-size: 0.9rem;
    }

    .artist-credential {
        font-size: 0.9rem;
    }

    .date {
        font-size: 1.1rem;
    }

    .times {
        font-size: 0.9rem;
    }

    .venue-name {
        font-size: 0.9rem;
    }

    .location {
        font-size: 0.9rem;
    }

    .pricing {
        font-size: 0.9rem;
    }

    .pricing {
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }

    .site-footer {
        margin-top: 1rem;
        padding: 1rem 0;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-content p {
        font-size: 0.8rem;
        margin: 0.3rem 0;
    }
}

/* Small mobile optimizations */
@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }

    .hero {
        width: 90%;
        max-width: none;
        padding: 0.5rem;
    }

    body {
        background-size: 150%;
    }

    .hero-content {
        display: block;
        text-align: left;
        width: 100%;
        padding-left: 0;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .artist-main {
        font-size: 1.4rem;
    }

    .artist-name {
        font-size: 0.8rem;
    }

    .artist-credential {
        font-size: 0.8rem;
    }

    .date {
        font-size: 1rem;
    }

    .times {
        font-size: 0.8rem;
    }

    .venue-name {
        font-size: 0.8rem;
    }

    .location {
        font-size: 0.8rem;
    }

    .pricing {
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .date {
        font-size: 1.4rem;
    }

    .times {
        font-size: 1.1rem;
    }

    .venue-name {
        font-size: 1.1rem;
    }

    .pricing {
        justify-content: flex-start;
        gap: 0.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .artist-main {
        font-size: 1.7rem;
    }

    .hero {
        padding: 1.5rem 1rem;
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .main-title {
        font-size: 4rem;
    }

    .subtitle {
        font-size: 3rem;
    }

    .artist-main {
        font-size: 3.2rem;
    }
}