/* Custom fonts */
@font-face {
    font-family: 'Navigation-Font';
    src: url('../fonts/Stolzl-Book.ttf') format('truetype');
}

@font-face {
    font-family: 'Header-Font';
    src: url('../fonts/Stolzl-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Body-Font';
    src: url('../fonts/Stolzl-Thin.ttf') format('truetype');
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #fff;
    text-align: center;
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}

header {
    padding: 30px 0;
}

nav {
    background: linear-gradient(90deg, #7500ff, #ff00ff);
    color: #ffffff;
    padding: 10px 0px;
    font-family: 'Header-Font', Arial, sans-serif;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1000;
    font-size: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li a {
    flex: 1;
    color: #000000;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 20px;
}

.astrosida-logo {
    margin-right: 10px;
    height: 50px;
    vertical-align: middle;
}

.nav-left {
    text-align: left;
    margin-left: 15px;
}

.nav-right {
    text-align: right;
    margin-right: 15px;
}

.nav-left a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 0px;
}

.nav-right a {
    display: flex;
    align-items: center;
    justify-content: right;
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    background: none;
    border: none;
    border-radius: 10px;
}

.nav-right a img {
    margin-right: 10px;
    width: 15px;
    height: 15px;
    vertical-align: middle;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 0;
    width: 100%;
    height: 100%;
}

.index-top-container,
.index-mid-container,
.index-bottom-container {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.index-content-container {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    gap: 10px;
    cursor: default;
    z-index: 1000;
}

.esoteric-sphere-image {
    height: 160px;
    width: 160px;
    background: none;
    border: none;
    border-radius: 10px;
}

.under-image-title {
    font-family: 'Header-Font', Arial, sans-serif;
    font-size: 15px;
    color: #ffffff;
}

.hero h1 {
    font-family: 'Header-Font', Arial, sans-serif;
    font-size: 30px;
    color: #111111;
    text-align: left;
}

.hero h2 {
    font-family: 'Body-Font', Arial, sans-serif;
    font-size: 12px;
    color: #111111;
    text-align: left;
    line-height: 1.5;
    margin-bottom: 100px;
}

.index-btn {
    position: relative;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #fff;
    padding: 30px 50px;
    font-family: 'Header-Font', Arial, sans-serif;
    font-size: 20px;
    cursor: pointer;
    border: none;
    border-radius: 25px;
    z-index: 1;
    box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
    transition: color 1s ease, background-color 1s ease;
}

.index-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: linear-gradient(90deg, #7500ff, #ff00ff);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease, transform 1s ease;
    filter: blur(30px);
    transform: scale(0.9);
}

.index-btn:hover {
    background-color: #7500ff;
    color: #ffffff;
}

.index-btn:hover::after {
    opacity: 1;
    transform: scale(5.0);
}

/* Footer */
footer {
    background-color: #111111;
    padding: 20px 0;
    color: #fff;
    font-family: 'Body-Font', Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 12px;
}

.footer-content p {
    margin: 0;
}

.footer-links {
    font-family: 'Body-Font', Arial, sans-serif;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.footer-links li {
    margin-left: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}