@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700;900&family=Montserrat:ital,wght@0,700;0,800;0,900;1,700;1,800;1,900&family=Outfit:wght@700;800;900&display=swap');

@font-face {
    font-family: 'Vegan Style';
    src: url('vegan-style-font/VeganStylePersonalUse-5Y58.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --gold: #d4af37;
    --gold-light: #f4cf57;
    --crimson: #c41e3a;
    --crimson-light: #e42e4a;
    --dark: #0a0a0a;
    --dark-surface: #111111;
    --dark-card: #1a1a1a;
    --dark-border: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --text-dark: #333333;
    --text-muted: #555555;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    overflow-x: hidden;
    background: var(--dark);
    color: var(--text-primary);
}

body.light-body {
    background: #fff;
    color: var(--text-dark);
}

a {
    text-decoration: none;
}

.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold) !important;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    margin: 0 1rem;
    transition: color 0.3s;
    position: relative;
    letter-spacing: 0.03em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

.navbar.scrolled .nav-link {
    color: #333 !important;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--gold) !important;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    transition: all 0.3s;
}

.navbar.scrolled .social-icons a {
    color: #333;
}

.social-icons a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.navbar.scrolled .social-icons a:hover {
    color: var(--gold);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('assets/herosection image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(45, 27, 27, 0.75) 50%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.artist-name {
    font-size: clamp(3.2rem, 7.5vw, 6.8rem);
    font-weight: 900;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
    line-height: 1.05;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f4cf57 40%, #d4af37 70%, #e42e4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.tagline {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-custom {
    padding: 1rem 2rem;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.05em;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-gold:hover {
    background: var(--gold-light);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-red {
    background: var(--crimson);
    color: #fff;
}

.btn-red:hover {
    background: var(--crimson-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: #fff;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
}

.fumes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.fume {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    mix-blend-mode: screen;
}

.fume:nth-child(1) {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: 5%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.6) 0%, rgba(196, 30, 58, 0.4) 30%, transparent 70%);
    animation: float1 12s infinite ease-in-out;
}

.fume:nth-child(2) {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: 25%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.5) 0%, rgba(220, 20, 60, 0.3) 30%, transparent 70%);
    animation: float2 15s infinite ease-in-out;
}

.fume:nth-child(3) {
    width: 600px;
    height: 600px;
    bottom: -200px;
    right: 15%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.7) 0%, rgba(139, 0, 0, 0.4) 30%, transparent 70%);
    animation: float3 18s infinite ease-in-out;
}

.fume:nth-child(4) {
    width: 450px;
    height: 450px;
    bottom: -120px;
    right: 0%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.5) 0%, rgba(196, 30, 58, 0.3) 30%, transparent 70%);
    animation: float4 14s infinite ease-in-out;
}

.fume:nth-child(5) {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: 40%;
    background: radial-gradient(circle, rgba(178, 34, 34, 0.6) 0%, rgba(220, 20, 60, 0.3) 30%, transparent 70%);
    animation: float5 16s infinite ease-in-out;
}

.fume:nth-child(6) {
    width: 550px;
    height: 550px;
    bottom: -180px;
    right: 35%;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.5) 0%, rgba(196, 30, 58, 0.3) 30%, transparent 70%);
    animation: float6 20s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.7; }
    25% { transform: translate(30px, -120px) scale(1.3) rotate(90deg); opacity: 0.4; }
    50% { transform: translate(-20px, -200px) scale(1.1) rotate(180deg); opacity: 0.6; }
    75% { transform: translate(40px, -150px) scale(1.4) rotate(270deg); opacity: 0.3; }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.6; }
    33% { transform: translate(-40px, -180px) scale(1.4) rotate(120deg); opacity: 0.3; }
    66% { transform: translate(30px, -140px) scale(1.2) rotate(240deg); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.8; }
    30% { transform: translate(-50px, -160px) scale(1.2) rotate(100deg); opacity: 0.4; }
    60% { transform: translate(40px, -220px) scale(1.5) rotate(200deg); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.7; }
    40% { transform: translate(50px, -190px) scale(1.3) rotate(140deg); opacity: 0.3; }
    80% { transform: translate(-30px, -130px) scale(1.1) rotate(280deg); opacity: 0.5; }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.6; }
    35% { transform: translate(-35px, -170px) scale(1.4) rotate(110deg); opacity: 0.4; }
    70% { transform: translate(45px, -210px) scale(1.2) rotate(220deg); opacity: 0.5; }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.7; }
    25% { transform: translate(60px, -150px) scale(1.5) rotate(80deg); opacity: 0.3; }
    50% { transform: translate(-40px, -230px) scale(1.3) rotate(160deg); opacity: 0.6; }
    75% { transform: translate(30px, -180px) scale(1.1) rotate(240deg); opacity: 0.4; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

.album-section {
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.album-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.album-cover {
    flex: 0 0 500px;
    position: relative;
}

.album-cover img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.album-info {
    flex: 1;
    color: #333;
}

.album-title {
    font-size: 4rem;
    font-weight: 400;
    color: var(--crimson);
    margin-bottom: 1rem;
    font-family: 'Vegan Style', cursive;
    font-style: italic;
    text-transform: none;
}

.album-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.album-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.album-section .btn-outline {
    border-color: #333;
    color: #333;
}

.album-section .btn-outline:hover {
    background: #333;
    color: #fff;
}

.marquee-section {
    width: 100%;
    background: #fff;
    padding: 0;
    margin: 0;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 2rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-right: 3rem;
}

.marquee-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--crimson);
    letter-spacing: 0.05em;
}

