
/* Hey friend! */
body {
  background-image: url('IMG_9682.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Georgia", serif;
  text-align: center;
  margin: 0;
  padding: 40px;
  color: #2c2c2c;
}

.main-header {
  background-color: rgba(255, 255, 255, 1);
  color: #1a4c8b;
  display: inline-block;
  padding: 30px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin-bottom: 60px;
}

.main-header h1,
.main-header h2,
.main-header h3 {
  margin: 10px 0;
}

.content-columns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 0;
}

.column {
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid #d4c6a5;
  border-radius: 12px;
  padding: 20px;
  width: 30%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-align: center;
}

.column h2,
.column p {
  color: #5c3d2e;
  margin: 10px 0;
  padding: 0;
  border: none;
  text-decoration: none;
}

.column a {
  text-decoration: none;
  color: #5c3d2e;
}

.next-page {
  margin-top: 40px;
  text-align: center;
}

.next-page a {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.85);
  color: #1a4c8b;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s, background 0.2s;
}

.next-page a:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateX(5px);
}

@media (max-width: 800px) {
  .content-columns {
    flex-direction: column;
    align-items: center;
  }
  .column {
    width: 80%;
    margin-bottom: 20px;
  }
}
/* --- Learn Page Layout --- */
.topic-row {
  display: flex;
  justify-content: center;
  gap: 30px;                
  margin-bottom: 30px;      }

.topic-box {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #d4c6a5;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  width: 250px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.2s, background 0.2s;
}

.topic-box a {
  text-decoration: none;
  color: #5c3d2e;
  font-weight: bold;
  font-size: 18px;
  word-wrap: break-word;
}
.text-box {
  background-color: rgba(255, 255, 255, 0.9); 
  color: #5c3d2e; 
  padding: 20px;
  border-radius: 12px; 
  border: 2px solid #d4c6a5; 
  margin: 20px auto; 
  max-width: 800px; 
  text-align: left; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); 
}

/* Mobile friendly layout */
@media (max-width: 800px) {
  .topic-box {
    width: 80%;
  }
}




