.hero-section {
    position: relative;
    width: 100%;
    height: 95vh;
    margin: 0 auto;
    overflow: hidden;
    background: linear-gradient(270deg, #152256 27.42%, #2E4ABC 178.74%);
    padding-bottom: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,40,0.6) 100%); */
}

.hero-content {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-text {
    max-width: 663px;
}

.hero-title {
    position: relative;
    font-family: 'Baradig', sans-serif;
    font-size: 100px;
    font-weight: 700;
    line-height: 85px;
}

.hero-title-outline{
    position: absolute;
    display: flex;
    flex-direction: column;
}

.hero-title-fill {
    display: flex;
    flex-direction: column;
}

.hero-title-outline {
    position: absolute;
    top: 4px;
    left: -4px;
    color: transparent;
    -webkit-text-stroke: 1px #FC0146;
    z-index: 1;
}

.hero-title-fill {
    color: #fff;
    z-index: 2;
}

.hero-branding {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-name {
    font-family: 'Mulish', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    color: #FC0146;
    display: inline;
}

.brand-tagline {
    font-family: 'Mulish', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    color: #fff;
    display: inline;
    margin: 0;
}

.album-thumbnail:hover {
    transform: translateX(-10px);
}

.album-gallery {
    position: absolute;
    right: 4rem;
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.album-thumbnail:nth-child(1) {
    border-color: rgba(253, 181, 1, 1);
}

.album-thumbnail:nth-child(2) {
    border-color: rgba(32, 240, 255, 1);
}

.album-thumbnail:nth-child(3) {
    border-color: rgba(255, 255, 255, 1);
}

.album-thumbnail {
    width: 133px;
    height: 133px;
    border: 0.75px solid rgba(255, 255, 255, 0.1);
    padding: 7px;
    transition: transform 0.3s ease;
}

.album-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.album-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
    .hero-content {
        padding: 0 35px;
    }
    
    .hero-title {
        font-family: Baradig;
        font-weight: 700;
        font-size: 52px;
        line-height: 95%;
        letter-spacing: 0%;        
    }
    
    .album-gallery {
        display: none;
    }
    
    .hero-branding .brand-name {
        font-family: Mulish;
        font-weight: 700;
        font-size: 22px;
        line-height: 100%;
        letter-spacing: 0%;
    }

    .hero-branding .brand-tagline {
        font-family: Mulish;
        font-weight: 700;
        font-size: 22px;
        line-height: 100%;
        letter-spacing: 0%;
        
    }
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1.5rem 4rem 0 4rem;
    background: transparent;
    box-sizing: border-box;
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
