.site-title{
    color: rgb(252, 252, 252);
    font-family: "Averia Serif Libre", serif;
  font-weight: 700;
  font-style: normal;
    font-size: larger;
    text-align: center;
    padding-bottom: 0px;
    padding-top: 7px;
}
.averia-serif-libre-bold {
  font-family: "Averia Serif Libre", serif;
  font-weight: 700;
  font-style: normal;
}

header {
  background-color: #385a55;
}

.site-title {
  color: rgb(252, 252, 252);
  font-family: "Averia Serif Libre", serif;
  font-weight: 700;
  font-size: larger;
  text-align: center;
  padding: 7px 0;
}



nav {
  background-color: #385a55;
  z-index: 1000;
  padding-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  background-color: #385a55;
  padding: 0.5rem 0;
  gap: 1rem;
  margin: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

nav ul li a:hover,
nav ul li a.active {
  color: #84a9a3;
  border-radius: 4px;
}

.menu-toggle{
  align-items: center;
  
}

  body{
    font-family:Arial, Helvetica, sans-serif;

    color: rgb(41, 41, 41);
 
  }

  p{
    color: #000000;
  }

  h2{
    color: #000000;
  }

 .hero {
  position: relative;
  background-image: url(https://images.pexels.com/photos/1313807/pexels-photo-1313807.jpeg);
  background-size: auto;
  background-position: center;
  text-align: center;
  padding: 6rem 1rem;
  display: flex;
  justify-content: center;
  height: 100px;
  align-items: center;
  z-index: 1;
  max-height: 300px;
  min-height: 30vh; 
}


.hero-content {
  background-color: rgba(22, 41, 39, 0.725);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  max-width: 700px;
  max-height: 300px;
  width: 80%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px); 
}


.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: "Averia Serif Libre", serif;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero p{ 
  padding-left: 100px;
  padding-right: 100px;
}

.hero h2{
  font-size: xx-large;
}

.hero h2, p{
  color: white;
}









.hero-btn {
  background-color: #84a9a3;
  border: none;
  text-decoration: none;
  color:aliceblue;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color:#84a9a3;

}


.footer{
  background-color:#385a55;
  text-align: center;
  padding: 1rem 0;
  margin-top: auto;
  font-size: 0.9rem;
}

.footer p{
  color: white;
}


h2{
    text-align: center;
}
  
.carousel-container {
  overflow: hidden; 
  border-radius: 12px; 
  max-width: 90%;
  justify-content: center;
  align-items: center;

}
 
  .carousel-track {
    display: flex;
    transition: transform 0.6s ease;
  }

  .card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }

  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .card-content {
    padding: 15px;
  }

  .card h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: #111827;
  }

  .card p {
    font-size: 0.95rem;
    color: #4b5563;
  }

  .card-btn {
  margin-top: 10px;
  background: #385a55;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.card-btn:hover {
  background: #2f4e4a;
}

  .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #e5e7eb;
  color: #111827;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 10;
}

.arrow.left {
  height: 45px; 
  margin-left: -50px; 
}

.arrow.right {
  right: 0;
  margin-right: 100px;
}

.arrow:hover {
  background: #84a9a3;
  color: white;
  border-color: #84a9a3;
  transform: translateY(-50%) scale(1.1);
}
  .dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .dot {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .dot.active { background: #374151; }

  .wrapper {
  position: relative;
  width: 100%;
  display: ;
  max-width: 1000px;
  margin: auto;
  align-items: center;
  padding-left: 160px;
  padding-right: 100px;
}

.lower{
  img{
   width: 100%;
   max-height: 120px;
    object-fit: cover;
  }
  .lower-content {
  background-color: rgba(22, 41, 39, 0.725);
  color: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  max-width: 700px;
  max-height: 300px;
  width: 80%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px); 
}
}
  @media (max-width: 900px) {
    .card { flex: 0 0 calc(50% - 20px); }
  }

  @media (max-width: 600px) {
    .card { flex: 0 0 calc(100% - 20px); }
  .hero p{
    font-size: x-small;
    padding-left: 10px;
    padding-right: 10px;
  }
  .wrapper{
  align-items: center;
  margin: none;
  max-width: 90%;
  height: auto;
  padding-left: 45px;
  }
  }
  .menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  padding-top: 25px;
  align-items: center;
}

@media (max-width: 768px) {
  .card { flex: 0 0 calc(50% - 20px);
  align-items: center; 
  max-width: 100%;
height: auto;}

.wrapper{
  align-items: center;
  margin: none;
  max-width: 90%;
  height: auto;
  padding-left: 45px;
}
 
  nav ul {
    display: none;
    flex-direction: column;
    background-color: #385a55;
    position: absolute;
    top: 60px; 
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1001;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
  }

  nav ul li {
    margin: 0.5rem 0;
  }
}

html, body {
  margin: 0;
  padding: 0;
}