body {
  font-family: 'PT Sans', sans-serif;
  margin: 0;
  padding: 0;
}

/* HEADER – Desktop */
.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5vw;
  color: white;
  background-color: rgba(8, 55, 116, 1);
  padding: 1vw 2vw;
}

.top-name {
  font-size: 1.8vw;
  white-space: nowrap;
}

.topnav a,
.topnav a:visited,
.topnav a:hover {
    color: white;
    text-decoration: none;
}

/* All nav links */
.nav-links {
  display: flex;
  gap: 2vw;
}

.nav-links a,
.nav-links a:visited {
  color: white;
  text-decoration: none;
  font-size: 1.5vw;
  padding: 0.5vw 1vw;
}

.nav-links a:hover,
.topnav a:hover  {
    text-decoration: underline;
    color: rgba(122, 169, 250, 1);
}

.call {
  color: black;
  background-color: white;
  border-radius: 2vw;
  padding: 0.5vw 1vw;
  white-space: nowrap;
}

/* HAMBURGER - hidden by default */
.hamburger {
  display: none;
}

/* CONTENT SECTION */
.container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 3vw;
  padding: 0 4vw;
}

.title {
  color: rgba(8, 55, 116, 1);
  font-size: 4vw;
  width: 100%;
  margin-top: 4vw;
}

.text {
  font-size: 1.5vw;
  color: rgba(8, 55, 116, 1);
  width: 44vw;
  margin-top: 2vw;
}

.carousel {
  position: relative;
  width: 45vw;
  height: 30vw;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-top: 5vw;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

/* FOOTER */
footer {
  color: white;
  background-color: rgba(8, 55, 116, 1);
  height: 5vw;
  display: flex;
  justify-content: space-between;
  padding: 0 2vw;
  align-items: center;
}

.year {
  margin-right: 1vw;
}

/* ✅ MOBILE STYLES */
@media screen and (max-width: 768px) {
  .topnav {
      flex-direction: column;
      align-items: flex-start;
  }

  .top-name {
      font-size: 5vw;
      margin-bottom: 1vw;
  }

  .hamburger {
      display: block;
      font-size: 8vw;
      color: white;
      cursor: pointer;
      padding: 1vw 2vw;
      margin-left: auto;
  }

  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: rgba(8, 55, 116, 1);
  }

  .nav-links.active {
      display: flex;
  }

  .nav-links a {
      font-size: 5vw;
      padding: 3vw 5vw;
      text-align: left;
  }

  .call {
      font-size: 4.5vw;
      padding: 2vw 4vw;
      margin: 2vw 0;
  }

  .container {
      flex-direction: column;
      padding: 0 5vw;
  }

  .title {
      font-size: 7vw;
      width: 100%;
  }

  .text {
      font-size: 4vw;
      width: 100%;
      margin-top: 4vw;
  }

  .carousel {
      width: 100%;
      height: 50vw;
      margin-top: 4vw;
  }

  footer {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: auto;
      padding: 3vw 0;
      text-align: center;
  }

  .year {
      margin-right: 0;
  }
}
