
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /*font-family: Arial, sans-serif;*/
  font-family: 'Lato', sans-serif;
  line-height: 1.6;  /* or 24px, 150%, etc. */
}

html, body {
  height: 100%;
}

/*
a:hover {
  color: red;         /* Change text color on hover 
  text-decoration: underline;  /* Optional: adds underline 
  font-weight: bold;  /* Optional: makes it bold 
}
*/

.logo-tagline {
  display: flex;
  flex-direction: column;
  align-items: start;  /* or center if you want it centered */
}
.tagline {
  font-size: 14px;
  color: #555;
  /*margin-top: 5px;*/
  font-style: italic;
}

body {
  /*display: flex;
  flex-direction: column;
  line-height: 1.6;
  background: #f9f9f9;
  min-height: 100vh;*/

  background-image: url('bkground.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

header {
  background: #fafafa;
  color: rgb(0, 0, 0);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.logo {
  width: 120px;
  height: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s;
}

.nav-links li a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.section {
  padding: 60px 0;
  /*background: white;*/
  background: rgba(255, 255, 255, 0.6); /* Optional: semi-transparent */
  margin-bottom: 10px;
  flex: 1;
}

.container {
  width: 90%;
  margin: auto;
}

h1, h2, h3, h4 {
  margin-bottom: 20px;
  color: #004d40;
  font-family: 'Playfair Display', serif;
}

footer {
  background: #0a8e24;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 20px 0;
  margin-top: auto;
}
