{box-sizing: border-box;}

body {
  background-image: url('/planet.jpg'); /* 👈 Your image path here! */
  background-size: cover;
  background-repeat: no-repeat; /* Prevents the image from repeating */
  background-position: top center;
  background-attachment: fixed;
  
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    margin: 0;
    /* background-color: #1b1b1e; */
    color:#ffd6ed;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sidebar-gif{
    width: 100px;  /* For example, 100 pixels wide */
    height: auto; 
}

header{
  width:60%;
  color:#ffd6ed;
  padding:10px 0;
  text-align:center;
  margin: 0 auto; /* This centered the header, without this the header was aligned left. */
}

h1,h2,h3 {
  font-family: "Jersey 10", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
}

nav ul {
    list-style: none;
    padding: 5px;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

nav li {
    text-align: center;
}

nav a {
    text-decoration: none; /* Removes the underline from links */
    color:#ffd6ed; /* Sets link color */
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    color: #cfb5c7; /* Changes color when you hover over a link */
    background-color: rgba(255,255,255,0.1);
}

h1{
  font-family:"Jersey 10", sans-serif;
  font-weight:400;
  font-style:normal;
  font-size: 3rem;
  color: #ffd6ed;
  margin-top: 20px;
  margin-bottom: 0;
}

.site-content-wrapper {
    display: flex;
    flex-grow: 1;
    max-width: 1200px;
    width: 60%;
    margin: 20px auto;
    padding: 0 10px;
    gap: 20px;
}

.main-content-area {
    flex: 1; /* Allows this to grow and take up remaining space */
    padding: 25px;
    border-radius: 20px;
    box-shadow: 2px 5px 10px rgba(0,0,0,0.1);
    text-align: left;
    order: 1;
    color: #ffd6ed;
}

.main-content-area h2 { 
    font-family: "Jersey 10", sans-serif;
    font-weight:400;
    font-style:normal;
    font-size:2.2rem;
    text-align:left;
    color: #ffd6ed;
    margin-top: 0; 
    margin-bottom: 0.5em;
}

.main-content-area p{
  line-height: 1.6;
  margin-bottom: 1em;
}

.main-content-area hr {
    border: none;
    border-top: 1px dashed #cfb5c7;
    height: 1px;
    margin: 0px 0;
}

.sidebar {
    flex: 0 0 250px;
    background-color: transparent; /* Make the sidebar container itself transparent */
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    order: 2;
}

.sidebar-block {
    /* background-color: #232C27; */
    color:#ffd6ed;
    padding: 15px;
    border-radius: 20px;
    margin-bottom: 20px; /* Space between blocks */
    box-shadow: none;
}

/* Remove bottom margin from the last sidebar block to avoid extra space at the end */
.sidebar-block:last-child {
    margin-bottom: 0;
}

/* Styling for headings within sidebar blocks */
.sidebar-block h3 {
    margin-top: 0; /* Remove default top margin from sidebar h3s */
    color: #ffd6ed; /* Steel Blue for sidebar block headings */
    font-size: 1.6rem; /* Slightly larger font for block headings */
    margin-bottom: 10px; /* Space below heading */
    text-align: center;
    font-family: "Jersey 10", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Styling for lists within sidebar blocks */
.sidebar-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-block li {
    margin-bottom: 5px; /* Space between list items */
    text-align: center;
}

.sidebar-block a {
    color: #ffd6ed; /* Darker text for sidebar links */
    text-decoration: none;
}

.sidebar-block a:hover {
    color: #cfb5c7; /* Blue on hover */
    text-decoration: underline;
}

/*footer {
    background-color: #1b1b1e;
    color: #ffd6ed;
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto; /* ADDED FOR RESPONSIVENESS: Pushes footer to the bottom when flex-grow: 1 is on content wrapper */



/* --- MEDIA QUERY (RESPONSIVENESS) --- */
@media (max-width: 768px) {
    .site-content-wrapper {
        flex-direction: column;
        padding: 0 10px;
        margin: 10px auto;
        gap:0;
    }
    .sidebar,
    .main-content-area {
        order: unset; /* Revert to HTML order on mobile */
        width:100%;
    }
    
    .sidebar {
        margin-bottom:20px;
        flex: 0 0 auto;
        width: 100%;
        padding: 0; /* No padding on the sidebar container itself */
        background-color: transparent; /* No background */
    }
    /* Adjust sidebar-block margin for mobile if needed, or keep it the same */
    .sidebar-block {
        margin-bottom: 15px; /* Slightly less space between blocks on mobile */
    }
    .sidebar-block:last-child {
        margin-bottom: 0;
    }
    .main-content-area {
        width: 100%;
    }
    