﻿/* CONTAINER */
/* --------- */
.hero {
    height: calc(100vh - 10px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* IMAGE */
/* ----- */
.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* OVERLAY */
/* ------- */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* SOCIALS MENU */
/* ------------ */
.hero__socials-menu {
    position: absolute;
    display: flex;
    left: 2rem;
    top: 40%;
    flex-direction: column;
    gap: 1.5rem;
}
@media (max-width: 1470px) {
    .hero__socials-menu {
        display: none;
    }
}
.hero__social-link {
    color: var(--white-color);
    font-size: 0.7rem;
    letter-spacing: 2px;
}
.hero__social-icon {
    height: 35px;
    width: 35px;
}

/* MAIN CONTENT */
/* ------------ */
.hero__content-container {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    color: var(--white-color);
    z-index: 1;
}
.hero__content-container-inner {
    margin-right: auto;
    margin-top: -100px;
    width: 60%;
    padding: 0 2rem;
}
@media (max-width: 900px) {
    .hero__content-container-inner {
        width: 100%;
        text-align: center;
        padding: 0 1rem;
    }
}

/* Pretitle */
/* -------- */
@media (max-width: 768px) {
    .hero__pretitle {
        margin-bottom: 1.5rem;
    }
}

/* Title */
/* ----- */
.hero__title {
    font-size: 5rem;
    line-height: 6rem;
    font-style: normal;
    margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
    .hero__title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 500px) {
    .hero__title {
        font-size: 2.5rem;
        line-height: normal;
        font-style: normal;
    }
}

/* Subtitle */
/* -------- */
.hero__subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--white-color);
}
@media (max-width: 768px) {
    .hero__subtitle {
        font-size: 1.1rem;
        margin-bottom: 4rem;
    }
}
@media (max-width: 500px) {
    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 4rem;
        line-height: normal;
    }
}

/* Decal */
/* ----- */
.hero__angle-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}
.hero__angle-decor-svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: var(--accent-color);
}

/* Scroll adjustment for contact-us anchor */
/* --------------------------------------- */
#contact-us {
    scroll-margin-top: 100px;
}
@media(max-width: 768px) {
  #contact-us {
    scroll-margin-top: 50px;
  }
}