:root {
    --blue: #097dbe;
    --black: #080808;
    --black-600: #121212;
    --white-main: #fff;
    --white: #f2f2f2;
    --white-600: #e6e6e6;
    --white-800: #d9d9d9;
    --white-900: #cccccc;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--black-600);
}

.navbar {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: 0.5s ease-in-out;
}

.navbar-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    max-width: 1200px;
    width: 95%;
    background-color: transparent;
    margin: 0 auto;
    overflow: hidden;
}

.logo {
    position: absolute;
    left: 0;
    top: -20px;
    width: 100px;
}

.nav-right {
    display: flex;
    gap: 15px;
}

.nav-right a {
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 5px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: var(--blue);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hero {
    position: relative;
    background: url('/img/hero-bg.png') no-repeat center center/cover;
    height: 100vh;
    width: 100%;
    background-attachment: fixed;
    background-color: #111;
}

/* Disable fixed background on mobile to avoid zoom */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero-content {
    position: fixed;
    bottom: 20px;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
}

.c-button {
    color: #000;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding: 0.9em 1.6em;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    z-index: 1;
}

.c-button--gooey {
    color: black;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 3px solid black;
    border-radius: 0;
    position: relative;
    transition: all 700ms ease;
}

.c-button--gooey .c-button__blobs {
    height: 100%;
    filter: url(#goo);
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    bottom: -3px;
    right: -1px;
    z-index: -1;
}

.c-button--gooey .c-button__blobs div {
    background-color: black;
    width: 34%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    transform: scale(1.4) translateY(125%) translateZ(0);
    transition: all 700ms ease;
}

.c-button--gooey .c-button__blobs div:nth-child(1) {
    left: -5%;
}

.c-button--gooey .c-button__blobs div:nth-child(2) {
    left: 30%;
    transition-delay: 60ms;
}

.c-button--gooey .c-button__blobs div:nth-child(3) {
    left: 66%;
    transition-delay: 25ms;
}

.c-button--gooey:hover {
    color: #fff;
}

.c-button--gooey:hover .c-button__blobs div {
    transform: scale(1.4) translateY(0) translateZ(0);
}


.music-section {
    padding: 50px 20px;
    text-align: center;
    z-index: 100;
    height: 800px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 900;
    color: var(--white);
}

.music-section .section-title {
    position: relative;
    top: 50px;
}

.swiper {
    padding: 20px 0;
    max-width: 1200px;
    height: auto;
    position: relative;
    top: 40px;
}

.swiper-slide {

    background: var(--black-600);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.swiper-slide:hover {
    transform: scale(1.05);
}

.swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.swiper-slide h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--white);
}

.swiper-slide p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 15px;
}

.listen-now {
    display: inline-block;
    padding: 12px 20px;
    background: var(--black-600);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    border: white 3px solid;
    z-index: 1;
    font-size: 14px;
    letter-spacing: 1px;
}

.listen-now::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: top 0.3s ease;
    z-index: 0;
}

.listen-now:hover::before {
    top: 0;
}

.listen-now span {
    position: relative;
    z-index: 1;
}

.listen-now:hover {
    color: var(--black);
}


.swiper-button-next,
.swiper-button-prev {
    color: #ff0000;
}

@media (max-width: 768px) {
    .swiper-slide {
        padding: 15px;
    }
}

