@charset "utf-8";
@font-face {
    font-family: 'Nasalization';
    src: url('fonts/Nasalization Rg.otf') format('opentype'); /* Specify the format as 'opentype' */
    font-weight: normal;
    font-style: normal;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(-45deg, #000000, #67767f);
    color: white;
	font-family: Arial, sans-serif;
}

/* Header Styling */
.site-header {
    display: flex;
    justify-content: center; /* Center the logo horizontally */
    align-items: center;
    width: 100%;
    padding: 40px 0; /* Add spacing above and below */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure it stays above everything */
}

.logo {
    max-width: 500px; /* Adjust size for the logo */
    height: auto;
}

.menu-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.stargate-container {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    z-index: 1;
}

.stargate-video {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 80%;
    height: 80%;
    object-fit: cover; /* Ensure the video fills the circle */
    border-radius: 50%; /* Make it circular */
    z-index: 0; /* Behind everything else in .stargate-container */
	transform: translate(5%, 5%); /* Center the smaller video */
}

.stargate {
    width: 100%;
    height: auto;
    transform: rotate(90deg); /* Default position */
    transition: transform 3s ease; /* Smooth rotation */
	position: relative; /* Ensure stacking context */
	z-index: 1; /* Set a lower z-index for the Stargate image */
}

.categories {
    position: absolute;
	z-index: 100; /* Ensure it is always above everything else */
	top: 76%;
    left: 87%;
    width: 500px; /* Match the overall container size */
    height: 300px; /* Match the overall container size */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Prevent interference */
}

.category {
    position: absolute;
	z-index: 100; /* Ensure it is always above everything else */
    width: auto; /* Adjust width of button */
    text-align: center;
    color: white;
    border-radius: 5px;
    line-height: 50px;
    cursor: pointer;
    user-select: none;
    pointer-events: auto; /* Allow clicking */
	font-family: 'Nasalization';
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: text-shadow 1s ease; /* Smooth transition for glow effect */
}

.category.glow {
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff;
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    text-align: center;
    z-index: 99; /* Ensure it is always above everything else */
    pointer-events: auto; /* Allow interactions like clicks */
}
.center-text h2 {
    font-family: 'Nasalization', sans-serif;
    font-size: 24px;
    color: white;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.center-text p {
    font-size: 16px;
    color: #ccc;
    margin: 0 0 20px 0;
}

.center-text .btn {
    display: inline-block;
    background-color: #67767f;
    color: white;
    padding: 10px 20px; 
	font-family: 'Nasalization', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 2s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Add subtle drop shadow */
}

.center-text .btn:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Circular placement of categories */
.category:nth-child(1) { transform: rotate(-90deg) translate(320px) rotate(90deg); }   /* Top Center */
.category:nth-child(2) { transform: rotate(-45deg) translate(350px, 20px) rotate(45deg); }  /* Top Right */
.category:nth-child(3) { transform: rotate(0deg) translate(350px) rotate(0deg); }     /* Right Center */
.category:nth-child(4) { transform: rotate(45deg) translate(350px, -20px) rotate(-45deg); }  /* Bottom Right */
.category:nth-child(5) { transform: rotate(90deg) translate(325px) rotate(-90deg); }  /* Bottom Center */
.category:nth-child(6) { transform: rotate(135deg) translate(350px, 20px) rotate(-135deg); } /* Bottom Left */
.category:nth-child(7) { transform: rotate(180deg) translate(370px) rotate(-180deg); } /* Left Center */
.category:nth-child(8) { transform: rotate(225deg) translate(350px, -20px) rotate(-225deg); } /* Top Left */
/* CSS Document */

