/* Base Styling */
body {
  font-family: "Times New Roman", serif;
  background-color: #eaf4fc; /* soft heavenly blue */
  color: #222;
  margin: 0;
  padding: 0;
}

/* Main Layout */
#container {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

/* Sidebar Styling */
#sidebar {
  width: 110px;
  background-color: #f5faff;
  border-right: 1px solid #ccc;
  text-align: center;
  padding: 40px 10px;
  box-sizing: border-box;
  flex-shrink: 0;

  /* Fixed full-height sidebar */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}

#sidebar a {
  display: block;
  margin-bottom: 50px;
  text-decoration: none;
  color: #002e5d;
  font-weight: bold;
  font-size: 19px;
}

/* Main Content Area */
#main {
  flex: 1;
  padding: 40px 30px;

  /* Fixed min width, grows fluidly but capped */
  width: 70%;
  max-width: 1600px;
  min-width: 700px;

  margin-left: 110px; /* avoid overlap with fixed sidebar */
  box-sizing: border-box;
}

/* Make text scale wider on very large screens */
@media screen and (min-width: 1600px) {
  #main {
    width: 80%;
  }
}

@media screen and (min-width: 2000px) {
  #main {
    width: 88%;
  }
}

/* Title */
.title {
  font-family: "Times New Roman", serif;
  font-size: 40px;
  font-weight: lighter;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #002e5d;
}

.title span {
  font-weight: bold;
  color: #002e5d;
}

/* Welcome Label */
.welcome {
  text-transform: uppercase;
  font-size: 28px;
  letter-spacing: 5px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #002e5d;
}

/* Paragraphs */
p {
  line-height: 1.8;
  font-size: 18px;
  max-width: 100%;
}

/* Image Resize */
.img-resize { 
    object-fit: contain;
    max-width: 100%;
}

/* Responsive Layout for Phones/Tablets */
@media screen and (max-width: 768px) {
  #container {
    flex-direction: column;
  }

  #sidebar {
    position: static;
    width: 100%;
    display: flex;
    justify-content: space-around;
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
  }

  #sidebar a {
    font-size: 20px;
    margin: 0;
  }

  #main {
    padding: 20px;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }

  .title {
    font-size: 32px;
    margin-left: 0;
  }

  .welcome {
    font-size: 24px;
    letter-spacing: 3px;
  }

  p {
    font-size: 17px;
  }
}
