/* Section Styles */
section {
    padding: 20px;
    margin: 0 0;
    height: 100vh;
    width: 100%;
}

.section-content {
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {
    .section, #container.section-content
    {
        padding: 1rem !important;
    }

}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 !important;
}

/* Intro Section */
#intro {
    height: auto;
    width: 100%;
    margin-top: 0px;
}

#intro p#encourageContact {
    font-weight: 500 !important;
    text-align: center;
    margin-top: 20px;
}

/* About Section */
#about {
    overflow: hidden;
    height: 100vh;
    width: 100%;
    padding: initial;
    overflow-x: hidden;
}

/* Contact Section */
#contact {
    height: auto !important;
    width: 100%;
    padding-top: 64px;
}

/* Experience Circle Background */
#experienceCircle {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    animation: fadeInUp 1s ease;
}

#experienceCircle img {
    opacity: 0.5;
    position: absolute;
    width: 100%;
    max-width: 1000px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(0) !important;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

#experienceCircle img.show {
    filter: brightness(1) blur(100px) !important;
    transition: var(--transition-speed) ease;
}

#experienceCircle i {
    color: var(--text);
}
