body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px; /* spacing between 9 items */
  margin-bottom: 120px;
  margin-right: 100px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 8px 10px;
}

.nav-links a:hover {
  background: #333;
  border-radius: 4px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  left: 0;
  background: #222;
  list-style: none;
  display: none;
  min-width: 150px;
}

.dropdown-menu li a {
  display: block;
  padding: 10px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}


/* Cover */
.cover {
  height: 120vh;
  background-image: url("Cover\ Photo.PNG");
  background-size: cover;
  background-position: center;
  position: relative;

  /* 👇 circular bottom cut */
  clip-path: ellipse(75% 85% at 50% 0%);
}

.cover h1 {
    font-size: 25px;
    font-weight: 200;
    
}

.cover h2 {
    font-size: 60px;
    font-weight: bolder;
    color: #8CDEB7;
}

/* Optional overlay */
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* Text */
.cover-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
.search-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* SEARCH BAR */
.search-input {
  width: 650px;          /* LONG search bar */
  height: 60px;
  padding: 0 12px;
  font-size: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;    /* NOT circular */
  outline: none;
}

.search-input:focus {
  border-color: #007bff;
}

/* BUTTONS */
.btn {
  height: 60px;
  width: 120px;
  padding: 0 18px;
  font-size: 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* BUTTON COLORS */
.btn-one {
  background-color: #8CDEB7;
  color: white;
}

.btn-two {
  background-color:#8CDEB7;
  color: white;
}

.btn:hover {
  opacity: 0.9;
}

.cover p {
    margin-right: 800px;
}
.section2 {
    gap: 0;
}
.section2 h1 {
    text-align: center;
    color:#8CDEB7 ;
    font-size: 60px;
}
.section2 h2 {
    color:#8CDEB7 ;
    text-align: center;
    font-size: 60px;
}
.section2 span {
    color: #253957;
    font-size: 60px;
    font-weight: 200px;
}
.section2 h3 {
    color: #253957;
    font-size: 60px;
    text-align: center;
}