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

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

img {
    pointer-events: none;
}


/* --- HEADER AND MENU --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(10, 10, 10, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #222;
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(to bottom, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    border-radius: 50%;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-link:hover .nav-logo-img {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.8));
}

.logo-link:hover .logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.6));
}

.main-nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin-left: 30px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #00ffff;
}

.burger-menu:hover {
    transform: scale(1.1);
    color: #ff007f;
}

/* --- MAIN --- */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    flex-wrap: wrap;
    overflow: hidden;
}

/* PHOTOS IN BACKGROUND */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;

    transition: opacity 2s ease-in-out, transform 7s linear;
}

/* ACTIVE PHOTO */
.hero-slide.active {
    opacity: 1;
    transform: scale(1.08);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(43, 16, 85, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 2;
}

.hero-content, .neon-gig-box {
    position: relative;
    z-index: 10;
}



/* METALLIC EFFECT FOR TITLE TEXT */
.metallic-title {
    font-family: 'Oswald', sans-serif;
    font-size: 120px;
    line-height: 1;
    padding-bottom: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    /*background: linear-gradient(to bottom, #ffffff 0%, #b3b3b3 40%, #595959 50%, #d9d9d9 60%, #ffffff 100%);*/
    background: linear-gradient(to bottom, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.8));
}

/* TITLES AT CONTACT AND ABOUT PAGE */
.small-metallic {
    font-size: 60px;
    margin-bottom: 5px;
    text-transform: none;
    line-height: 1.2;
}



/* --- NEON BOX - CONCERT --- */
.neon-gig-box {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 3px;
    border-radius: 15px;
    box-shadow:
            0 0 10px #00ffff,
            inset 0 0 10px #ff007f;
    border: 2px solid #00ffff;

    text-decoration: none;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.neon-gig-box:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow:
            0 0 30px #00ffff,
            inset 0 0 20px #ff007f;
    border-color: #ffffff;
}

.neon-gig-content {
    border: 1px solid #ff007f;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

.hero-intro {
    font-size: 20px;
    letter-spacing: 0.5px;
    margin-top: 20px;
    color: #e0e0e0;
    max-width: 450px;
    line-height: 1.8;
}


/* FLYER */
.poster-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 6px;
    display: block;
}

.home-music-section {
    background: radial-gradient(circle at left, rgba(0, 255, 255, 0.05) 0%, #050505 50%);
    padding: 100px 20px;
    border-top: 1px solid #222;
}

.home-music-container {
    max-width: 1100px;
    margin: 0 auto;
}

.home-music-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-music-text h2 {
    margin-bottom: 25px;
}

.home-music-text p {
    color: #aaaaaa;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.home-music-btn {
    display: inline-block;
    background-color: transparent;
    color: #00ffff;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    text-decoration: none;
    padding: 14px 35px;
    border: 2px solid #00ffff;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.home-music-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.home-music-btn:hover {
    background-color: #00ffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: translateY(-3px);
}

.home-music-btn:hover i {
    transform: translateX(5px);
}

.home-music-player {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-music-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.15);
}


/* --- FOOTER --- */
.main-footer {
    background-color: #050505;
    border-top: 1px solid #222;
    padding: 60px 50px 20px 50px;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-contact h4, .footer-socials h4 {
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    color: #aaaaaa;
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-contact li a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #00ffff;
}

.footer-socials {
    text-align: right;
}



/* SOCIALS LINKS */
.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #00ffff;
}



/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    font-size: 13px;
    color: #555555;
    max-width: 1200px;
    margin: 0 auto;
}

/*--------*/
/*ABOUT*/
/*--------*/

.about-page {
    background: radial-gradient(circle at top right, rgba(43, 16, 85, 0.3) 0%, #0a0a0a 60%);
    padding: 60px 20px;
    min-height: 80vh;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.bio-section {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.bio-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    margin-top: 15px;
}

.gramophone-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 0, 127, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gramophone-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(255, 0, 127, 0.6));
}

.bio-text {
    flex: 2;
    min-width: 300px;
    color: #cccccc;
}

.small-metallic {
    font-size: 60px;
    margin-bottom: 5px;
    text-transform: none;
}

.bio-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    font-family: 'Oswald', sans-serif;
}

.bio-text p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.8;
}

