body {
    color: rgb(255, 255, 255);
}

.anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.alfarn-2 {
    font-family: "alfarn-2", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.main-title {
    font-size: 14.5vw;
}

.main-sub-title {
    font-size: 7vw;
}

.about-title {
    font-size: 5vw;
}

/* Full-screen image viewer */
#imageLightbox {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: zoom-out;
}

#imageLightbox.show {
    display: flex;
}

#imageLightbox img {
    max-width: 70vw;
    max-height: 70vh;
    min-height: 50vh;
    min-width: 50vw;
    object-fit: contain;
    cursor: default;
}

.text-mask {
    background-image: url('resources/text-mask.png');
    filter: brightness(0.9);
    background-size: cover;
    background-position: top;
    
    -webkit-background-clip: text;
    background-clip: text;
    
    color: transparent;
    -webkit-text-fill-color: transparent; /* needed for Safari */
}

.about-me {
    background-color: rgba(0, 0, 0, 0.669);
    padding: 2%;
    border-radius: 2%;
}

.container-about-me {
    position: relative;
    color: white;
}

.container-about-me::before {
    content: "";
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: brightness(0.4) blur(2px);
}

.container-final {
    background-color: rgb(21, 39, 87);
    position: relative;
    z-index: 3;
}

.carouselc-item {
    border-radius: 2vh;
    min-width: 20vw;
    min-height: 20vh;    
}

#carousel {
    min-height: 40vh;
}   

.container-final::before {
    content: "";
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;

    background-image: url('resources/scenic-beach.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;   

    filter: brightness(0.4) blur(1px);
    z-index: -1;
}

.bg-video-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.background-seaside-video {
    min-height: 100vh;
    background-color: rgb(19, 23, 43); /* opaque fallback so it fully covers what's beneath */
}