* {
  font-family: 'Poppins-Regular', sans-serif; 
}

body {
  width: 100%;
  margin: 0;
}

h2 {
    font-family: 'Poppins-Bold', sans-serif;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url(assets/fonts/Poppins-Regular.ttf) format('truetype');
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url(assets/fonts/Poppins-Bold.ttf) format('truetype');
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    color: white;
    position: relative;
    padding: 5px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    flex-direction: row;
}

.logo img {
    height: 50px;
    padding-left: 25px;
}

.nav-links {
    display: flex;
}
.nav-links ul {
    display: flex;
    list-style: none;
}
  
.nav-links ul li {
    margin: 0 15px;
}
  
.nav-links ul li a {
    text-decoration: none;
    color: #003b4a;
    font-size: 18px;
    font-family: 'Poppins-Bold', sans-serif;
    transition: color 0.3s;
}
  
.nav-links ul li a:hover {
    color: #f18a00;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
  
.hamburger span {
    height: 3px;
    width: 25px;
    background: #003b4a;
    margin: 4px 0;
    border-radius: 2px;
}
.hero {
    height: 80vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), #003b4a),
                url('images/hero.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: 0;
  }
  
  .hero h2 {
    font-size: 55px;
    margin-bottom: -30px;
    color: white;
  }
  
  .hero p {
    font-size: 20px;
  }

.btn {
    background-color: #f18a00;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 15pt;
    font-family: 'Poppins-Bold', sans-serif;
    border-radius: 5px;
    transition: 0.3s;
    justify-content: space-between;
}

.btn:hover {
    background: #70a8c9;
}

.slideshow-container {
  max-width: 70%;
  position: relative;
  margin: auto;
  display: flex;
  background-color: #dddddd;
  border-radius: 15px;
}

.featuredslides {
  display: none;
  border-radius: 5px;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 25px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.two-column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 10%;
  gap: 20px;
}

.two-column img{
  max-height: 320px;
}

.col {
  flex: 1;
}

.col img {
  border-radius: 10px;
}

.numbertext {
  color: #003b4a;
  font-size: 18px;
  font-family: 'Poppins-Bold';
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.content-box {
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-top: 20px;
  width: 70%;
  background-color: #dddddd;
  border-radius: 15px;
  padding: 15px;
}

.content-box a{
  padding-bottom: 15px;
  position: absolute;
}

#successMessage {
  display: none;
  color: #f18a00;
  font-size: x-large;
  font-weight: bold;
  margin-top: 10px;
}

#newsletter {
  background: linear-gradient(to right, rgba(73, 73, 73, 0.5), rgb(109, 109, 109)),
                url('images/newsletterbackground.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  flex-direction: row;
  color: white;
  margin-top: 15px;
}

#newsletter p {
  font-size: large;
}

#newsletter button {
  padding: 12px 25px;
  background-color: #003b4a;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  font-family: 'Poppins-Bold';
  cursor: pointer;
  transition: background-color 0.3s;
}

#newsletter input, #newsletter textarea, #newsletter select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

#newsletter button:hover {
  background-color: #f18a00;
}

#contact {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin: 15px;
}

#contact h2 {
  margin: -10px;
}

#contact img {
  max-width: 100%;
}

footer {
    background: #ffc489;
    color: black;
    text-align: center;
    padding: 10px;
    width: 100%;
}

footer a{
  text-decoration: none;
}

@media screen and (max-width: 768px) {
    .nav-links ul {
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: white;
        display: none;
        z-index: 100;
      }
    
    .nav-links ul li {
        margin: 15px 0;
        text-align: center;
    }
    
    .nav-links ul.nav-active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    body {
        display: flex;
        flex-direction: column;
    }
    #suggested {
        grid-template-columns: repeat(1, 1fr);
    }
    .text p{
        display: none;
    }
    .two-column {
    flex-direction: column;
    text-align: center;
    }
    .two-column img {
      max-width: 300px;
    }

    input {
      justify-content: space-between;
      max-width: 200px;
    }
}
