/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f8ff;
  color: #333;
}

/* Container */
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

/* Header Styling */
header {
  background-color: #026773;
  color: white;
  padding: 20px 10px;
  text-align: center;
}

header img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Navigation Menu */
nav {
  margin-top: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 4px;
}

nav a:hover {
  background-color: #014f5b;
}

/* Main Content */
main {
  background-color: white;
  padding: 30px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
}

main img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 8px;
}

/* Headings */
h1, h2 {
  color: yellow;
  margin-bottom: 15px;
}

/* Paragraphs */
p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Lists */
ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #e1e1e1;
  color: #555;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  margin-top: 30px;
  border-top: 1px solid #ccc;
}

/*text-box*/	
.text-box {
  background-color: #f9f9f9;     /* Light grey background */
  border: 2px solid #ccc;        /* Soft grey border */
  padding: 20px;                 /* Space inside the box */
  border-radius: 10px;           /* Rounded corners */
  max-width: 900px;              /* Optional: limit width */
  margin: 30px auto;             /* Center the box */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/*quote-box*/	
.quote-box {
  background-color: #f9f9f9;     /* Light grey background */
  border: 2px solid #ccc;        /* Soft grey border */
  padding: 20px;                 /* Space inside the box */
  border-radius: 10px;           /* Rounded corners */
  max-width: 900px;              /* Optional: limit width */
  margin: 30px auto;             /* Center the box */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
}

p {
  text-align: center;
}

h3 {
  text-align: center;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row */
  gap: 20px;
  margin-top: 20px;
}

.activity-box {
  border: 2px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 10px;
  text-align: center;
}

.activity-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/*  sidebar  */
.sidebar {
  position: fixed;
  right: 0;
  top: 0;
  width: 200px;
  height: 100%;
  background-color: #f1f1f1;
  padding-top: 20px;
  overflow-x: hidden;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Sidebar links */
.sidebar a {
  display: block;
  color: black;
  padding: 16px;
  text-decoration: none;
}

/* Active link */
.sidebar a.active {
  background-color: #04AA6D;
  color: white;
}

/* Hover effect */
.sidebar a:hover:not(.active) {
  background-color: #555;
  color: white;
}

/* Main content - leaves space on the right for sidebar */
.content {
  margin-right: 200px; /* Make space for sidebar */
  padding: 20px;
}

/* Responsive: sidebar becomes topbar */
@media screen and (max-width: 700px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    right: 0;
    top: auto;
    box-shadow: none;
  }

  .sidebar a {
    float: left;
  }

  .content {
    margin-right: 0;
  }
}

@media screen and (max-width: 400px) {
  .sidebar a {
    text-align: center;
    float: none;
  }
}


