/* ======= GLOBAL BASE ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {

    background: #03081C;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ======= HEADER ======= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30%; /* consistent responsive spacing */
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}


.logo h1 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo span {
    color: #1e90ff;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;          /* adjust to taste (32–48px usually works well) */
    width: 55px;
    filter: drop-shadow(0 0 6px rgba(30,144,255,0.4)); /* subtle blue glow */
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo img:hover {
    transform: scale(1.05);
}


nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #aebdd8;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 1.25rem; /* increase this */
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: #1e90ff;
}

.invite-btn {
    background: #1e90ff;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.invite-btn:hover {
    background: #3ca2ff;
    transform: translateY(-2px);
}
/* ======= FOOTER ======= */
footer {
    background: #020513;
    padding: 60px 10%;
    color: #9bb1d4;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.footer-brand {
    flex: 1 1 250px;
}

.footer-brand img {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 6px rgba(30,144,255,0.4));
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    flex: 2 1 400px;
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    color: #9bb1d4;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #1e90ff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #7083a7;
}


/* ======= BACKGROUND ======= */
.stars {
    position: fixed;
    width: 100%;
    height: 100%;
    background-size: 400px 400px; /* adjust for star density */
    z-index: -2;
    animation: moveStars 60s linear infinite;
    opacity: 0.35;
}



@keyframes moveStars {
    from { background-position: 0 0; }
    to { background-position: 10000px 10000px; }
}

/* ======= UTILITIES ======= */
.btn {
    background: #1e90ff;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #3ca2ff;
}

.btn.outline {
    background: transparent;
    border: 2px solid #1e90ff;
}

.btn.outline:hover {
    background: #1e90ff;
}
