@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;700&family=Open+Sans:wght@300;400&display=swap');

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 300;
    background: #fff;
    color: #000;
    line-height: 1.7;
    overflow-x: hidden;
}

h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 4px;
}

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

a:hover {
    opacity: 0.7;
}


.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 30px 40px;
    background-color: transparent;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    color: #fff;
    transition: color 0.3s ease;
}

.logo-container {
    text-align: center;
    margin-bottom: 10px;
}

.logo {
    max-width: 400px;
    height: auto;
    filter: invert(100%);
    transition: filter 0.3s ease;
}


.centered-nav {
    display: flex;
    justify-content: center;
    gap: 35px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
    font-weight: 300;
    letter-spacing: 1.5px;
}

.main-header:hover {
    background-color: #fff;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}

.main-header:hover .header-inner {
    color: #000;
}

.main-header:hover .logo {
    filter: invert(0%);
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5em;
    font-weight: 200;
    letter-spacing: 8px;
    margin-top: 450px;
}


.intro,
.gallery,
.collabs,
.music {
    padding: 120px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    margin-bottom: 50px;
    font-size: 2.5em;
}

.intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1em;
    font-weight: 300;
    color: #333;
}

nav a:hover {
    color: #f39c12;
    text-decoration: underline;
    transition: 0.3s ease;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    aspect-ratio: 1/1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    margin-bottom: 5px;
}


.music-slider-container {
    position: relative;
    margin-top: 50px;
}

.music-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.music-slider::-webkit-scrollbar {
    height: 6px;
}

.music-slider::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.music-item {
    flex: 0 0 250px;
    text-align: center;
}

.music-item img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.music-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.music-item audio {
    width: 100%;
}

.music p {
    margin: 2px 0 20px 0;
    font-size: 1.1em;
    color: #333;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 5;
    border-radius: 50%;
}

.prev {
    left: -25px;
}

.next {
    right: -25px;
}


.social-bar {

    position: fixed;
    top: 50%;

    right: 0;

    transform: translateY(-50%);
    background-color: #000;

    padding: 8px 4px;
    border-radius: 8px 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;

    z-index: 1000;
    width: 40px;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);

}


.social-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 0;
}


.social-bar i {
    font-size: 20px;

    color: #fff;

    transition: color 0.3s ease;

}


.social-bar a:hover i {
    color: #f39c12;

}



.videos {
    padding: 80px 20px;
    text-align: center;
    background-color: #f8f8f8;

}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.video-item {
    width: 100%;
    max-width: 400px;

    margin-bottom: 20px;
}

.video-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 1.2em;
}


.video-item iframe {
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #eee;
    font-size: 0.8em;
    color: #555;
    letter-spacing: 1px;
}


@media (max-width: 1000px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 20px 20px;
    }

    .centered-nav {
        gap: 15px;
        font-size: 0.75em;
        flex-wrap: wrap;
    }

    .hero-content {
        font-size: 3em;
        letter-spacing: 5px;
    }

    .music-item {
        flex: 0 0 200px;
    }
}