@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&family=Yeseva+One&display=swap');

:root {
    --gray-100: #eaebeb;
    --gray-200: #97999a;
    --gray-300: #2f3235;
    --gray-400: #18191b;
    --pink-100: #f7f0ed;
    --pink-200: #d9b5a6;
    --pink-300: #b26b4d;
    --pink-400: #593627;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--gray-400);
    font-family: Lexend;
}

.wrapper {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 4rem;
    width: 100%;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    text-decoration: none;
    display: flex;
    gap: 1.25rem;
}

ul li {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: right;
    color: var(--gray-200);
}

ul .icon {
    fill: var(--gray-200);
}

ul .icon:hover {
    fill: var(--pink-300);
}

ul li:hover {
    color: var(--pink-300);
}

.hero {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    padding: 8rem;
}

h2 {
    font-family: Yeseva One;
    font-style: normal;
    font-weight: 400;
    font-size: 4rem;
    line-height: 74px;
    color: var(--pink-300);
}

h3 {
    font-family: Yeseva One;
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 55px;
    color: var(--pink-100);
}

.gallery {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    width: 100%;
    padding: 0 8rem;
    gap: 8rem;
}

@media (max-width: 768px) {
    .gallery {
        flex-wrap: wrap;
    }
}

.col {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    gap: 8rem;
}

.col img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
    width: 100%;
    display: block;
}

.col img:hover {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
}

.col-2 {
    padding-top: 8rem;
}

.cta {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.64em;
    text-transform: uppercase;
    border: none;
    color: var(--gray-200);
    background: none;
    width: auto;
    transition: all 0.5s ease-out;
}

.cta:hover {
    letter-spacing: 0.66em;
    color: var(--gray-100);
}

.contact {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    gap: 24px;
    padding: 8rem;
}

.contact h2 {
    margin: 0;
}
.contact h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    margin: 0;
    -webkit-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}

.contact h3:hover {
    color: var(--pink-300);
    text-decoration: underline;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0rem 4rem 4rem 4rem;
    width: 100%;
    box-sizing: border-box;
}

footer .icon {
    fill: var(--gray-200);
}

footer .icon:hover {
    fill: var(--pink-300);
}

