/* This is the background for the entire page */
body, html {
	margin: 0;
	background-image: url("/glitter_purple_star_backdrop.png");
	font-family: "Calibri", "Arial", sans-serif;
	font-size: 14.7px;
	color: #987362; 
	background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;

}

.container {
margin: auto; 
padding: 20px; 
width: 1100px;
height: 720px; 
}

/* For welcome box */
.header-img {
  width: 100%;
  margin-top: 15px;
  border-radius: 8px;
}

.right {
margin-top: 25px; 
float: right; 
padding: 10px; 
width: 35%; 
height: 85%; 
box-sizing: border-box;
}

.left {
margin-top: 25px; 
float: left; 
padding: 10px; 
width: 65%; 
height: 85%; 
box-sizing: border-box;
}

/*
For central box
*/
.central-box {
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #d5aaff;
  border-radius: 10px;
  padding: 15px;
	overflow: hidden;
}

.central-box h1 {
	margin-top: 0;
	color: #b57edc;
	font-size: 2em;
	text-align: left;
}

.central-box h3 {
	margin-top: 0;
  color: #b57edc;
  font-size: 1.2em;
  text-align: left;
}

/*
For navigation box
*/
.nav-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px; /* space between box and image */
}

.nav-box {
  width: 180px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid #d5aaff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  overflow: hidden;
}

.nav-box h3 {
  margin-top: 0;
  color: #b57edc;
  font-size: 1.2em;
  text-align: left;
  box-sizing: border-box;
}

.nav-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-box li {
  margin: 8px 0;
  text-align: left;
}

.nav-box a {
  color: #987362;
  text-decoration: none;
  font-weight: bold;
}

.nav-box a:hover {
  color: #b57edc;
  text-decoration: underline;
}

.nav-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.nav-side-img {
  width: 100px;
  height: auto;
  border-radius: 10px;
  /* prevents the image from shrinking */
  flex-shrink: 0;
  /* soft lavendar color*/
  border: 3px solid #eacbff;
  /* soft pastel glow */
  box-shadow: 0 0 10px #eacbff80; 

}


/* Cute image styling */
.cute-img {
  width: 100%;
  margin-top: 15px;
  border-radius: 8px;
}

.cute-img-large {
  width: 80%;
  display: block;
  margin: 20px auto;
  border-radius: 12px;
}

/*
For footer
*/
.site-footer {
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  border-top: 2px solid #4a4a4a;
  margin-top: 40px;
}
.site-footer a {
  color: #d5aaff;
  text-decoration: none;
  margin: 0 9px;
}
.site-footer a:hover {
  text-decoration: underline;
}