* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: #202020;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.site {
    width: 100vw;
    height: 100vh;
    display: flex;
}


.sidebar {
    width: 20%;
    height: 100vh;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sidebar-image {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

.brand-name {
    color: #d96b12;
    font-size: 18px;
    font-weight: 600;
}

.hero {
    position: relative;
    width: 80%;
    height: 100vh;
    overflow: hidden;
    background-image: url("../figma-images/caf-s-home-3.png");
    background-size: cover;
    background-position: center;
}

.hero-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
}

.subtitle {
    display: block;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
}

h1 {
    margin-top: -2px;
    color: #d96b12;
    font-family: "Alex Brush", cursive;
    font-size: clamp(65px, 7vw, 100px);
    font-weight: 400;
    line-height: .85;
}

.access {
    position: absolute;
    right: 8%;
    bottom: 8%;
    width: 125px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: #d96b12;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 700px) {

    .sidebar {
        width: 150px;
    }

    .hero {
        width: calc(100% - 150px);
    }

    .brand-name {
        font-size: 14px;
    }

    .sidebar-image {
        width: 25px;
        height: 25px;
    }

    .subtitle {
        font-size: 22px;
    }

    h1 {
        font-size: 60px;
    }

    .access {
        width: 100px;
        height: 48px;
        right: 20px;
        bottom: 20px;
        font-size: 15px;
    }
}