@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}


.navbar {
  background-color: #f5e3d0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.nav-links a {
  margin: 0px 20px;
  text-decoration: none;
  color: #1b1b1b;
  font-weight: 500px;
  font-size: 16px;
}

.nav-icons {
  display: flex;
  gap: 10px;
}

.icon {
  width: 20px;
  height: 20px;
  background-color: #b30000;
  border-radius: 50%;
}


.slider {
  background-color: #666;
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow: hidden;
}

.slider__item {
  position: relative;
  float: left;
  width: 100vw; /* Full viewport width */
  height: 100vh; /* Full height of screen */
  max-height: 600px; /* Optional limit */
  overflow: hidden;
}

.slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} 


.hero-text h2 {
    font-size: 40px;
    margin-top: 20px;
    text-align: center;
    background-color: #F5E3D0;
    min-width: 91px;
    min-height: 151px;
    padding-top: 35px;
}


.tiles {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  background-color: #ddd;
  padding: 20px;
  margin-bottom: 20px;
}

.tile {
  background-color: #aaa;
  padding: 24px 16px;
  width: 120px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  border-radius: 35px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.tile:hover {
  background-color: #888;
}

.split {
  display: flex;
  height: 300px;
}

.split-left,
.split-right {
  flex: 1;
  padding: 40px;
  color: white;
}

.split-left {
  background-color: #174c3c;
	margin-right: 10px;
}

.split-right {
  background-color: #a60000;
}


.banner {
  background-color: #a60000;
  color: white;
  text-align: center;
  padding: 80px 40px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.banner h2 {
  font-size: 32px;
	margin-top: 10px;
}

.banner p {
  margin-top: 16px;
  font-size: 18px;
}


.green-wide {
  background-color: #174c3c;
  color: white;
  padding: 60px 40px;
  text-align: center;
}

.green-wide h2 {
  font-size: 28px;
}

.green-wide p {
  font-size: 16px;
  margin-top: 8px;
}


.footer {
  background-color: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

@media (max-width: 580px) {
  .slider__item {
    height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

.nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
  }

  .nav-links a {
    font-size: 15px;
    padding: 6px 10px;
    text-align: center;
  }

  .nav-icons {
    display: none;
  }
	
.logo img {
  margin-bottom: 10px;
}

  .tiles {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }

  .tile {
    flex: 0 1 40%;
    max-width: 140px;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 25px;
    margin: 5px;
  }

  .hero-text h2 {
    font-size: 24px;
    padding: 20px 10px;
    line-height: 1.4;
    min-height: auto;
    min-width: auto;
  }

  .slider__item {
    height: 250px;
    max-height: none;
  }

  .footer {
    font-size: 13px;
    padding: 15px;
  }
}