/* Base */
body {
  margin: 0 auto;
  background-color: #94ee9b;
  overflow-x: hidden;
  font-family: "Comic Sans MS", cursive, sans-serif;
  font-size: 1rem;
}

/* Navigation Bar */
nav {
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background-color: darkgreen;
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.3);
}

nav .logo {
  height: 5rem;
  box-shadow: 0.125rem 0.125rem 0.3125rem rgba(0, 0, 0, 0.5);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.25rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

nav ul li a {
  font-family: "Comic Sans MS", cursive, sans-serif;
  color: #caf0a7;
  text-decoration: underline;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 0.4rem 0.75rem;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-shadow: 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.6);
}

nav ul li a:hover {
  color: #93c5fd;
  text-shadow: 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.8);
}

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

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #9acd32;
  padding: 0.5rem 0;
  min-width: 11.25rem;
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.5rem);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.625rem 1rem;
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 0.0625rem 0.0625rem 0.125rem rgba(0, 0, 0, 0.6);
  transition: 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #e0f2fe;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.8);
}

/* Welcome Section */
.welcome-section {
  padding-top: 3%;
  padding-bottom: 0.5%;
  margin-top: -3rem; 
}

.welcome-section2 {
  padding-bottom: 0.5%;
}

.welcome-section h1 {
  margin-top: 1%;
  text-align: center;
  font-size: 3rem;
  color: forestgreen;
  font-weight: 900;
  margin-bottom: 0.75rem; 
}

.welcome-section2 h1 {
  text-align: center;
  font-size: 3rem;
  color: forestgreen;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(187, 231, 189);
  border-radius: 10px;
  padding: 1.5rem;
  width: 100%;
  max-width: 500px;
  margin: 2rem auto;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.contact-info {
  font-family: "Comic Sans MS", cursive, sans-serif;
  font-size: 2rem;
  color: darkgreen;
}

.contact-image {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

iframe {
  padding-left: 35rem;
}

@media (max-width: 1200px) {
 body {
  scale: 0.8;
 }
}
