/* Regular weight */
@font-face {
    font-family: 'Open Sans';
    src: url('public/assets/fonts/OpenSans-Regular-webfont.woff') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Bold weight */
@font-face {
    font-family: 'Open Sans';
    src: url('public/assets/fonts/OpenSans-Bold-webfont.woff') format('truetype');
    font-weight: bold;
    font-style: normal;
}

html,
body {
    height: 100%;
    user-select: none;
}

section {
    block-size: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    margin: 0;
    font-family: OpenSans, sans-serif, system-ui;
}

header {
    height: 200%;
    overflow: hidden;
}

section:nth-of-type(even) {
    color: white;
    background: black;
}

.section-content {
    height: 100%;
    max-width: calc(100% - 64px);
}

#simple-hero {
    background-color: black;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.caff__logo-container {
    clip: rect(0, auto, auto, 0);
    overflow: hidden;
    position: absolute;

    height: 100%;
    width: 100%;
    left: 0;

    /* Safari hack */
    -webkit-mask-image: -webkit-linear-gradient(top, #ffffff 0%, #ffffff 100%);
}

.logo-wrapper {
    position: fixed;
    display: block;
    margin: auto;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.caff__logo {
    display: flex;
    justify-content: center;
    width: 100%;
}

.splash-logo {
    width: 250px;
}

#simple-hero,
.what-we-offer,
.about-us,
.get-in-touch {
    scroll-snap-align: start;
    scroll-snap-stop: always;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.what-we-offer .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.get-in-touch__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.what-we-offer__list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}


.what-we-offer__list li {
    width: 50%; 
    box-sizing: border-box;
    padding: 5px;
    list-style: none;
    padding-left: 0;
    padding-right: 0;
    font-weight: bold;
}

.about-us__content {
    margin: 0;
}

.about-us__signed {
    font-weight: 700;
    text-align: right;
}

.about-us__intro {
    margin-bottom: 2rem;
}

.about-us__outro {
    margin-top: 16px;
}

.get-in-touch__header .header-logo {
    margin-bottom: 0;
}

.get-in-touch__email {
    text-decoration-color: black;
    text-decoration-thickness: 2px;
}

.get-in-touch__email > h3 {
    margin: 0;
    color: white;
}

#insta-icon {
    margin: 1.5rem;
    width: 32px;
}

.header-logo {
    width: 80px;
    margin: 20px 0;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 150px;
}

#fhr {
    width: 150px;
    margin-bottom: 20px;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

#fhr:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    filter: grayscale(0%);
}

@media (orientation: portrait) {
    p {
        font-size: 4vw;
    }
}

/* Extra small devices (mobile phones, 320px and below) */
@media only screen and (max-width: 320px) {  
    .section-content h1 {
        font-size: 8vw;
    }
    
    .what-we-offer h2 {
        font-size: 6vw;
    }

    .what-we-offer p {
        font-size: 4vw;
    }

    #fhr {
        width: 100px;
    }
}

/* Small devices (mobile phones, 375px and below) */
@media only screen and (max-width: 375px) {  
    .what-we-offer .section-content {
        display: block;
    }
}

/* Medium devices (landscape tablets, 768px and above) */
@media only screen and (min-width: 768px) {
    .splash-logo {
        width: 25%;
    }

    .header-logo {
        width: 100px;
    }

    section {
        text-align: unset;
    }

    .section-content {
        max-width: 800px;
    }

    .what-we-offer > .section-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #fhr {
        width: 200px;
    }
}

/* Large devices (desktop monitors, 1200px and above) */
@media only screen and (min-width: 1200px) {
}
