/*hello*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/*web page info content starts HERE*/
.container {
    /*container is the main wrapper for the entire web page content*/
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    /*above the background grid layer*/
}

.main-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.section {
    margin-bottom: 6rem;
}

ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#list-title {
    margin-bottom: 1rem;
}

ul li {
    list-style: none;
}

/* Section Headers */
.section-title {
    margin-top: 2.5rem;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
}

/* About Section */
.about-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #cbd5e1;
    background: rgba(15, 15, 35, 0.4);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}

.about-content p {
    margin-bottom: 1.5rem;
}



@media (max-width: 920px) {

    .main-content {
        margin-left: 0;
        margin-right: 0;
        padding: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(139, 92, 246, 0.3);
    border-top: 3px solid #8b5cf6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*star background*/
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    /* allows clicks through the particles */
}

.about-content img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#home-button {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    display: block;
    margin: 2rem auto 0;
    text-align: center;
    width: fit-content;
}

#home-button:hover {
    background: rgba(139, 92, 246, 0.1);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
    border-color: #8b5cf6;
}