



/* -------------------- RESPONSIVE -------------------- */
@media (min-width: 1024px) {
    /* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background: #ffffff;
    min-height: 100vh;
}

/* Headings */
h1, p {
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
}

h1 {
    color: #4d395c;
    font-size: 3rem;
    margin-top: 1rem;
}

h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin: 2rem 1rem 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  

/* Layout Containers */
.container {
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    min-height: 100vh;
    height: 100%;
    width: 90%;
    padding-top: 0;
    margin-top: 0;
    padding-right: 5rem;
}

.sidebar {
    position: fixed;
    align-self: stretch;
    top: 0;
    left: 0;
    width: 20rem;
    height: 100dvh;
    background-color: #4d395c;
    color: white;
    border-radius: 0;
    padding: 3rem 1rem;
    overflow-y: auto;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15rem;
    width: 5rem;
    height: 100%;
    background-color: #ffffff;
    border-radius: 100% 0 0 100% / 60% 0 0 60%;
    z-index: 0;
    pointer-events: none;
}

.sidebar-top {
    padding-bottom: 1rem;
    line-height: 1.5rem;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.sidebar-bottom {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-right: 5rem;
    margin-bottom: 0;
}

.sidebar-bottom img {
    max-width: 4rem;
    height: auto;
    display: block;
    margin: 0 auto 6rem;
    border-radius: 1rem;
}

/* Menu Items */
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.sidebar ul li {
    margin-bottom: 1.5rem;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 1.2rem 1.6rem;
    border-radius: 1.2rem;
    transition: background-color 0.3s;
}

.sidebar ul li a:hover {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

/* Main Content */
.content {
    opacity: 0;
    transition: opacity 0.8s ease-in;
    flex: 1;
    flex-direction: column;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    position: relative;
    z-index: 2;
    font-size: 1rem;
    line-height: 2;
    padding-top: 10rem;

}

.content.fade-in {
    opacity: 1;
}

/* Centered Text */
.content h1,
.content p {
    text-align: center;
    margin: 1rem auto;
    width: 100%;
}

/* Circle Container */
.page-with-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.circle-container {
    width: 90%;
    max-width: 40rem;
    aspect-ratio: 1 / 1;
    background-color: white;
    border: 2rem solid #4d395c;
    border-radius: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 2rem;
}

.circle-header {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 4rem;
    max-width: 90%;
    font-family: sans-serif;
    font-weight: bold;
}

.circle-content p {
    margin: 0 auto;
    max-width: 90%;
    font-family: sans-serif;
    font-weight: bold;
}

.connect, 
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.about {
    padding-left: 10rem;
}
.circle-image {
    transform: scale(.75);
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 1rem;
}
/* Scrollbar for Scrollable Content */
.scrollable-content::-webkit-scrollbar {
    width: 0.6rem;
}
.scrollable-content::-webkit-scrollbar-thumb {
    background-color: #4d395c;
    border-radius: 0.4rem;
}

/* Homepage Center Image */
.centered-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 0 2rem;
    overflow: hidden;
}

.homepage-logo {
    display: block;
    height: auto;
    transform: scale(1.5);
}

.homepage-logo,
.homepage-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 1rem auto;
    object-fit: contain;
}



/* Image & Text Wrapper */
.image-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin-top: 30rem;
    margin-right: 20rem;
    display: flex;
}

.image-text-wrapper h1 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}    
}