.merch-section {
    padding: 50px 20px;
    text-align: center;
    z-index: 100;
    height: 860px;
    background: url('../img/merch-bg.png') no-repeat center center/cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.merch-section .section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    position: relative;
    top: 50px;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.merch-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.merch-item {
    text-align: center;
    width: 500px;
}

.merch-item h3 {
    position: relative;
    top: 140px;
    font-size: 1.5rem;
    color: white;
    margin: 10px 0;
}

.merch-item p {
    position: relative;
    top: 140px;
    font-size: 1.5rem;
    color: white;
}

.flip-card {
    position: relative;
    top: 50px;
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
    margin-bottom: 15px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front img,
.flip-card-back img {
    position: relative;
    top: -50px;
    width: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.buy-now {
    position: relative;
    top: 170px;
    display: inline-block;
    padding: 12px 20px;
    background: var(--white);
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    border: black 3px solid;
    z-index: 1;
    font-size: 14px;
    letter-spacing: 1px;
}

.buy-now::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: top 0.3s ease;
    z-index: 0;
}

.buy-now:hover::before {
    top: 0;
}

.buy-now span {
    position: relative;
    z-index: 1;
}

.buy-now:hover {
    color: var(--white);
}

.gallery-section {
    padding: 100px 20px;
    text-align: center;

}



.gallery-items {

    width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    grid-auto-rows: 200px;
    gap: 15px;
}

/* Wrapper to clip zoom */
.gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    /* Match the image's border-radius */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Hover zoom effect (stays inside) */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* Bento-style layout */
.gallery-items .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-items .gallery-item:nth-child(4) {
    grid-row: span 2;
}

.gallery-items img:nth-child(7) {
    grid-column: span 2;
    grid-row: span 2;
}

.latest-section {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    height: 750px;
    background-color: #f2f2f2;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.latest-section .section-title {
    position: relative;
    top: 50px;
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.latest-items {
    position: relative;
    top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.latest-item {
    text-align: center;
    width: 640px;
    height: 310px;
    margin: 15px;
    text-align: left;
}

.latest-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.section-title

.latest-item h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: white;
}

.latest-item p {
    padding-top: 10px;
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.footer {
    background: var(--black-600);
    color: #fff;
    padding: 20px 10px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-contact a {
    color: #fff;
    font-size: 1rem;
    padding: 5px 5px;
    text-decoration: none;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 1rem;
    color: #fff;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-social a {
    color: #fff;
    text-decoration: none;
    margin: 0 8px;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #097dbe;
}

.footer-copy {
    font-size: 0.9rem;
    text-align: center;
    flex: 1 0 100%;
    margin-top: 10px;
}

/* Overlay */
.overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

/* Popup card */
.popup {
    background: #1e1e1e;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    animation: popIn 0.3s ease forwards;
}

.popup img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Link buttons */
.links {
    margin-top: 18px;
    text-align: center;
}

.links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 5px;
    padding: 10px 18px;
    border: white 2px solid;
    color: white;
    width: 95%;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    font-size: 0.95rem;
}

.links a i {
    font-size: 1.5rem;
}

/* YouTube */
.youtube {
    background: #ff0000;
}

.youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
}

/* YouTube */
.apple {
    background: #ff0436;
}

.apple:hover {
    background: #ff4e6b;
    transform: translateY(-3px);
}

/* Spotify */
.spotify {
    background: #1db954;
}

.spotify:hover {
    background: #169c46;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-items {
        width: 95%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        grid-auto-rows: 200px;
        gap: 15px;
    }

    .swiper-slide img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-right {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: var(--white);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.4s ease;
        z-index: 1000;
        opacity: 0;
    }

    .nav-right a {
        font-size: 22px;
        margin: 10px 0;
    }

    .nav-right.show {
        height: 100vh;
        opacity: 1;
    }

    .gallery-items {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-items img:nth-child(1),
    .gallery-items img:nth-child(4),
    .gallery-items img:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .merch-section {
        height: 700px;
    }


    .flip-card-front img,
    .flip-card-back img {
        position: relative;
        top: -50px;
        width: 95%;
        object-fit: cover;
        border-radius: 10px;
    }

    .merch-item h3 {
        position: relative;
        top: 20px;
        font-size: 1.5rem;
        margin: 10px 0;
    }

    .merch-item p {
        position: relative;
        top: 20px;
        font-size: 1rem;
        color: white;
    }

    .buy-now {
        position: relative;
        top: 30px;

    }

    .latest-item {
        text-align: center;
        width: 100%;
        height: 310px;
        margin: 15px;
        text-align: left;
    }

    #player {
        width: 100%;
    }
}