:root {
    /* Colors */
    --white: #ede9e9;
    --off: #e0cfb8;
    --bg: #a3a2a1;
    --dark: #2d2825;
    --dark_a1: #2d28254f;
    --dark_a2: #2d2825a0;

    /* Font */
    font-size: 16px;
    font-style: normal;
    font-family: "PT Serif", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

html,
body {
    padding: 0;
    margin: 0;
    background-color: var(--dark);
}

@keyframes Slide {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero {
    height: 120vh;

    background-image:
        linear-gradient(var(--dark_a1) 85%, var(--bg) 95%),
        url("../res/kiosque_mobile.jpg");

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 5rem;
    padding: 1rem;
    padding-top: 2rem;
}

.hero-msg {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 0.75rem;
}

.hero-text {
    font-size: 2rem;
}

.hero-subtext {
    font-style: italic;
    font-size: 1rem;
}

.floating {
    bottom: 2rem;
    left: calc(50% - 4rem);
    position: fixed;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.floating-btn {
    opacity: 0;
    text-align: center;
    font-size: 1rem;
    width: 8rem;
    padding: 0.5rem;
    color: var(--dark);
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0.1rem 0.1rem 0.2rem var(--dark);
    animation: Slide 500ms ease-in-out 1s forwards;
}

.floating-btn:hover {
    background-color: var(--off);
}

.nav-list {
    width: 100vw;
    display: flex;

    column-gap: 1rem;
    align-items: center;
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--white);

    flex-direction: column;
    justify-content: center;
}

.nav-item a,
.contact address,
.contact-item a {
    color: inherit;
    transition: color 300ms;
}

.nav-item a:hover,
.contact address:hover,
.contact a:hover {
    color: var(--off);
}

.dot {
    display: none;
}

h1 {
    color: var(--dark);
    font-size: 1.5rem;
}

.about {
    background-image:
        linear-gradient(
            var(--bg) 7%,
            var(--dark_a2) 12%,
            var(--dark_a2) 90%,
            var(--bg) 95%
        ),
        url("../res/about.jpg");

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5rem;
    padding-bottom: 5rem;
}

.about-content {
    width: 75vw;
    display: flex;
    padding: 2rem;
    flex-direction: column;
    row-gap: 1rem;
    align-content: center;
    font-weight: semi-bold;
    color: var(--white);
    border-top: solid 0.1rem;
    border-bottom: solid 0.1rem;
}

.contact {
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
}

.contact-content {
    width: 100vw;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    justify-content: space-around;
    align-items: center;
    color: var(--dark);
    padding-bottom: 3rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-link {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    column-gap: 0.5rem;
}

.contact-link address {
    font-style: normal;
}

.contact-mid {
    padding-left: 5rem;
    padding-right: 5rem;
    border-top: solid 0.075rem var(--dark);
}

.contact-img {
    background-image:
        radial-gradient(var(--dark_a1) 60%, var(--bg) 75%),
        url("../res/couple.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 8rem;
    width: 8rem;
    padding: 3rem;
}

@media (min-width: 600px) {
    :root {
        font-size: 32px;
    }

    .hero {
        background-image:
            linear-gradient(var(--dark_a1) 85%, var(--bg) 95%),
            url("../res/kiosque.jpg");

        row-gap: 4rem;
        padding-top: 1rem;
    }

    .hero-subtext {
        font-size: 0.75rem;
    }
    .floating {
        left: calc(50% - 3rem);
    }

    .floating-btn {
        width: 6rem;
        font-size: 0.75rem;
        padding: 0.35rem;
    }

    .nav-list {
        flex-direction: row;
    }

    .contact-content {
        flex-direction: row;
    }

    .dot {
        display: block;
        fill: none;
        border-radius: 1rem;
        background-color: var(--white);
    }
}
