@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap');

body,  h3, h4, h5, h6, p  {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
#wpadminbar{
    display: none;
}
h1 {
    font-family: 'Alfa Slab One', sans-serif;
}

h2{
    display: inline-block;
    color: #e67e22;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

#header{
	display: none;

}

#footer{
	display: none;
}

* {
    box-sizing: border-box;
    margin: 0;

    padding: 0;
}
html {
    scroll-behavior: smooth;
    margin: 0 !important;
    padding: 0 !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #45483C; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999009;
}

.loader-content img {
    width: 250px;
    height: auto;
    animation: fadeOut 4s ease-in-out forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

body.loading #loader {
    display: flex;
}

body.loaded #loader {
    display: none;
}

body.loading {
    overflow: hidden; 
}
