/* Global Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    background: #fff;
}

/* Navbar Styling */
.triviae-header {
    background: #0c0c5a;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 100px; /* Keep height same for large screens */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.triviae-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}


.triviae-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.triviae-logo a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.triviae-logo img {
    height: 80px;
    width: auto;
}

.triviae-logo span {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
}

/* Navigation Menu */
.triviae-navbar {
    display: flex;
    align-items: center;
    gap: 30px;
}

.triviae-nav-item a {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.triviae-nav-item a:hover,
.triviae-nav-item a.active {
    color: #FFD700;
}

/* Contact Button */
.triviae-contact-btn a {
    background: #FFD700;
    color: #0c0c5a;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}

.triviae-contact-btn a:hover {
    transform: scale(1.1);
}

/* Hamburger Menu (Mobile) */
.triviae-menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.triviae-navbar-mobile {
    display: none;
    flex-direction: column;
    background: #0c0c5a;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.triviae-navbar-mobile .triviae-nav-item {
    padding: 10px 0;
}


