* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/***navigation***/
nav {
    display: flex;
    align-items: center;
    gap: 5px;         
    padding: 10px;
}
/***logo**/
.logo {
    width: 120px;
    height: auto;
    margin-top: 5px;
    margin-left: 5px;
}
.logo:active {
  transform: scale(0.9);
  opacity: 0.7;
}
.logo:hover {
  animation: pulse 0.8s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
/***Main navigation**/
nav {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 1px 8px;
box-shadow: 2px;
background-image: url("images/bagpack.jpg");
}
nav .navigation ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 10px;
    gap: 10px;
   
}
nav .navigation ul li {
    list-style: none;
    margin-right: 85px;
}

nav .navigation ul li a {
    text-decoration: none;
    color: rgb(252, 249, 249);
    font-weight: 500;
    font-size: 16px;
    transition: 0.5sec;
    letter-spacing: 0.5px;
   
}
nav .navigation ul li a:hover {
color: rgb(234, 148, 83);
}
/**dropdown menu**/
.dropdown {
  position: relative;
  display: inline-block;
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffa52f;
  min-width: 120px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.1);
  border-radius: 4px;
  z-index: 100;
}


.dropdown-content a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
}


.dropdown-content a:hover {
  background-color: #f1f1f1;
}


.dropdown:hover .dropdown-content {
  display: block;
}

.horizontal-box {
  position: relative;
  width: 100%;
  height: 400px;
  border: 2px solid #f4eded;
  border-radius: 150px;
  overflow: hidden;
}

.top-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.over-laytext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgb(251, 251, 251);
}

.over-laytext h1 {
  font-size: 30px;
  font-weight: 400;
  margin: 0;
}

/* Map container - centers and makes it responsive */
.map {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  padding: 20px;
  max-width: 1200px;
}

.map iframe {
  width: 100%;
  max-width: 600px;
  height: 450px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-left: 50%;
  margin-right: -50%;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .horizontal-box {
    height: 300px;
  }
  
  .over-laytext h1 {
    font-size: 2rem;
  }
  
  .map iframe {
    height: 350px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .map iframe {
    height: 300px;
  }
  
  .over-laytext {
    padding: 15px 25px;
  }
  
  .over-laytext h1 {
    font-size: 1.5rem;
  }
}