
.josefin-sans-<uniquifier> {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

body {
	background-color: rgba(0,0,0,1);
}
#siteWrapper
{
	height: 100%;
	width: 80%;
	margin: auto;
}
header
{
	display: flex;
	height: 80px;
	width: 100%;
	justify-content: right;
	padding-top: 10px;
	border-bottom: solid 1px #ffd9e8;

}
.contact-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
a {text-decoration: none;}

a:visited {color: #f28cbf;}

.contact-text {
    font-family: "Josefin Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #ffd9e8;
    letter-spacing: 2px;
}

.contact-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-lines span {
    width: 42px;
    height: 4px;
    border-radius: 10px;
    background: linear-gradient(
	    90deg,
	    #ffd9e8,
	    #ffb7d5,
	    #f28cbf,
	    #d9b8ff);
    transition: all 0.3s ease;
}

/* Animated X state */
.contact-btn.active .menu-lines span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.contact-btn.active .menu-lines span:nth-child(2) {
    opacity: 0;
}

.contact-btn.active .menu-lines span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

main {
	
	display: flex;
	height: 600px;
	width: 100%;
	justify-content: center;
	margin-top: 50px;
}

#mainWrap {
	display: flex;
	height: 100%;
	width: 100%;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.image-stack {
    position: relative;
    width: 300px;
    height: 90%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;

}

.image-stack img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Always on top */
.top-image {
    z-index: 10;
    opacity: 1;
    pointer-events: none;
}

/* Under-layer slideshow images */
.fade-image {
    z-index: 1;
    opacity: 0;
    transition-property: opacity, filter, transform;
    transition-timing-function: ease-in-out;
    pointer-events: none;
    filter: blur(0px) brightness(1);
    transform: scale(1);
}


h1
{
	color: #ffd9e8;
	font-family: "Josefin Sans", sans-serif;
  	font-optical-sizing: auto;
  	font-weight: 200;
  	font-style: normal;
  	letter-spacing: 6px;
}
.hero-subtitle {
    display: block;
    position: relative;
    z-index: 10;
    color: #ffd9e8;
    opacity: 1;
    visibility: visible;
    text-align: center;
    font-size: clamp(10px, 1vw, 16px);
    font-weight: 400;
    line-height: 1.5;
    max-width: 900px;
    margin: 20px auto 0;
}