<style>
    /* Variables */
    :root {
    --ff-purple-lt: #b3b8d6;
    --ff-purple-dk: #8B86AB; 
    --ff-blue-lt: #c2e7ed;
    }
    
    


    /* Font Faces */
@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('/fonts/Nunito-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

    /* Global Styles */
    body {
        font-family: 'Nunito', sans-serif;
        font-size: 16px;
        margin: 0;
        background-color: #eff2f7;
        color: black;
    }
    * {
        box-sizing: border-box;
    }
  
  
  a {
    color: black; 
  /*  text-decoration: none;  removes the default underline from links */
    transition: text-shadow 0.3s ease-in-out; /* adds a smooth transition for the shadow */
}

a:hover {
    text-decoration: none; /* optional: remove if you prefer the underline on hover */
    text-shadow: 0px 0px 10px #FF857F; /* adds a soft coral glow */
}

a:visited {
    font-style: italic; /* differentiates visited links */
}

/*THICC MAIN CONTAINER - has padding for all sizes */


    /* Container */
    #container {
        max-width: 1100px;
        margin: 0 auto;
        padding-left: 10px;
        padding-right: 15px;
    }

    /* Header */
#header {
  
    width: 100%;
    background-color: #b3b8d6;
    height: 155px; /* Moved from inline styles */
    margin-bottom: 20px; /* Moved from inline styles */
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0px 0px 0px 2px black; /* Inner black border */
    position: relative; /* Needed for absolute positioning of pseudo-elements */
    align-items: center;
    justify-content: center;
}

#header::before, #header::after {
    content: "";
    position: absolute;
    z-index: -1; /* Position them behind the main div */
    background-color: black;
}

/* Right shadow */
#header::before {
    top: 0px; /* Offset from the top */
    bottom: -10px; /* Push 10px outside of the main div's height */
    right: -10px; /* Push 10px outside of the main div's width */
    width: 30px; /* Thickness of the shadow */
    border-bottom-right-radius: 10px;
}

/* Bottom shadow */
#header::after {
    left: 5px; /* Offset from the left */
    bottom: -10px; /* Push 10px outside of the main div's height */
    height: 10px; /* Thickness of the shadow */
    width: calc(100% - 15px); /* Full width minus the offsets */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#logo-and-title {
    display: flex;
    align-items: center; /* if you want the text and logo aligned to the center of each other */
    gap: 20px; /* maintains the gap between logo and text */
}

#header-content {
    display: flex;
    align-items: center;
    justify-content: center; /* centers the content */
    gap: 20px; /* Adds a gap between the flex items */
    padding: 10px; /* Adjust as needed to control space inside the header */
    height: 100%; /* Makes sure the container fills the header */
}

.header-title {
    margin: 0; /* Remove margin to handle spacing with padding instead */
    /* No need to reduce font-size here, handle it in media queries */
}

#header-logo {
    position: static; /* Changed from absolute to keep it in the document flow */
    width: 160px; /* Adjust as needed */
    height: auto;
    z-index: 10;
    margin-top: 5%;
}


/* ANNOUNCEMENT NAVBAR TOP */
    #navbar {
        height: 40px;
        background-color: #13092D;
        width: 100%;
        border-radius: 0px 0px 10px 10px;
        color: #b3b8d6;  /* Set text color */
        font-weight: 800;  /* Set font weight */
        display: flex;  /* Center text vertically */
        align-items: center;  /* Center text vertically */
        justify-content: center;  /* Center text horizontally */
        
    }
    
#navbar a {
    color: #b3b8d6;  /* Set link color */
    text-decoration: none;  /* Remove underline from links */
}

#navbar a:hover {
    color: #c2e7ed;  /* Set hover color */
    text-decoration: underline;  /* Underline links on hover */
}


