/* General Styles */
body {
    background: url('assets/outer-space.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    color: white;
}

/* Marquee Text */
.marquee {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    color: yellow;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 0;
    white-space: nowrap;
    overflow: hidden;
}
.marquee span {
    display: inline-block;
    animation: marquee-scroll 20s linear infinite;
    will-change: transform;
}
@keyframes marquee-scroll {
    from { transform: translateX(100vw); }
    to { transform: translateX(-100vw); }
}

/* Hero Text */
.hero-text {
    font-size: 40px;
    font-weight: bold;
    margin-top: 80px;
    margin-bottom: 20px;
    color: yellow;
    font-family: 'New Amsterdam', sans-serif;
    position: relative;
    z-index: 10;
}

/* Container for Centered Content */
.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Center Image */
.center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}
.center-image img {
    width: 120px;
    height: auto;
}

/* Circle Menu for Icons */
.circle-menu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
}
.circle-menu a {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
}

/* Icons with Hover Glow Effect */
.circle-menu img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: none;
    transition: box-shadow 0.3s ease-in-out;
}
.circle-menu a:hover img {
    box-shadow: 0 0 15px 5px purple;
}

/* Text Labels Under Icons */
.circle-menu span {
    margin-top: 12px;
    font-size: 14px;
    color: white;
}

/* Links */
a {
    color: white;
}

/* Footer */
footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    font-size: 14px;
}

/* Privacy Policy Page Styling */
.privacy-content {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    color: yellow;
}

.privacy-content p, .privacy-content ul {
    font-weight: normal;
}

.privacy-content a {
    color: yellow;
    text-decoration: underline;
}

.privacy-content ul {
    padding-left: 20px;
}

/* Fix footer positioning (Only for Privacy Policy Page) */
.privacy-policy-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.privacy-policy-page .privacy-content {
    flex-grow: 1;
}

.privacy-policy-page footer {
    position: relative;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
}