.bio-quote {
    font-family: 'Oswald', sans-serif;
    color: #ff007f;
    font-size: 22px;
    font-style: italic;
    border-left: 3px solid #ff007f;
    padding-left: 20px;
    margin: 30px 0;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

.bio-clubs {
    font-size: 14px !important;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

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

.roster-title {
    font-family: 'Oswald', sans-serif;
    color: #e0e0e0;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.mt-40 {
    margin-top: 40px;
}

.roster-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
}

.roster-image img {
    max-width: 70%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.1));
}

.roster-list, .roster-links {
    list-style: none;
    color: #aaaaaa;
}

.roster-list li {
    margin-bottom: 8px;
    font-size: 15px;
}

.roster-list .highlight {
    color: #ffffff;
    font-weight: 600;
}

.roster-links li {
    margin-bottom: 5px;
}

.roster-links a {
    /*color: #00ffff; - tyrkisova*/
    color: #ff007f;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.roster-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 0, 127, 0.6);
    /*text-shadow: 0 0 8px rgba(0, 255, 255, 0.6); - tyrkisova*/
    transform: scale(1.05);
}

.featuring-section {
    border-top: 1px solid #222;
    padding-top: 40px;
    margin-bottom: 50px;
}

.featuring-text {
    color: #888888;
    line-height: 2;
    font-size: 14px;
    text-align: justify;
}

.featuring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.featuring-grid li {
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.featuring-grid li:hover {
    background-color: rgba(255, 255, 255, 0.09);
}

.feat-name {
    color: #ffffff;
    font-weight: 600;
}

.feat-inst {
    color: #aaaaaa;
}

.links-section {
    border-top: 1px solid #222;
    padding-top: 40px;
}

.multi-col-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
}

.multi-col-links a {
    display: block;
    font-size: 15px;
    /*color: #ff007f;*/
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 6px;
    border-left: 2px solid #00ffff;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.multi-col-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05) translateY(-2px);
    border-color: #ff007f;
    box-shadow: 0 5px 15px rgba(255, 0, 127, 0.15);
    /*color: #ffffff;*/
    color: #ff007f;
    text-shadow: 0 0 8px rgba(255, 0, 127, 0.6);
}

/* ========================================= */
/* --- CONTACT PAGE --- */
/* ========================================= */