/* FOOTER */
#footer {
    width: 100%; /* assuming the same 20px of padding on each side as the header */
    background-color: #b3b8d6; /* same color as your header */
    height: 100%;
    margin-top: 20px; /* Moved from inline styles */
    margin-bottom: 20px; /* Moved from inline styles */
    border-radius: 10px; /* this gives the "bubble" effect */
    box-shadow: 0px 0px 0px 2px black; /* similar to your other elements */
    position: relative; /* this is necessary for the pseudo-elements to position themselves correctly */
    text-align: center;  /*centers the text*/
    padding: 20px; /* add more if you want more space */
    /* other stylistic choices... */
}


#footer::before, #footer::after {
    content: "";
    position: absolute;
    z-index: -1; /* position them behind the main div */
    background-color: black;
}

#footer::before {
    top: 5px; /* offset from the top */
    bottom: -10px; /* push outside of the main div's height */
    right: -10px; /* push outside of the main div's width */
    width: 20px; /* thickness of the shadow */
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#footer::after {
    left: 5px; /* offset from the left */
    bottom: -10px; /* push outside of the main div's height */
    height: 20px; /* thickness of the shadow */
    width: calc(100% - 5px); /* full width minus the offset */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    
}




/* MAIN LAYOUT */

    #flex {
        display: flex;
    }
    aside {
        background-color: #b3b8d6;
        width: 250px;
        padding: 10px;
        border-radius: 10px;
        font-size: smaller;
        margin-right: 20px; /* adjust this value as needed */
        box-shadow: 0px 0px 0px 2px black;
        position: relative;  /* Needed to position pseudo-elements relative to the aside */
}

    
aside::before, aside::after {
    content: "";
    position: absolute;
    z-index: -1; /* position them behind the main div */
    background-color: black;
}

aside::before {
    top: 5px; /* offset from the top */
    bottom: -10px; /* push 6px outside of the main div's height */
    right: -10px; /* push 6px outside of the main div's width */
    width: 20px; /* thickness of the shadow */
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

aside::after {
    left: 5px; /* offset from the left */
    bottom: -10px; /* push 6px outside of the main div's height */
    height: 10px; /* thickness of the shadow */
    width: calc(100% - 5px); /* full width minus the offset */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
  
main {
    position: relative;
    background-color: #b3b8d6;
    flex: 1;
    padding: 20px;
    order: 2;
    border-radius: 10px;
    box-shadow: 0px 0px 0px 2px black; /* Inner black border */
}

main::before, main::after {
    content: "";
    position: absolute;
    z-index: -1; /* position them behind the main div */
    background-color: black;
    width: 20px; /* thickness of the shadow */
}

/* Right shadow */
main::before {
    top: 5px; /* offset from the top */
    bottom: -10px; /* push 6px outside of the main div's height */
    right: -10px; /* push 6px outside of the main div's width */
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;    
}

/* Bottom shadow */
main::after {
    left: 5px; /* offset from the left */
    bottom: -10px; /* push 10px outside of the main div's height */
    height: 10px; /* thickness of the shadow */
    width: calc(100% - 5px); /* full width minus the left offset and the width of the main::before pseudo-element */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


#logo-container {
   /* position: absolute;  or fixed, depending on your need */
    top: 50px; /* adjust as needed */
    left: 50px; /* adjust as needed */
    z-index: 1000; /* high value to ensure it stays on top of other elements */
}

#logo-container img {
    width: 300px; /* adjust as needed */
    height: auto; /* maintain aspect ratio */
    
}



/* ROOM BOXES */


.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.image-block {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 100%; /* This keeps the aspect ratio 1:1 */
  overflow: hidden; /* To ensure the blur effect or overlay doesn't exceed the image bounds */
  border-radius: 10px; /* Rounded corners */
}

.image-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This keeps the image aspect correct */
  border-radius: inherit; /* Rounded corners */
  filter: blur(2px);
}


.image-block::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent white overlay */
  z-index: 1; /* Ensures overlay is between image and text */
}

.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  z-index: 2; /* Ensures text is above the overlay */
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background for text */
  padding: 5px; /* Adds some space around the text */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 3px solid #ffffff;
  width: 180px;
  height: 100px;
  margin: 0 auto;
  border-radius: inherit; /* Rounded corners */
  font-weight: bold;
  line-height: 1.5;
  font-variant: small-caps; /* This makes all letters uppercase but the non-initial letters are smaller */
  font-size: 125%;
  /* Add more styling for the title text */
}

