
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Silkscreen:wght@400;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');


/* Header styles */
#topHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    padding: 10px 20px; /* Add horizontal padding to give space on the sides */
    border-bottom: 1px solid #ddd; /*black; /* Thick solid border for testing */
    height: auto; /* Adjust to fit content */
    display: flex;
    justify-content: space-between; /* Distribute space between brand name and contact */
    align-items: center; /* Vertically center items */
    box-sizing: border-box; /* Ensure padding doesn't cause overflow */
  }
  
  #logo {
    flex: 0 0 auto; /* This allows the logo to take as much space as it needs without pushing other elements */
    margin-left: 20px; /* Optional: space between logo and brand name */
  }
  
  #logo img {
    width: 90%; /* Keep the width as is */
    max-width: 50px; /* Optional: limit the size of the logo */
    height: auto; /* Maintain the aspect ratio */
    display: block;
  }

  #brandName {
    flex: 1; /* Allows it to take up space and center properly */
    text-align: center; /* Center the text in its space */
    font-size: 17px; /* Adjust font size */
    font-family: "Silkscreen", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
  }
  
  #contactInfo {
    font-size: 14px;
    text-align: right; 
    white-space: nowrap;
    margin-right: 20px;
    padding-right: 20px;
  }
  
  #contactInfo a {
    text-decoration: none; /* Remove underline */
    color: #000; /* Black text for the link */
  }
  
  #contactInfo a:hover {
    text-decoration: underline; /* Add underline on hover */
  }

/* Top Header ends */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.container {
    display: flex;
    min-height: 100vh;
    margin-top: 70px; /* Push content down */
}

.left-sidebar,
.right-sidebar {
    width: 23%;  /* Adjust width as needed */
    background-color: #f4f4f4;
    padding: 20px;
    border-right: 1px solid #ddd;
}

.right-sidebar {
    border-left: 1px solid #ddd;
}

.content {
    flex: 1;  /* Takes up the remaining space */
    padding: 20px;
}


/* content */
.info-box {
    background-color: #f4f4f4; /* Light gray background */
    padding: 20px;
    border-radius: 12px; /* Rounded corners */
    border: 1px solid #ddd; /* Subtle border */
    font-size: 14px;
    text-align: center;
    max-width: 600px; /* Limits width */
    margin: 20px auto; /* Center it */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.icon {
    width: 20px; /* Adjust size */
    height: auto;
    vertical-align: middle; /* Aligns with text */
    margin: 0 5px; /* Adds space around the icon */
}

span.support {
  display: inline-block;
  margin: 2px 5px;
  padding: 0.5px 5px;
  line-height: 2rem;
  font-weight: 700;
  font-size: 21px;
  color: #f6fafc;
  border-radius: 9px;
}
.support-light { background-color: #E0C350;} /*#ada599;}/* #93C572; } */
.support-sbp { background-color: #7fb6c8; }
.support-mrsm { background-color: #e5a0c6; }
.support-location { background-color: #F89880; }
.support-other { background-color: darkgrey; }

@media (max-width: 768px) {
/*   .left-sidebar,
  .right-sidebar {
    display: none;
  } */

    .container {
    display: block;  /* stack content and sidebars vertically */
  }
    .right-sidebar {
    display: block;  /* show it */
    width: 100%;
    border-top: 1px solid #ccc;
    padding: 15px;
  }

  .left-sidebar {
    display: none;   /* hide left sidebar */
  }

/*   .container {
    flex-direction: column;
    padding: 1rem;
  } */

  .content {
    width: 100%;
    padding: 1rem;
  }
}

/* right side bar */

.sidebar-box {
  margin-bottom: 1.5rem;  /* This adds a clean gap BELOW the box */
  margin-top: 1.5rem;
}
.sidebar-divider {
  border: none;               /* Removes default HR look */
  border-top: 1px solid #ccc; /* Thin line */
  margin: 1rem 0;             /* Space above/below */
  width: 100%;                /* Full width of sidebar */
}

.sidebar-box h1 {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.05rem;
}

.sidebar-box p {
  /* font-family: "PT Serif", serif;
  font-weight: 400; */
  font-size: 0.9rem;
  /* line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 0.05rem; */
}

.sidebar-box a{
  text-decoration: none;
  color: inherit; /* same as surrounding text */
}
.sidebar-box a:hover {
  color: #304674; /* bright blue on hover */
}
