@font-face {
    font-family: 'Tangerine';
    src: url('fonts/Tangerine_Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .parallax {
        background-position: center;
    }
}

.parallax {
    height: 60%;
    max-height: 60vh;
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 20px 10px -10px #FFF inset, 0px -20px 10px -10px #FFF inset;
}

.content {
    position: relative;
    padding: 80px 20px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
}

h1,
p {
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Tangerine', serif;
    font-size: 4em;
}

/* Navigation Bar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #333;
    overflow: hidden;
    z-index: 999;
}

.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

#navbar-menu {
    display: none;
    cursor: pointer;
    padding: 6px 10px;
    position: absolute;
    top: 0px;
    right: 0px;
}

.navbar-menu-bars {
    display: inline-block;
}

.navbar-menu-bars .bar1,
.navbar-menu-bars .bar2,
.navbar-menu-bars .bar3 {
    width: 25px;
    height: 2px;
    background-color: #f2f2f2;
    margin: 6px 0;
    transition: 0.4s;
}

#navbar-menu:hover .bar1,
#navbar-menu:hover .bar2,
#navbar-menu:hover .bar3 {
    background-color: black;
}

/* Rotate first bar */
.change .navbar-menu-bars .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}

/* Fade out the second bar */
.change .navbar-menu-bars .bar2 {
    opacity: 0;
}

/* Rotate last bar */
.change .navbar-menu-bars .bar3 {
    transform: translate(0, -5px) rotate(45deg);
}

@media (max-width: 520px) {
    #navbar-menu {
        display: block;
    }

    .navbar a:not(:first-child) {
        display: none;
    }

    .navbar.showmenu a {
        float: none;
        display: block;
        text-align: left;
    }
}

.copyright-line {
    font-size: x-small;
    position: absolute;
    bottom: 10px;
}

/* Timeline styles */

.timeline {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.timeline-entry {
    border: none;
    /* 1px solid rgba(3,3,3,0.2); */
    border-radius: 10px;
    padding: 15px;
    box-shadow: 3px 3px 5px #777;
}

.timeline-entry p {
    margin: 10px 0px;
}

.timeline-entry-title {
    margin: 5px 0px;
}

.timeline-entry-subtitle {
    display: block;
    margin: 5px 0px;
}


/* Image Gallery styles */
/* .gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
} */

.gallery {
    height: 116px;
    position: relative;
    text-wrap-mode: nowrap;
    overflow-x: auto;
}

.gallery>a {
    width: 100px;
    height: 100px;
    display: inline-block;
    position: relative;
    background-position: center;
    background-size: cover;
}

.gallery>a.video:before {
    content: '';
    background-image: url(images/play-button.svg);
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    transition-duration: 0.1s;
}

.gallery>a.video:hover:before {
    background-size: 60%;
}

.gallery::-webkit-scrollbar {
    height: 12px;
}

.gallery::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.gallery::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

/* .gallery img {
    width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */

.glightbox-open {
    overflow: visible !important;
    height: 100% !important;
}