:root {
    --bg-dark: #02060f;
    --bg-card: rgba(10, 25, 47, 0.6);
    --text-main: #e0e8f5;
    --text-muted: #8a9bb8;
    --accent: #b89b5e;
    --accent-hover: #d4b575;
    --accent-glow: rgba(184, 155, 94, 0.5);
    --accent-glow-strong: rgba(184, 155, 94, 0.7);
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-logo: 'Cinzel', serif;
}

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

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(ellipse at 20% 10%, rgba(20, 60, 120, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(30, 80, 160, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, #0a1929 0%, #050a14 60%, #000 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

h1, h2, h3, p, a, button, input, textarea, select {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* --- НАВИГАЦИЯ --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(2, 6, 15, 0.95);
    z-index: 1000;
    border-bottom: 1px solid rgba(184, 155, 94, 0.15);
}

nav {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

.logo {
    font-family: var(--font-logo);
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeSlideUp 0.6s ease-out 0.15s forwards;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--accent);
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- SVG ФЛАЖКИ --- */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeSlideUp 0.6s ease-out 0.3s forwards;
}

.lang-flag {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.lang-flag span {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.lang-flag:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

.lang-flag.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-glow);
}

.lang-flag.active span {
    color: var(--bg-dark);
}

/* --- БУРГЕР-МЕНЮ --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --- СЕКЦИИ --- */
section {
    padding: 6rem 2rem;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.section-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 0;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* --- HERO --- */
#home {
    height: 100vh;
    max-width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 40%, rgba(40, 90, 180, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(20, 50, 120, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, #0a1929, #02060f);
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content h1 {
    font-family: var(--font-logo);
    font-size: 4.5rem;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(184, 155, 94, 0.3);
    filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(10deg) drop-shadow(0 0 20px rgba(201, 169, 97, 0.6)) drop-shadow(0 0 40px rgba(201, 169, 97, 0.3));
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease-out forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
}

/* --- КНОПКИ --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--accent-glow-strong), 0 0 50px var(--accent-glow);
    transform: translateY(-2px);
}

.btn-filled {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(184, 155, 94, 0.3);
}

.btn-filled:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    box-shadow: 0 0 30px var(--accent-glow-strong), 0 0 60px var(--accent-glow);
}

/* --- МУЗЫКА --- */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.album-card {
    background: var(--bg-card);
    border: 1px solid rgba(184, 155, 94, 0.15);
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(184, 155, 94, 0.1);
}

.album-cover {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    background: linear-gradient(135deg, #0a1929, #1a2f4f);
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    font-family: var(--font-head);
    margin-bottom: 0.5rem;
}

.album-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.smart-link-btn {
    display: block;
    text-align: center;
    background: rgba(184, 155, 94, 0.1);
    border: 1px solid rgba(184, 155, 94, 0.3);
    padding: 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.smart-link-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-glow);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0a1929, #050a14);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 155, 94, 0.15);
    margin-top: 2rem;
}

/* --- КОНЦЕРТЫ --- */
.tour-list {
    max-width: 800px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(184, 155, 94, 0.15);
    transition: background 0.3s;
    background: var(--bg-card);
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
}

.tour-item:hover {
    background: rgba(20, 40, 70, 0.6);
    box-shadow: 0 0 20px rgba(184, 155, 94, 0.1);
}

.tour-date {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--accent);
    min-width: 120px;
}

.tour-city {
    flex-grow: 1;
    padding: 0 1rem;
}

.tour-venue {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ticket-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.ticket-btn:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-glow);
}

/* --- EPK --- */
.epk-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.epk-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.epk-downloads {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--bg-card);
    border-left: 3px solid var(--accent);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.download-link:hover {
    background: rgba(20, 40, 70, 0.8);
    box-shadow: 0 0 20px rgba(184, 155, 94, 0.15);
    transform: translateX(5px);
}

.download-link svg {
    flex-shrink: 0;
}

/* --- ГАЛЕРЕЯ --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(184, 155, 94, 0.3);
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--accent-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid rgba(184, 155, 94, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: brightness(0.85) contrast(1.05);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.1);
}

.gallery-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 25px var(--accent-glow);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(2, 6, 15, 0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px var(--accent-glow);
}

.gallery-overlay h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

/* --- ЛАЙТБОКС --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 15, 0.97);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 60px var(--accent-glow);
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: 1px solid rgba(184, 155, 94, 0.3);
    color: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2001;
}

.lightbox-close:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--accent-glow-strong);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(184, 155, 94, 0.3);
    color: var(--accent);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-nav:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--accent-glow-strong);
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-main);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
    padding: 0.5rem 1.5rem;
    background: rgba(2, 6, 15, 0.7);
    border-radius: 4px;
    border: 1px solid rgba(184, 155, 94, 0.2);
}

/* --- ФОРМА БУКИНГА --- */
.booking-section {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.booking-form .full-width {
    grid-column: 1 / -1;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(184, 155, 94, 0.2);
    color: var(--text-main);
    font-family: var(--font-body);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(184, 155, 94, 0.3);
    color: var(--text-main);
}

.booking-form textarea {
    min-height: 120px;
    resize: vertical;
}

.booking-form select {
    color: var(--text-muted);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a9bb8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.booking-form select option {
    background: var(--bg-dark);
    color: var(--text-main);
    padding: 0.5rem;
}

.booking-form select option:disabled {
    color: var(--text-muted);
}

.booking-form input[type="date"] {
    color: var(--text-muted);
}

.booking-form input[type="date"]::-webkit-datetime-edit,
.booking-form input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    color: var(--text-muted) !important;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: var(--accent);
    -webkit-mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3e%3cline x1='16' y1='2' x2='16' y2='6'/%3e%3cline x1='8' y1='2' x2='8' y2='6'/%3e%3cline x1='3' y1='10' x2='21' y2='10'/%3e%3c/svg%3e");
    mask-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3e%3cline x1='16' y1='2' x2='16' y2='6'/%3e%3cline x1='8' y1='2' x2='8' y2='6'/%3e%3cline x1='3' y1='10' x2='21' y2='10'/%3e%3c/svg%3e");
    opacity: 0.8;
    transition: opacity 0.3s;
    cursor: pointer;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.booking-form input[type="date"]:valid:not(:placeholder-shown) {
    color: var(--text-main);
}

/* --- КОНТАКТЫ --- */
.contact-info {
    text-align: center;
    color: var(--text-muted);
    margin-top: 4rem;
}

.contact-info a {
    color: var(--accent);
}

.contact-info a:hover {
    text-shadow: 0 0 10px var(--accent-glow);
}

.website-link {
    color: var(--accent) !important;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 2px;
}

.website-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    transition: width 0.3s ease;
}

.website-link:hover::after {
    width: 100%;
}

.website-link:hover {
    text-shadow: 0 0 15px var(--accent-glow);
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-item svg {
    color: var(--accent);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(184, 155, 94, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 0 20px var(--accent-glow-strong);
    transform: translateY(-3px);
}

/* --- ФУТЕР --- */
footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(184, 155, 94, 0.15);
    color: var(--text-muted);
    font-size: 0.8rem;
}

.onerpm-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(184, 155, 94, 0.1);
    border: 1px solid rgba(184, 155, 94, 0.3);
    border-radius: 4px;
    color: var(--accent);
}

.footer-website {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(184, 155, 94, 0.1);
}

.footer-site-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(184, 155, 94, 0.08);
    border: 1px solid rgba(184, 155, 94, 0.25);
    border-radius: 4px;
    color: var(--accent) !important;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-site-link:hover {
    background: var(--accent);
    color: var(--bg-dark) !important;
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-2px);
}

.footer-site-link svg {
    transition: transform 0.3s;
}

.footer-site-link:hover svg {
    transform: rotate(15deg);
}

/* --- АДАПТИВНОСТЬ ГАЛЕРЕИ --- */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
}

/* --- ОБЩАЯ АДАПТИВНОСТЬ --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        padding: 1rem;
    }

    section {
        padding: 4rem 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(2, 6, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(184, 155, 94, 0.2);
        animation: none;
        opacity: 1;
        transform: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 3px;
        overflow-wrap: break-word;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        width: 100%;
    }

    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .epk-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .tour-date {
        min-width: auto;
    }

    .btn {
        display: block;
        width: calc(100% - 2rem);
        margin: 0.5rem 1rem;
    }

    .lang-flag span {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 0.6rem;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
    }

    .lightbox-prev {
        left: 0.5rem;
    }

    .lightbox-next {
        right: 0.5rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}