/* === Global Styles === */
:root {
    --primary-dark: #0d0d0d;
    --secondary-dark: #1a1a1a;
    --tertiary-dark: #2d2d2d;
    --accent-gold: #d4af37;
    --accent-light: #e8e8e8;
    --text-primary: #f0f0f0;
    --text-secondary: #b0b0b0;
    --border-color: #404040;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 20px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
}

.logo-link {
    color: inherit;
    text-decoration: none;
}

.logo-link:link,
.logo-link:visited,
.logo-link:hover,
.logo-link:active {
    color: inherit;
    text-decoration: none;
}

.logo .subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* === Hero Section === */
.hero {
    margin-top: 80px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    object-fit: cover;
    object-position: center 40%;
}

.bio-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero {
    background: linear-gradient(135deg, #111111 0%, #252525 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 20px;
    max-width: 760px;
    margin: 0 auto;
}

.hero p {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.home-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-button:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.cta-button {
    padding: 15px 40px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* === Section Styles === */
.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

section {
    padding: 80px 0;
}

/* === Upcoming Events Section === */
.upcoming-section {
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.event-card {
    background: var(--tertiary-dark);
    border: 1px solid var(--border-color);
    display: flex;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.event-date {
    background: linear-gradient(135deg, var(--accent-gold), #e8b347);
    color: var(--primary-dark);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    font-weight: 700;
}

.event-date .month {
    font-size: 14px;
}

.event-date .day {
    font-size: 36px;
}

.event-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-info h3 {
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.event-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.event-info p.p1 {
    color: var(--text-secondary);
    margin: 0 0 8px 0;
    font: 12px Times, serif;
}

.event-info p.p2 {
    color: var(--text-secondary);
    margin: 0;
    font: 12px Times, serif;
    min-height: 14px;
}

.event-info span.s1 {
    text-decoration: underline;
}

.event-date .day {
    white-space: nowrap;
}

.event-link {
    color: var(--text-primary);
    text-decoration: underline;
}

.event-link:hover {
    color: var(--accent-light);
}

/* === Bio Section === */
.bio-section {
    background: var(--primary-dark);
}

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

.bio-image {
    display: flex;
    align-items: flex-start;
}

.bio-image img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

.bio-text h2 {
    margin-bottom: 30px;
}

.bio-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

.discography {
    margin-top: 40px;
    background: var(--tertiary-dark);
    padding: 30px;
    border-left: 4px solid var(--accent-gold);
}

.discography h3,
.discography h4,
.discography h5 {
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.discography h4 {
    font-size: 22px;
    margin-top: 24px;
}

.discography h5 {
    font-size: 18px;
    margin-top: 18px;
}

.discography p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 16px;
}

.discography em {
    color: var(--text-primary);
    font-style: italic;
}

.placeholder-image {
    background: linear-gradient(135deg, var(--tertiary-dark), var(--secondary-dark));
    border: 2px dashed var(--border-color);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.placeholder-image:hover {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
}

.placeholder-image i {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.placeholder-image p {
    color: var(--text-secondary);
}

/* === Project Section (Gavro Quartet) === */
.project-section {
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.project-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--text-secondary);
}

.band-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.band-links a {
    display: inline-flex;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease;
}

.band-links a:hover {
    background: var(--accent-light);
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.project-text h3 {
    color: var(--accent-gold);
    font-size: 28px;
    margin-bottom: 20px;
}

.project-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.gq-description {
    background: #ffffff;
    color: #000000;
    font-family: Times, serif;
    padding: 26px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.gq-description p {
    margin: 0 0 12px 0;
    font: 12px Times, serif;
    color: #000000;
}

.gq-description p.p2 {
    margin-bottom: 0;
    min-height: 14px;
}

.project-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Single-row gallery for projects (4 equal images) */
.project-images.single-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 24px;
    align-items: stretch;
}

.project-images.single-row .project-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(45,45,45,0.6), rgba(26,26,26,0.6));
}

.project-images.single-row .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Tall variant for one image: larger box, cropped, faces centered lower */
.project-images.single-row .project-image.tall {
    aspect-ratio: 3/2;
}

.project-images.single-row .project-image.tall img {
    object-fit: cover;
    object-position: center 75%;
}

@media (max-width: 900px) {
    .project-images.single-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .project-images.single-row {
        grid-template-columns: 1fr;
    }
}

.project-images img,
.gallery-item img,
.bio-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

.project-image {
    overflow: hidden;
}

.video-placeholder {
    background: linear-gradient(135deg, var(--tertiary-dark), var(--secondary-dark));
    border: 2px solid var(--border-color);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
}

.video-placeholder i {
    font-size: 64px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* === Team Section === */
.team-section {
    margin-top: 80px;
}

.team-section h3 {
    color: var(--accent-gold);
    font-size: 28px;
    text-align: center;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

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

.member-image {
    font-size: 80px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.team-member h4 {
    color: var(--accent-light);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-secondary);
}

/* === Gallery Section === */
.gallery-section {
    background: var(--primary-dark);
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 50px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--tertiary-dark);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-placeholder {
    background: linear-gradient(135deg, var(--tertiary-dark), var(--secondary-dark));
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
}

.gallery-placeholder i {
    font-size: 48px;
    color: var(--accent-gold);
}

.video-placeholder i {
    font-size: 64px;
}

.photo-caption {
    color: var(--text-secondary);
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

/* Small spacing helper for project chapters */
.project-chapter.spaced {
    margin-bottom: 28px;
}

.project-chapter.spaced .socials {
    margin-top: 36px;
}

.project-chapter .delavnica-socials {
    margin-top: 40px;
}

/* === Audio Section === */
.audio-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audio-item {
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.audio-item:hover {
    border-color: var(--accent-gold);
    background: var(--tertiary-dark);
}

.audio-controls {
    flex-shrink: 0;
}

.audio-play {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.audio-play:hover {
    background: var(--accent-light);
    transform: scale(1.1);
}

.audio-info h4 {
    color: var(--accent-light);
    margin-bottom: 5px;
}

.audio-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* === Contact Section === */
.contact-section {
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-color);
}

.contact-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 520px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 28px;
    color: var(--accent-gold);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--accent-light);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-secondary);
}

.mail-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 15px 28px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.mail-button:link,
.mail-button:visited,
.mail-button:hover,
.mail-button:active {
    color: var(--primary-dark);
    text-decoration: none;
}

.mail-button:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

.contact-item a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--tertiary-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.submit-btn {
    padding: 15px 40px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* === Social Links === */
.social-links {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.social-links h4 {
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* === Footer === */
.footer {
    background: #000000;
    border-top: 1px solid var(--border-color);
    text-align: center;
    padding: 40px 0;
}

.footer p {
    color: var(--text-secondary);
    margin: 10px 0;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 14px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        gap: 14px;
        padding: 18px;
        background: rgba(13, 13, 13, 0.98);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
        z-index: 1001;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        display: block;
        padding: 6px 0;
    }

    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .navbar {
        padding: 16px 0;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo .subtitle {
        font-size: 11px;
    }

    .hero {
        height: auto;
        min-height: 0;
        padding: 120px 0 56px;
        margin-top: 72px;
    }

    .hero h2 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .hero-image img {
        max-height: 360px;
    }

    .bio-content,
    .project-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bio-image {
        order: -1;
    }

    .section-title {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

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

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

    .audio-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-item {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        align-items: flex-start;
    }

    .logo h1 {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .logo .subtitle {
        max-width: 220px;
        line-height: 1.4;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero {
        padding: 110px 0 48px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-hero {
        padding: 110px 0 56px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .page-hero p {
        font-size: 16px;
    }

    .home-links,
    .band-links,
    .socials {
        gap: 12px;
    }

    .social-button,
    .band-links a {
        width: 100%;
    }

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

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

    .events-grid {
        gap: 18px;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        min-width: 0;
        width: 100%;
        padding: 18px;
        flex-direction: row;
        gap: 10px;
    }

    .event-date .day {
        font-size: 28px;
    }

    .event-info {
        padding: 20px;
    }

    .bio-image img,
    .project-images img,
    .gallery-item img {
        border-radius: 18px;
    }

    .discography,
    .gq-description {
        padding: 20px;
    }

    section {
        padding: 50px 0;
    }
}