.marquee-logo {
    height: 40px;
    width: auto;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, #1a0a0a 50%, var(--dark) 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center bottom, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    padding: 6rem 2rem 3rem;
}

.page-hero-title {
    font-size: 5rem;
    font-family: 'Vegan Style', cursive;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.section-dark {
    background: var(--dark);
    padding: 5rem 0;
}

.section-dark-alt {
    background: var(--dark-surface);
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-family: 'Vegan Style', cursive;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--crimson));
    margin: 1.5rem auto;
    border: none;
}

.card-dark {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
}

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

.site-footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding: 3rem 0 1.5rem;
}

.footer-brand {
    font-family: 'Vegan Style', cursive;
    font-size: 2.5rem;
    color: var(--gold);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    margin: 0 1rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.4rem;
    margin: 0 0.75rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-border);
}

.gallery-masonry {
    column-count: 3;
    column-gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--dark-border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.35);
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.gallery-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--dark-border);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
    padding: 1rem;
    z-index: 10000;
}

.lightbox-nav:hover {
    color: var(--gold);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-control {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    color: var(--text-primary);
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: var(--dark-card);
    color: var(--text-primary);
}

.contact-form .form-control::placeholder {
    color: var(--text-secondary);
}

.contact-form label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.contact-info-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-info-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--crimson), var(--gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out both;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-5px);
}

.timeline-year {
    font-family: 'Vegan Style', cursive;
    font-size: 1.5rem;
    color: var(--crimson);
    margin-bottom: 0.5rem;
}

.timeline-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.05rem;
}

.tour-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--gold);
    transition: all 0.3s;
}

.tour-card:hover {
    border-left-color: var(--crimson);
    background: rgba(212, 175, 55, 0.03);
}

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

.tour-date .month {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tour-date .day {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-primary);
    line-height: 1;
}

.tour-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.tour-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.tour-ticket {
    margin-left: auto;
}

.music-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.music-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.12);
}

.music-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.music-card-body {
    padding: 1.5rem;
}

.music-card-body h4 {
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.music-card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.streaming-links a {
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: all 0.3s;
}

.streaming-links a:hover {
    color: var(--gold);
    transform: scale(1.2);
}

.press-download {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
}

.press-download i {
    font-size: 2rem;
    color: var(--gold);
}

.press-download h4 {
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.press-download p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    font-family: 'Vegan Style', cursive;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .artist-name {
        font-size: 4rem;
    }

    .album-container {
        flex-direction: column;
        text-align: center;
    }

    .album-cover {
        flex: 0 0 auto;
        max-width: 400px;
    }

    .album-buttons {
        justify-content: center;
    }

    .page-hero-title {
        font-size: 3.5rem;
    }

    .tour-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .tour-ticket {
        margin-left: 0;
    }

    .gallery-masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .artist-name {
        font-size: 3rem;
    }

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

    .cta-buttons {
        justify-content: center;
    }

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

    .album-cover {
        max-width: 300px;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .timeline {
        padding-left: 2rem;
    }
}

@media (max-width: 576px) {
    .gallery-masonry {
        column-count: 1;
    }

    .page-hero-title {
        font-size: 2rem;
    }
}
