@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Imperial+Script&display=swap');
*{
    padding: 0;
    margin: 0;
}
html,body{
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    display: flex;
    flex-direction: column;
    flex: 1;
    width: auto;
    overflow: hidden;
}
span,ul,li{
    font-family: 'Edwardian',sans-serif;
}
/* --------------- */
/* landing content */
/* --------------- */
.landing-wrapper{
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100vh;
    align-items: center;
    justify-content: flex-start;
}
.background-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    img{
        width: 100%;
        height: -webkit-fill-available;
        object-fit: cover;
        user-select: none;
    }
}
.content-wrapper{
    display: flex;
    flex-direction: column;
    position: absolute;
    transform: translateY(-4vw);
    width: 100%;
    z-index: 3;
}
.content-row{
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.content-row.top{
    position: relative;
    h1{
        font-weight: 400;
        font-style: normal;
        color: #BB121C;
        font-size: 22vw;
        font-family: "Imperial Script", cursive !important;
        transform: translate(12vw,5vw);
        user-select: none;
    }
}
.content-row.bottom{}
.content-description{
    display: flex;
    flex-direction: column;
    font-size: 2vw;
    user-select: none;
}
.content-description:first-of-type{
    align-items: center;
    span:last-of-type{
        width: 70%;
    }
}
.content-description:last-of-type{
    align-items: center;
    span{
        width: 38%;
    }
}
.content-link-wrapper{
    height: auto;
    margin: 1.5vw 0;
}
.content-link {
    color: #D9A72D;
    font-size: 3.5vw;
    letter-spacing: 1px;
    position: relative;
    cursor: pointer;
}
.content-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0%;
    height: 3px;
    background-color: #D9A72D;
    transition: 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.content-link:hover::after {
    width: 100%;
}
.content-link:hover{
    text-shadow: 0 0 8px rgba(217,167,45,0.7);
}

/* --------- MOBILE --------- */
@media (max-width: 767px) and (orientation: portrait) {
    .landing-wrapper{
        justify-content: center;
    }
    .content-row.top h1 { 
        font-size: 31vw; 
        transform: translate(-8px, 4vw); 
    }
    .content-description { 
        font-size: 3.2vw; 
    }
    .content-link { 
        font-size: 5.5vw; 
    }
    .content-link-wrapper {
        height: auto;
        margin: 3vw 0;
    }
    .content-description:first-of-type {
        span:last-of-type {
            width: 90%;
        }
    }
    .content-description:last-of-type {
        span {
            width: 70%;
        }
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .landing-wrapper{
        justify-content: center;
    }
    .content-wrapper{
        transform: translateY(-1vw);
    }
    .content-row.top h1 { 
        font-size: 14vw; 
        transform: translate(0, 2vw); 
    }
    .content-description { 
        font-size: 2vw; 
    }
    .content-link { 
        font-size: 3.5vw; 
    }
    .content-link-wrapper{
        margin: 1vw 0;
    }
    .content-description:first-of-type {
        span:last-of-type {
            width: 85%;
        }
    }
}

@media (max-width: 767px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
    /* Optional touch-specific adjustments */
}

@media (max-width: 767px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
    /* Optional touch-specific adjustments */
}

/* --------- TABLETS --------- */
@media (min-width: 768px) and (max-width: 1200px) and (orientation: portrait) {
    .landing-wrapper{
        justify-content: flex-start;
    }
    .content-row.top h1 { 
        font-size: 14vw; 
        transform: translate(0, 1vw); 
    }
    .content-description { 
        font-size: 1.6vw; 
    }
    .content-link { 
        font-size: 2.5vw; 
    }
    .content-link-wrapper {
        margin: 1.25vw 0;
    }
}

@media (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
    
    .content-wrapper{
        transform: translateY(3vw); 
    }
    .content-row.top h1 { 
        font-size: 15vw; 
        transform: translate(0, 2vw); 
    }
    .content-description { 
        font-size: 1.5vw; 
    }
    .content-link { 
        font-size: 2.75vw; 
    }
    .content-link-wrapper {
        margin: 1vw 0;
    }
}

@media (min-width: 767px) and (max-width: 768px){
    /* Optional touch-specific adjustments */
    .content-row.top h1 { 
        font-size: 13vw; 
        transform: translate(0, 2vw); 
    }
    .content-description { 
        font-size: 1.3vw; 
    }
    .content-description:first-of-type {
        span:last-of-type {
            width: 85%;
        }
    }
    .content-description:last-of-type {
        span {
            width: 60%;
        }
    }
    .content-link { 
        font-size: 2.75vw; 
    }
    .content-wrapper{
        transform: translateY(7vw); 
    }
}

/* --------- DESKTOP --------- */
@media (min-width: 1201px) and (max-width: 1680px) and (hover: hover) and (pointer: fine) {
    .landing-wrapper{
        justify-content: center;
    }
    .content-wrapper{
        transform: translateY(-4vw);
    }
    .content-row.top h1 { 
        font-size: 18vw; 
        transform: translate(10vw,4vw); 
    }
    .content-description { 
        font-size: 2vw; 
    }
    .content-link { 
        font-size: 3.5vw; 
    }
}