
/* Brand Colours */

/* R=25 G=20 B=14 */
/* R=155 G=106 B=74 */

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(234, 228, 206);
}

.hero {
    width: 100%;
    padding: 7% 0px;
    background-image: url("/img/panels.svg");
    background-position: center;
    background-size: auto;
    background-repeat: no-repeat;
}

.hero-container {
    width: 90%;
    max-width: 700px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

h1 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 100%;
    color: rgb(25, 20, 14);
    margin-bottom: 30px;
}

.get-back {
    display: block;
    font-weight: 600;
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: -1px;
    color: rgb(25, 20, 14);
    margin-bottom: 50px;
}

h2 {
    font-weight: 300;
    font-size: 1.7rem;
    color: rgb(25, 20, 14);
    margin-top: 20px;
}

h3 {
    font-weight: 300;
    font-size: 1.7rem;
    color: rgb(155, 106, 74);
    margin-top: 20px;
}

h4 {
    font-weight: 600;
    font-size: 1.7rem;
    color: rgb(155, 106, 74);
    margin-top: 50px;
}

p {
    font-weight: 200;
    font-size: 2rem;
    color: rgb(25, 20, 14);
    margin-top: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgb(25, 20, 14);
}

.form-container {
    width: 90%;
    max-width: 540px;
    margin: 0px auto;
    padding-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.email-title {
    margin: 0px 0px 10px 0px;
}

.email-link {
    color: rgb(25, 20, 14);
    text-decoration: none;
    font-weight: 600;
    transition: all 300ms ease-in-out;
}

.email-link:hover {
    color: rgb(155, 106, 74);
    transform: scale(1.05);
}

.socials-container {
    width: 90%;
    max-width: 540px;
    margin: 0px auto;
    padding: 50px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.links {
    isolation: isolate;
    position: relative;
    width: 260px;
    height: 90px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: rgb(25, 20, 14);
    text-decoration: none;
    overflow: hidden;
    transition: all 300ms ease-in-out 200ms;
}

.links:hover {
    padding: 5px 15px;
}

.key-line {
    border-top: 1px solid rgb(25, 20, 14);
}

.key-line:hover{
    border-top: 1px solid rgb(155, 106, 74);
}

.social-background::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -90px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(155,106,74,1) 10%, rgba(234,228,206,1) 100%);
    transition: all 300ms ease-in-out 400ms;
}

.social-background:hover::after {
    top: 0px;
}

.social-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.social-suffix {
    display: block;
    font-size: 1rem;
    font-weight: 100;
}

i {
    font-size: 2rem;
}

.left-panel, .right-panel {
    position: absolute;
}

.left-panel {
    top: 250px;
    left: -20%;
}

.buffer-top {
    position: static;
    width: 100%;
    height: 10px;
    background-color: rgb(25, 20, 14);
    top: 0px;
}

.buffer-bottom {
    position: static;
    width: 100%;
    height: 10px;
    background-color: rgb(25, 20, 14);
    bottom: 0px;
}

@media screen and (max-width: 600px) {
    .socials-container {
        max-width: 260px;
    }

    p {
        font-size: 1.6rem;
    }
}