@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap");

:root {
    --clr-white: white;
    --clr-purple-light: #a192a5;
    --clr-purple-dark: #2a023b;
    --clr-purple-btn: #564469;
    --clr-purple-card: #402957;
    --clr-hero-grad1: #9f8bb3;
    --clr-hero-grad2: #5b4e67;
    --clr-gold-grad1: #ddab00;
    --clr-gold-grad2: #7b6d3c;
    --fs-normal: 16px;
}

body,
html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    display: flex;
    overflow-y: auto;
    justify-content: center;
}

.astro-font {
    font-family: "Cinzel", serif;
}

.empty-container {
    position: relative;
    width: 0px;
    height: 0px;
}

.main-layout {
    width: 95%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
}

.nav-menu {
    width: 100%;
    background-color: rgba(8, 12, 18, 0.88);
    color: var(--clr-white);
    z-index: 10;
    font-size: var(--fs-normal);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-menu ul {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 12px 10px;
    gap: 10px;
}

.nav-menu a {
    color: rgba(220, 225, 232, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #00d4ff;
}

.page-content {
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    flex: 1;
}

.full-screen-section {
    min-height: 85vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 40px;
    margin: 0 0 20px 0;
}

.header-section {
    min-height: 20vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 40px;
    margin: 0 0 20px 0;
}