.title::first-letter {
  font-size: 150%; /* Adjust as needed; this makes the first letter larger */
  line-height: 1; /* Prevents the larger first letter from affecting line height */
}


.image-block:hover .title {
  box-shadow: 0 0 10px #FF857F, /* Outer glow */
  inset 0 0 10px #FF857F; /* Inner glow */
}


/* LIST STYLES */



    /* TEXT STYLES */
    h1, h2, h3, strong {
        color: black;
    }
    h1 {
        font-size: 2.5em;
    }
    
    
       h2 {
        font-size: 2em;
    }
    
       h3 {
        font-size: 1.75em;
    }
    
    h4 {
        font-size: 1.25em;
    }
    

    /* Extra Styles */
 

 
    
   .box-centering-wrapper {
    display: flex;
    justify-content: center;
    width: 100%; /* Ensures the wrapper takes full width of the aside */
} 
    
    
    
    
    
    .box {
        background-color: #eff2f7;
        border: 1px solid black;
        padding: 10px;
        max-width: 100%; 
        overflow: visible;
    }
    
    
    .deemphasized {font-size: 0.7em; }
    
    .header-title {
        font-size: 3em;
        text-align: center;
    }
    
    /*Double dividing line for sidebar box!*/
.custom-hr {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5px;
}

.line {
    flex-grow: 1; /* This allows the line to take up all available space */
    border-top: 3px double #333;
    height: 5px;
}

.emojis {
    padding: 0 4px;
}


/*Box ul styling */
.box ul {
    padding-left: 0; /* Removes padding */
    list-style-position: inside;
}
    
  /* ANNOUNCEMENT BANNER 
  #announcement a {
    color: #b3b8d6;
    font-weight: 800;
    text-decoration: none;
}

#announcement a:hover {
    color: #c2e7ed;
    text-decoration: underline;
}

*/    
  
  
  ul li {
list-style-position: outside;
margin-left: 1em;

}  
    
    #topBar {
        width: 100%;
        height: 30px;
        padding: 10px;
        font-size: smaller;
        background-color: #13092D;
    }


/* BREADCRUMB STYLES */
  #breadcrumb ul {
  list-style: none;
  padding: 0;
  }

  #breadcrumb li {
  display: inline;
  margin-right: 5px;
  }

  #breadcrumb li:after {
  content: '>';
  margin-left: 5px;
  }

  #breadcrumb li:last-child:after {
  content: '';
  }




/* RESPONSIVE STYLES */
    
/* TABLET */
@media only screen and (max-width: 940px) {
       
        #container {
            margin-left: 10px; 
            margin-right: 15px;
            padding-left: 0px;
            padding-right: 0px;
  }     
        #flex {
            flex-wrap: wrap;
        }
        aside {
            width: 100%;
            margin-right: 0px;
        }
        main {
            order: 1;
        }
        #leftSidebar {
            order: 2;
            margin-top: 20px;
            
        }
        #navbar ul {
            flex-wrap: wrap;
        }
            .header-title {
        font-size: 2em; /* Adjust as needed */
    }
    
        #header-logo {
        width: 150px; /* Adjust as needed */
        margin-top: 5%; /*adjust positioning*/
    }
    
        #header {
        height: 150px; /* or whatever smaller height looks good */
        /* reduce padding if necessary */
    }
    
    
/* PHONE */    
    
    /* You might need an additional query for smaller screens */
@media only screen and (max-width: 700px) {
    .header-title {
        font-size: 1.5em; /* Adjust as needed */
    }
    #header-logo {
        width: 105px; /* Adjust as needed */
        margin-top: 5%; /*adjust positioning*/
    }
    
        #header {
        height: 100px; /* or whatever smaller height looks good */
        /* reduce padding if necessary */
    }
    
      .image-grid {
    grid-template-columns: 1fr; /* Single column for smaller screens */
  }
  
}

       


</style>