/* Google Font Integration */
.sora-title {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700; /* Example weight */
    font-style: normal;
}

.sora-subtitle {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Example weight */
    font-style: normal;
}

.sora-body {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300; /* Example weight for body text */
    font-style: normal;
}

/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    min-height: 100vh;
}

.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000; /* Ensure it's on top */
}

.language-toggle input[type="radio"] {
    display: none;
}

.language-toggle label {
    background-color: #f1f1f1;
    padding: 10px;
    margin: 2px 0;
    cursor: pointer;
    text-align: center;
    width: 60px;
    color: #333;
}

.language-toggle input[type="radio"]:checked + label {
    background-color: rgb(56, 56, 56);
    color: white;
}

/* Sidebar Styles */
.sidebar {
    width: 15mm;
    background-color: white; /* Change sidebar background to white */
    color: black; /* Change sidebar text color to black */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    position: fixed;
    border-right: 2px solid black; /* Add a black line on the right edge */
    height: 100vh; /* Ensure sidebar takes full height */
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
}

.sidebar a {
    color: black; /* Ensure all links in the sidebar are black */
    text-decoration: none; /* Remove underlines from links */
}

.top-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    margin: 20px 0;
    text-align: right;
}

.bottom-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    margin: 20px 0;
    text-align: left;
}

.links {
    position: absolute; /* Set the container to absolute positioning */
    top: 50%; /* Position the top of the container at the center of the viewport */
    transform: translateY(-50%); /* Adjust the container to center it vertically */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the start (left side) */
    gap: 2mm; /* Add gap between the boxes */
}

.links a {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    text-decoration: none;
    margin: 1mm 0; /* 2mm gap between boxes (1mm top, 1mm bottom) */
    color: white; /* Ensure links inside boxes are white */
    background-color: rgb(56, 56, 56); /* Black boxes for links */
    padding: 30px; /* Padding inside the boxes */
    height: 100px;
    width: 50px; /* Initial width of the boxes */
    transition: width 0.6s ease; /* Smooth transition for width */
    position: relative; /* Use relative positioning for smooth transitions */
    left: 0; /* Align to the left side of the page */
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center text horizontally */
    align-items: flex-end; /* Align text to the bottom */
}

.links a:hover, .links a.active {
    width: 100px; /* Double the width on hover and when active */
}

.links a:hover, .links a:active {
    text-decoration: none; /* Ensure no underline on hover and active */
}

/* Main Content Wrapper to center the content */
.main-content-wrapper {
    width: 66%;
    margin: 0 auto;
    padding: 20px;
}

/* Main Content Styles */
.main-content {
    text-align: left;
}

.main-content h1,
.main-content h2,
.main-content p {
    text-align: left;
}

/* Blog Post Styles */
.blog-post {
    display: flex;
    align-items: flex-start; /* Align text with the top of the image */
    margin: 160px 0; /* Gap between blog posts */
}

.blog-post-reverse {
    flex-direction: row-reverse;
    align-items: flex-start; /* Align text with the top of the image */
}

.blog-text {
    flex: 1;
    padding: 10px;
}

.blog-image {
    flex: 1;
    padding: 10px;
}

.blog-image img {
    width: 100%;
    height: auto;
}

/* Copyright Disclaimer Styles */
.copyright-disclaimer {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    position: fixed;
    top: 50%;
    right: 0px; /* Adjust this value to place it slightly inside the viewport */
    transform: translateY(-50%);
    padding: 5px;
    text-align: center;
}
