*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: normal;
    background: black;
    color: #faebd7;
    font-size: 100%;
    position: relative;
    line-height: 1.6;
}

/* Typography */

h2 {
    font-family: "Lora", serif;
    font-weight: 300;
    margin-bottom: 2rem;
}

h3 {
    font-weight: 400;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

p {
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Elements */

ul {
    list-style-type: none;
}

a {
    color: #faebd7;
    transition: opacity .3s;
}

a:hover,
a:focus {
    opacity: 0.7;
}

/* Header */

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem 1rem;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    ;
    backdrop-filter: blur(4px);
    z-index: 100;
}

header h1 {
    font-size: 1.5rem;
    font-weight: 100;
    flex: 2;
}

header h1 span {
    font-family: "Lora", serif;
    ;
    font-weight: 500;
    margin-right: 1px;
}

header nav ul {
    display: flex;
    flex-direction: row;
    gap: .75rem;
    font-size: .875rem;
}

header a {
    text-decoration: none;
}

/* Main */

main {
    display: flex;
    z-index: 1;
    flex-direction: column;
}

section {
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    transition: all .3s ease-in-out;
    width: 100%;
}

section.about {
    align-items: start;
}

section.reviews {
    align-items: start;
    background: rgba(250, 235, 215, 0.1);
    border-radius: 12px;
}

section h2 {
    font-size: clamp(6rem, 12vw, 10rem);
    line-height: clamp(5rem, 10vw, 8rem);
    word-break: break-all;
}

section.contact {justify-content: center;}

section.contact h2 {
    font-size: clamp(1.5rem, 6vw, 4rem);
}

section .image {
    text-align: center;
    padding: 1rem;
}

section img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: .75rem;
    object-fit: cover;
    transition: all ease-in-out .3s;
}

section img:hover {
    scale: 1.025;
}


/* Components */

.button,
a.button {
    background: none;
    font-weight: 500;
    border: 2px solid #faebd7;
    border-radius: 9999em;
    color: #faebd7;
    padding: 1rem 2rem;
    text-decoration: none;
    display: inline-block;
    margin-right: 1rem;
    transition: all ease-in-out .3s;
}

.button:hover,
a.button:hover {
    transform: translateY(-2px);
}

.button:active,
a.button:active {
    transform: translateY(0);
}

hr {
    border: none;
    border-top: 2px dashed rgba(250, 235, 215, 0.1);
    margin: 3rem 0;
}

.sur {
    opacity: .6;
}

/* Footer */

footer {
    font-size: 0.75rem;
    width: 100%;
    padding: 2rem;
    z-index: 0;
}

/* Media Queries */

@media screen and (min-width: 60rem) {

    section {
        flex-direction: row;
        padding: 2rem 3rem;
    }

    section.reviews {
        width: 50%;
    }

    section .text {
        flex: 1.75;
    }
}