@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('themes/theme_main.css');

html {
    background-color: var(--color-background);
    scroll-behavior: smooth;

}
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: auto;
}


.page-wrapper {
    max-width: 1200px;
    margin: 130px auto 220px auto;
}

#page-wrapper {
    max-width: 1200px; 
    margin: 130px auto 0 auto;
}

/* Nav bar styling */
#nav-bar {
    position: fixed;
    height: 110px;
    width: 1200px;
    border-radius: 16px;
    display: flex;
    background-color: var(--color-white);
    z-index: 1000;
    margin: 10px auto;
    border: 0.5px solid var(--color-yellowish);
    top: 0;
    transition: all 0.3s ease-in-out;
}

#nav-bar.scrolled {
    height: 55px;
}

#nav-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 40px 0 40px;
}

#nav-right-content {
    display: flex;
    gap: 40px; 
}

a {
    text-decoration: none;
    color: var(--color-black);
}

#nav-right-content a:hover {
    text-decoration: underline;
    text-decoration-color: var(--color-yellowish);
}

a.active {
    text-decoration: underline;
    text-decoration-color: var(--color-yellowish);
}

#nav-bar-header {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 500;
    transition: font-size 0.3s ease-in-out;
}

#nav-bar.scrolled #nav-bar-header {
    font-size: 28px;
}


.nav-texts {
    font-family: var(--font-body);
    font-size: 16px;
}


