body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: rgba(0, 0, 0, 0.85);
}
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('logolarge.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    filter: blur(8px);
    z-index: -1;
}
.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    overflow-y: auto;
    color: white;
    padding: 100px 100px 0 100px;
    margin-top: 80px;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgb(0, 0, 0);
    padding: 10px 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
}
.logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}
.logo-img {
    height: 50px;
    width: auto;
    text-decoration: none;
}
.nav-buttons {
    display: flex;
    gap: 20px;
}
.nav-btn {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    background-color: white;
    color: black;
}
.content h1,
.content p {
    background-color: rgb(17, 17, 17);
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.footer {
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 40px 100px 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    gap: 20px;
}

.footer-section {
    text-align: center;
    flex: 1;
}

.footer-section h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
}

.footer-section p {
    margin: 0;
    font-size: 14px;
}

.footer-section a {
    color: #87CEEB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
    }
    
    .logo {
        font-size: 14px;
        gap: 5px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav-buttons {
        gap: 10px;
    }
    
    .nav-btn {
        padding: 8px 12px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .content {
        padding: 20px;
        margin-top: 150px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .footer {
        padding: 30px 20px 15px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 12px;
        gap: 3px;
    }
    
    .logo-img {
        height: 30px;
        margin-right: 0;
    }
    
    .nav-btn {
        padding: 8px 8px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .content {
        padding: 15px;
        padding-top: 150px;
    }
    
    .content h1,
    .content p {
        padding: 15px;
        margin: 10px 0;
    }
    
    .footer {
        padding: 20px 15px 10px;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .footer-section p {
        font-size: 12px;
    }
    
    .footer-bottom {
        font-size: 10px;
    }
}

/* Mobile background adjustments: use plain black for body, footer shows image */
@media (max-width: 768px) {
    .background {
        display: none;
    }

    body {
        background-color: black !important;
    }

    .footer {
        position: relative;
        background-image: url('logolarge.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-color: transparent;
        border-top: none;
        
    }

    .footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6);
        pointer-events: none;
    }

    .footer-content,
    .footer-bottom {
        position: relative;
        z-index: 1;
    }
}