/* responsive-type */
@media (max-width: 480px) {
h1 {
    font-size: 2.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -2.25px;
    line-height: 0.9;
}

h2 {
    font-size: 1.25rem;
    letter-spacing: -0.8px;
    word-spacing: 10px;
    line-height: 0.975;
    font-weight: 500;
    text-transform: uppercase;
}

h3 {
    font-family: 'space grotesk';
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

p {
    font-size: 0.85rem;
    font-weight: 300;
    font-family: 'poppins';
}

section {
    margin: 0;
    padding: 0;
}

/* navbar */
.navbar {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: fit-content;
    padding: 3.75px;
    z-index: 999;
}

.logo {
    height: 1.75rem;
}

.nav-links {
    color: var(--secondary);
    text-decoration: none;
    background-color: var(--primary);
    padding: 0.35rem 0.7rem;
    transition: all .25s ease;
}

.contact {
    background-color: var(--secondary);
    color: var(--primary);
}

.nav-links:hover {
    cursor: pointer;
    padding: 0.7rem 1.8rem;
    color: var(--accent-1);
    background-color: var(--highlights);
    border-radius: 100px;
}

/* hero-section ------------------------------------------------- */
.hero {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    display: grid;
    align-content: space-between;
    justify-items: stretch;
    padding: 0.5rem;

    animation: openner 3s cubic-bezier(.86,0,.01,1) 0.25s forwards;
}

@keyframes openner {
    0% {
    top: 45%;
    right: 45%;
    bottom: 45%;
    left: 45%;
    }
    30% {
    top: 47%;
    right: 15%;
    bottom: 47%;
    left: 15%;
    }
    100% {
    top: 5rem;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    }
}

.copy {
    text-align: justify;
    position: relative;
    color: var(--primary);
    max-width: 100%;
    opacity: 0;
    animation: fade-in 1.5s ease 3s forwards;
}

.cta-area {
    position: relative;
    padding-top: 0rem;
    display: flex;
    align-content: space-between;
    justify-content: stretch;
    flex-direction: column-reverse;

    gap: 1rem;
    width: 100%;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    animation: fade-in 1.5s ease 3s forwards;
}

.cta-area::before {
    content: '';
    position: absolute;
    border-top: 1px dotted var(--primary);
    top: 0;
    left: 0;
    width: 0%;
    animation: line 1.5s ease 3.5s forwards;
}

@keyframes line {
    from {
        width: 0%;
    }
    to {
        width: 0%;
    }
}

.cta {
    background-color: var(--primary);
    padding: 1.5rem 2.5rem;
    color: var(--secondary);
    text-align: center;
    text-decoration: none;
    position: relative;
    transition: all .3s ease;
}

.cta:hover {
    color: var(--accent-1);
    background-color: var(--highlights);
    border-radius: 2.5px;
}

.cta::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--highlights);
    right: 5px;
    bottom: 5px;
    transition: all .3s ease;
}

.cta:hover::before {
    right: 8px;
    bottom: 8px;
    background-color: var(--accent-1);
}

.cta::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--highlights);
    left: 5px;
    top: 5px;
    transition: all .3s ease;
}
.cta.cta:hover::after {
    left: 8px;
    top: 8px;
    background-color: var(--accent-1);
}

.sub-copy {
    text-align: justify;
    letter-spacing: 0.5px;
    max-width: 100%;
    color: var(--primary);
    z-index: 2;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.with-love {
    height: 30vh;
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.with-love h1 {
    color: var(--highlights);
    font-size: 5rem;
    padding-top: 1rem;
    white-space: nowrap;
    will-change: transform;
    transform: translateX(0);
}

}