/* navigation */
.navigation {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 15vh;
}

.navigation .brand a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
}

.navigation .brand a img {
    width: 2rem;
}

.navigation .links {
    display: flex;
    gap: 2rem;
}

.navigation .links a {
    position: relative;
    color: var(--white);
    padding: 0 0.25rem;
    transition: 0.3s;
}

.navigation .links a img {
    width: 1.5rem;
}

.navigation .links a:hover {
    color: var(--white);
}

.navigation .links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    background: var(--black);
    width: 100%;
    height: 0.01rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.navigation .links a:hover::after {
    transform: scaleX(1);
    background: var(--white);
}

.nav_toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}

/* hero */
.hero {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 80vh;
    z-index: -1;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, var(--black), var(--transparent));
    width: 100%;
    height: 10vh;
}

.hero:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, var(--black), var(--transparent));
    width: 100%;
    height: 10vh;
}

.hero .title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.hero .title img {
    width: 15rem;
}

.hero .title .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--white);
    text-transform: uppercase;
}

/* cards */
.cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0;
    width: 100%;
}

.cards .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    width: 100%;
}

.cards .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.cards .container .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    width: 32rem;
    height: 34rem;
}

.cards .container .card img {
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
    width: 100%;
    height: 75%;
}

.cards .container .card h3 {
    margin-top: 1rem;
    width: 100%;
}

.cards .container .card p  {
    border-top: 1px var(--white) solid;
    margin-top: 1rem;
    padding-top: 0.25rem;
    width: 100%;
}

/* about */
.about {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    background-image: url("../images/texture.png");
    background-size: cover;
    background-repeat: repeat;
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
    height: 80vh;
}

.about .title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    color: var(--white);
    width: 100%;
}

.about .title button {
    width: 50%;
}

.about img {
    width: 20%;
}

/* content */
.content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    margin-top: 5rem;
    margin-bottom: 5rem;
    width: 100%;
}

.content .text {
    color: var(--white);
    width: 100%;
}

.content .text form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
}

/* contact */
.contact {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--white);
    background-image: url("../images/hero_1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    height: 80vh;
}

.contact:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, var(--black), var(--transparent));
    width: 100%;
    height: 15vh;
}

.contact:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, var(--black), var(--transparent));
    width: 100%;
    height: 15vh;
}

.contact .title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    background: var(--black_opaque);
    border-radius: 2rem;
    padding: 2rem;
    width: 100%;
}

.contact .title a {
    color: var(--white);
}

/* footer */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 10vh;
}

.footer a {
    color: var(--white);
}