/* GENERAL STYLING */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Roboto:wght@300&display=swap");
/* @import url("https:///Fonts/SF-Pro-Display-Medium.otf"); */

/* COLOR: #b7a696 */

@keyframes scaleUpNavbar {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

@keyframes scaleDownNavbar {
    0% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@font-face {
    font-family: "SF Pro Display";
    src: url("Fonts/SF-Pro-Display-Medium.otf");
}

@font-face {
    font-family: "SF Pro Display Bold";
    src: url("Fonts/SF-Pro-Display-Bold.otf");
}

* {
    margin: 0 auto;

    font-family: "SF Pro Display";
    color: #f2f2f2;
}

h1,
h2,
h3 {
    font-family: "SF Pro Display Bold", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

main {
    display: flex;
    flex-direction: column;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* NAVIGATION BAR */
.navbar * {
    margin: 0;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 200;
}

.navbar {
    position: fixed;
    display: flex;
    top: 0;
    overflow: hidden;
    background-color: rgba(60, 50, 60, 0.4);
    backdrop-filter: blur(40px);
    width: 100vw;

    height: 40px;
}

.navbar a {
    display: flex;
    align-items: center;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 10px;
    text-decoration: none;
    background: none;
    margin: 0;

    /* animation: scaleDownNavbar 0.25s ease-in; */
}

.navbar a:hover {
    transform: scale(1.03);
    animation: scaleUpNavbar 0.1s ease-in;
}

.navbar img {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: none;
    height: 100%;
}

.navbar .navbar-name {
    display: flex;
    justify-content: center;
    padding-left: 6px;
    padding-right: 0px;
    height: 100%;
    align-items: center;

    color: #f2f2f2;

    text-align: center;
    text-decoration: none;
    font-size: 18px;
}

/* FOOTER */
.footer {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;

    position: relative;
    max-height: 5vh;
    width: 100vw;
    padding: 1.2vh;
    justify-content: center;
    text-align: center;

    background-color: #b7a696;

    color: #1b1b1b;
}

.footer a,
.footer p {
    color: #1b1b1b;
}

/* TITLE */
.title {
    display: flex;
    flex: 0 0 100%;
    flex-direction: column;
    max-height: 50%;
    width: 100%;
    align-items: center;
    justify-content: center;

    background-size: cover;
    background-position: bottom;
    background-color: #1b1b1b;

    text-shadow: 2px 2px 0 #000;
    font-size: xx-large;
}
.title p {
    text-shadow: none;
    font-size: large;
}
.title h1 {
    font-size: xxx-large;
}

/* ROW */
.row {
    display: flex;
    flex: 0 0 100%;
    flex-direction: row;
    width: 100%;
}
.row a {
    display: flex;
    flex: 0 0 100%;
    max-height: 100%;
    width: 100%;
}
.row a:hover {
    filter: brightness(1.1);
}
.img-wrapper {
    display: flex;
    width: 50%;

    background-size: cover;
    background-position: center;
}

.info {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
    justify-content: center;
    padding: 5%px;

    background-color: #1b1b1b;

    line-height: 170%;
    font-size: 18px;
}
p {
    padding-left: 10%;
    padding-right: 10%;
    text-align: center;

    background-color: transparent;
}
.embed {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;

    background-color: #5380aa;
}

/* IMAGE GALLERY FORMATTING */
.gallery {
    line-height: 0;
    border: #f2f2f2 solid 1px;
}

.gallery:hover {
    filter: brightness(1.1);
}

.gallery img {
    width: 100%;
    height: auto;
}

.a {
    padding-bottom: 0px;
    margin-bottom: 0px;
    display: inline;
}

.responsive {
    float: left;
    width: 100%;
    height: auto;
}