.contact-page {
    background: radial-gradient(circle at top left, rgba(0, 255, 255, 0.1) 0%, #0a0a0a 50%);
    padding: 60px 20px;
    min-height: 80vh;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.contact-info-box {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-details li {
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-details i {
    color: #00ffff;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.contact-details a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff007f;
}

.contact-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.social-btn i {
    font-size: 20px;
}

.social-btn.facebook:hover {
    background-color: rgba(24, 119, 242, 0.1);
    border-color: #1877F2;
    transform: translateX(10px);
}

.social-btn.youtube:hover {
    background-color: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
    transform: translateX(10px);
}

.social-btn.spotify:hover {
    background-color: rgba(29, 185, 84, 0.1);
    border-color: #1DB954;
    transform: translateX(10px);
}

.social-btn.instagram:hover {
    background-color: rgba(225, 48, 108, 0.1);
    border-color: #E1306C;
    transform: translateX(10px);
}

/* --- CONTACT FOOTER --- */
.contact-footer {
    padding-top: 30px;
}

.contact-footer .footer-bottom {
    border-top: none;
    padding-top: 0;
}



/* ========================================= */
/* --- GIGS PAGE --- */
/* ========================================= */

.gigs-page {
    background-color: #0a0a0a;
    padding: 0;
    padding-bottom: 80px;
    min-height: 80vh;
}

.gigs-hero {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('images/atomic-gigolo-live2.jpg');
    background-size: cover;
    background-position: center 52%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.gigs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.gigs-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

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

/* --- UPCOMING SHOWS --- */
.upcoming-section {
    background-color: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 60px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
}

.upcoming-gig {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.upcoming-gig .gig-date {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    color: #ff007f;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.4);
}

.upcoming-gig .gig-details {
    display: flex;
    flex-direction: column;
}

.upcoming-gig .gig-venue {
    font-size: 22px;
    color: #ffffff;
    font-weight: 600;
}

.upcoming-gig .gig-location {
    color: #aaaaaa;
    font-size: 15px;
}

/* --- HISTORY ACCORDIONS --- */
.flyer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.flyer-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.flyer-item:hover {
    transform: translateY(-5px);
    border-color: #00ffff;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.15);
}

.flyer-item img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 15px;
}

.flyer-date {
    color: #e0e0e0;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 15px;
    color: #00ffff;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-lightbox:hover {
    color: #ff007f;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(0, 255, 255, 0.2);
    color: #00ffff;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ========================================= */
/* --- MUSIC PAGE --- */
/* ========================================= */

.music-page {
    background-color: #0a0a0a;
    padding: 0;
    padding-bottom: 80px;
    min-height: 80vh;
}

.music-hero {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('images/atomic-gigolo-piano.jpg');
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.music-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.music-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

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

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: stretch;
    justify-content: center;
}

.player-box {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.player-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.15);
}

.platforms-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.platforms-box h3 {
    font-family: 'Oswald', sans-serif;
    color: #e0e0e0;
    font-size: 24px;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 1px;
}

.platform-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.platform-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.platform-btn i {
    font-size: 26px;
    width: 30px;
    text-align: center;
}

.platform-btn.apple:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateX(10px);
}

.platform-btn.deezer:hover {
    background-color: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    color: #00ffff;
    transform: translateX(10px);
}

.platform-btn.supraphone:hover {
    background-color: rgba(255, 0, 127, 0.1);
    border-color: #ff007f;
    color: #ff007f;
    transform: translateX(10px);
}

.platform-btn.soundcloud:hover {
    background-color: rgba(255, 85, 0, 0.1);
    border-color: #ff5500;
    color: #ff5500;
    transform: translateX(10px);
}


/* ========================================= */
/* --- VIDEO PAGE --- */
/* ========================================= */

.video-page {
    background-color: #0a0a0a;
    padding: 0;
    padding-bottom: 100px;
    min-height: 80vh;
}
.video-hero {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('images/atomic-gigolo-live-3.jpg');
    background-size: cover;
    background-position: center 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.video-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

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

/* --- GRID FOR VIDEOS --- */
.art-videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.live-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    gap: 40px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    background-color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

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

/* --- ASPECT RATIO --- */
.video-wrapper.horizontal {
    aspect-ratio: 16 / 9;
}

.video-wrapper.vertical {
    aspect-ratio: 9 / 16;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
}



/* ========================================= */
/* --- PHOTO PAGE --- */
/* ========================================= */

.photo-page {
    background-color: #0a0a0a;
    padding: 0;
    padding-bottom: 100px;
    min-height: 80vh;
}

.photo-hero {
    position: relative;
    width: 100%;
    height: 500px;
    background-image: url('images/photo-gallery/atomic-gigolo-band.jpg');
    background-size: cover;
    background-position: center 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.photo-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.photo-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

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

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
}

.photo-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
}

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

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

.photo-fb-promo {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.photo-fb-promo .promo-title {
    color: #00ffff;
    margin-bottom: 20px;
}

.photo-fb-promo .promo-text {
    color: #aaaaaa;
    font-size: 18px;
    margin-bottom: 30px;
}

.photo-fb-promo .promo-btn {
    display: inline-flex;
}










/* ========================================= */
/* --- RESPONSIVITY --- */
/* ========================================= */

.burger-menu {
    display: none;
    background: none;
    border: none;
    color: #00ffff;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

@media (max-width: 800px) {
    .burger-menu {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.98);
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid #00ffff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
        z-index: 1000;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        margin: 15px 0;
        font-size: 20px;
    }

    .home-music-grid,
    .art-videos-grid,
    .players-grid,
    .contact-grid,
    .flyer-grid,
    .photo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .metallic-title { font-size: 60px; }
    .small-metallic { font-size: 40px; }
    .hero-desc { font-size: 16px; }

    .roster-image { margin-top: 30px; }

    .photo-fb-promo {
        margin-top: 40px;
        padding: 25px 15px;
    }

    .photo-fb-promo .promo-text {
        font-size: 16px;
    }

    .roster-image {
        padding-top: 20px;
    }

    .hero-section {
        flex-direction: column;
        justify-content: center;
        padding-top: 120px;
        gap: 40px;
        flex-wrap: nowrap;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-socials {
        text-align: center;
    }

    .footer-contact ul li {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .footer-contact ul li i {
        margin-right: 0;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 25px;
    }

    .social-links a {
        margin-left: 0;
    }
}