*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

/* Fonts */
@font-face {
	font-family: 'Quicksand-Bold';
	src: url('fonts/Quicksand-Bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Quicksand-Light';
	src: url('fonts/Quicksand-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Quicksand-Medium';
	src: url('fonts/Quicksand-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Quicksand-Regular';
	src: url('fonts/Quicksand-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Quicksand-SemiBold';
	src: url('fonts/Quicksand-SemiBold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
    font-family: 'Quicksand-Regular';
}

/* Start of Navbar 1 */
.nav-header {
    z-index: 99;
    width: 100vw;
    height: 50px;
    color: white;
    display: flex;
    align-items: center;
    background: #1F232E;
}

.logo-btn {
    position: absolute;
    left: 10%;
    height: 50px;
    display: flex;
    align-items: center;
}

.nav-header img {
    width: 39%;
    height: auto;
}

.navbar-pc {
    display: none;
    position: absolute;
    right: 50px;
    color: white;
    font-family: 'Quicksand-Bold';
}

.navbar-pc ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    font-size: 1rem;
    gap: 36px;
}

.navbar-pc a {
    color: inherit;
}

.navbar-pc a::after{
    content: '';
    height: 2px;
    width: 0%;
    background-color: white;
    display: block;
    transition: .4s ease-in-out;
    border-radius: 5px;
}

.navbar-pc a:hover::after{
    content: '';
    height: 2px;
    width: 100%;
    background-color: white;
    display: block;
}
/* End of Navbar 1 */

/* Start of Navbar 2 */
.navbar-mobile {
    height: 60px;
    background-color: transparent;
    display: flex;
    align-items: center;
    z-index: 2;
}

.links-container {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 200px;
    background-color: #3a3756;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
    transition: 0.75s ease-out;
}

.links-container ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.navbar-mobile a {
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    color: #f0f0f0;
    justify-content: flex-start;
}

.navbar-mobile a:hover {
    background-color: #00c896;
}

.close-sidebar-button svg {
    fill: #f0f0f0;
}

#sidebar-active {
    display: none;
}

#sidebar-active:checked  ~ .links-container {
    right: 0;
}

.open-sidebar-button .close-sidebar-button {
    display: block;
    padding: 20px;
}

.open-sidebar-button:hover, .close-sidebar-button:hover {
    cursor: pointer;
}

.open-sidebar-button svg:hover {
    transform: scale(1.1);
}

.close-sidebar-button svg:hover {
    transform: scale(1.1);
}

.open-sidebar-button {
    display: none;
    position: absolute;
    right: 20px;
    top: 12px;
}

#sidebar-active:checked ~ #overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}
/* End of Navbar 2 */


.page-1 {
    height: 95vh;
    width: 100vw;
    color: white;
    background-image: url(images/backdrop.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-1-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.location-content {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    gap: 50px;
    text-align: center;
}

.contact-container {
    width: 1200px;
    height: 600px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #ffffff10;
    backdrop-filter: blur(50px);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-text {
    font-family: 'Quicksand-Regular';
    margin-bottom: 10px;
}

.contact-email {
    font-family: 'Quicksand-Bold';
    font-size: 25px;
    margin-bottom: 10px;
}

.contact-container img {
    width: 40px;
    height: auto;
}

h1 {
    font-family: 'Quicksand-Bold';
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(#f6db99 45%, #d6a761);
    background-clip: text;
    font-size: 82px;
}

footer {
    height: 5vh;
    width: 100vw;
}

footer p {
    background: #1F232E;
    color: white;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@keyframes fadeInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInFromBottom {
    from {
        opacity: 0;
        transform: translateY(20%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInFromRight {
    from {
        opacity: 0;
        transform: translateX(50%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-container {
    animation: fadeInFromBottom 1.5s ease-out;
}




/* Responsive Navbar based on PC or Mobile screen size */
@media (min-width: 769px) {
    .navbar-pc {
        display: block;
    }

    .open-sidebar-button {
        display: none;
    }

    .contact-text {
        font-size: 40px;
        margin-bottom: 70px;
    }

    .contact-email {
        font-size: 40px;
    }

    .contact-container img {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .navbar-pc {
        display: none;
    }

    .open-sidebar-button {
        display: block;
        position: fixed;
    }

    .contact-container {
        width: 350px;
        height: 450px;
    }

    .contact-email {
        font-size: 24px;
    }

    h1 {
        font-size: 42px;
    }
}