/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
     height: 100%;
}

/* Body */
body {
    /* margin-top: 55%; */
    background: #000000;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Header */
header {
    width:100%;
    height: 100vh;
    background-image: url(../links/background\ photo.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Ensures the image covers the entire container */
    background-attachment: fixed; /* This creates the fixed background effect */

    padding: 40px 60px;
    z-index: 2;
    position: relative;
}

.logo {
    font-family: "helvetica-neue", sans-serif;
    font-weight: light;
    color: white;
    letter-spacing: 8px;
    position: fixed;
    z-index: 290;
    top: 50px;
    left:50px;
    font-size: 5vw;
}

.sig {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 218px;
    aspect-ratio: 218 / 168;
}

.wrapper {
    background-color: black;
    width: 100%;
    max-width: 100%;
}
.wrapper-photo {
    /* Set the background image properties */
    background-image: url('/links/background\ photo.webp'); /* Replace with your image file path */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Ensures the image covers the entire container */
    background-attachment: fixed; /* This creates the fixed background effect */
    
    /* Position and size the container to cover the viewport */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Puts the background behind other content */
}






/* Main */
.main {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    padding: 60px;
    background: #000000;
    display: flex;
    flex-direction: row;
    gap: 20px;
    color: white;
}

.hero p:first-child {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero p:nth-child(2) {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.6;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
}

.hero img {
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

/* Albums Section */
.albums {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 60px;
}

.album-container {
    position: relative;
    width: calc(25% - 20px);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.album-container:hover {
    transform: scale(1.01);
}

.background-image {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(165deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
    overflow: hidden;
    background-attachment: fixed;
}

.background-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.background-image::before {
    content: '';
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    aspect-ratio: 1 / 1;
    filter: blur(35px);
    opacity: 0.7;
    z-index: 1;
}

.background-image::after {
    content: '';
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    aspect-ratio: 1 / 1;
    filter: blur(25px);
    opacity: 0.5;
    z-index: 1;
}

/* Glass Overlay */
.glass-overlay-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.glass-overlay-wrapper svg {
    position: absolute;
    top: 50%;
    left: 50%;
   
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.svg-text {
    font-size: 15vw;

}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px) saturate(120%);
    -webkit-backdrop-filter: blur(30px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.15),
                inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    transition: transform 1.8s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
}

.glass-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
}

.glass-overlay::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
}

.album-container:hover .glass-overlay {
    transform: translateY(120%);
    opacity: 0;
    cursor:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>✨</text></svg>") 16 0,auto; /*!emojicursor.app*/
}

/* Music Videos Section */
.music-videos {
    padding: 60px;
    background: #000000;
    width: 100%; 
    video {
        width: 100%; 
    }
}

.music-videos h1 {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

/* Photo Gallery Section */
.gallery {
    padding: 40px;
    background: #000000;
    width: 100%;
}

.gallery-box {
    width:100%;ß
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas: 
    "one one four five"
    "two two four five"
    "three four five";
    overflow: hidden;
}

.gallery-box img {
    width:100%;
    display: block;
    object-fit: contain;
}

.gallery-box img:nth-child(1) {
    grid-area: one;
}
.gallery-box img:nth-child(2) {
    grid-area: two;
}
.gallery-box img:nth-child(3) {
    grid-area: three;
}
.gallery-box img:nth-child(4) {
    grid-area: four;
}
.gallery-box img:nth-child(5) {
    grid-area: five;
}

.gallery-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width:100%;
    height: 100%;
    gap: 60px;
}

.gallery-container-left {
    display: grid;
    gap: 40px;
    grid-row: 1 / 2;
}

.gallery-container-right {
    grid-row: 2 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    justify-content: stretch;
    gap: 40px;
    background: red;
    overflow: hidden;
}

.right-img {
    max-width:100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    overflow: hidden;
}

.right-img img {
    display: block;
    height:100%;
    object-fit: cover;
    object-position: center;
    grid-row: 1 / 2;
    grid-column:  1 / 2;
}

.right-img:nth-child(1) {
    grid-row: 1 / 2;
    background: green;
}
.right-img:nth-child(2) {
    grid-row: 1 /-1;
    grid-column: 2 / -1;
    background: blue;
}

.gallery p {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.6;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}



.gallery-container-left img {
   width:100%;
    /* aspect-ratio: 2 / 1; */
    object-fit: cover;
}

/* Footer */
.footer {
    padding: 60px;
    background: #000000;
}

.socials {
    text-align: center;
}

.socials h1 {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 4px;
    margin: 20px 0 80px 0;
    text-align: center;
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
}

.icons img {
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.icons img:hover {
    opacity: 1;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'  width='40' height='48' viewport='0 0 100 100' style='fill:black;font-size:24px;'><text y='50%'>✨</text></svg>") 16 0,auto; /*!emojicursor.app*/
}

/* General Typography */
h1 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: white;
    letter-spacing: 2px;
}


/* Responsive Section */

/* Desktop */
@media (max-width: 1024px) {
    .album-container {
        width: calc(50% - 20px);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hero {
    position: relative;
    width: 100%;
    padding: 60px;
    background: #000000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
}

.hero p:first-child {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero p:nth-child(2) {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.6;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
}

    .hero img {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    }

    .album-container {
        width: calc(100% - 20px);
    }
    
    .hero, .albums, .music-videos, .photo-gallery, .footer {
        padding: 30px;
    }
    
    .photo-gallery img {
        width: calc(50% - 20px);
    }
}

/* Mobile */
@media (max-width: 480px) {
.hero {
    position: relative;
    width: 100%;
    padding: 60px;
    background: #000000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: white;
}

.hero p:first-child {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero p:nth-child(2) {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.6;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.8);
}

.hero img {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
    }

.albums {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    width: calc(100%);
    gap: 30px;
}

.album-container {
    position: relative;
    width: calc(40%);
    aspect-ratio: 1 / 1;
}

/* Photo Gallery Section */
.gallery {
    padding: 40px;
    background: #000000;
}

.gallery-container-left {
    display: flex;
    gap: 40px;
}

.gallery-container-right {
    display: flex;
    gap: 40px;
}

.gallery p {
    font-size: 16px;
    font-weight: 200;
    line-height: 1.6;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.gallery-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}
}
