/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, serif;
}

/* Global styles */
body {
  line-height: 1.4; /* Reduced line-height to minimize vertical spacing */
  color: #333;
  background-color: #e4e9e1;
}
.container {
  width: 90%;
  margin: 0 auto;
}

/* Navbar styles */
.navbar {
  background-color: #2a3d34;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #4CAF50;
  height: 60px; /* Fixed height for consistent appearance */
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.navbar-left .brand {
  font-family: cursive;
  color: white;
  text-decoration: none;
}

.navbar-left .brand:hover {
  color: #4CAF50;
}

.navbar-right {
  display: flex;
  gap: 20px;
  font-weight: bold;
  align-items: center;
}

.navbar-right a {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  padding: 8px 10px;
}

.navbar-right a:hover {
  color: #4CAF50;
}
/* Jumbotron styles */
.jumbotron {
  background-color: #ffffff;
  padding: 30px; /* Reduced padding for mobile */
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  text-align: justify;
}

.jumbotron h1 {
  font-size: 2rem;
  color: #2a3d34;
  text-align: center;
}

.jumbotron p.lead {
  font-size: 1.1rem; /* Adjust as needed */
  color: #333;
  line-height: 1.5; /* Reduced line-height */
  word-spacing: 0; /* Reset word-spacing */
  letter-spacing: 0; /* Reset letter-spacing */
  text-align: left; /* Change to left-align to avoid justification gaps */
}

body {
  margin-top: 60px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .navbar-right {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2a3d34;
    width: 100%;
    padding: 10px 0;
  }

  .navbar-right.active {
    display: flex;
  }

  .navbar-toggle {
    display: block;
  }

  .jumbotron p.lead {
    font-size: 1rem; /* Further reduced font size for mobile */
    line-height: 1.4; /* Reduced line-height for mobile */
    word-spacing: 0.02rem; /* Minimized word spacing */
  }
}

/* Smaller devices */
@media (max-width: 480px) {
  .jumbotron h1 {
    font-size: 1.8rem;
  }
  .jumbotron p.lead {
    font-size: 0.9rem;
    line-height: 1.3;
  }
}
