* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items:center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  display:inline-block;
  transition:0.3s ease;
}

.nav-links a:hover {
  transform: scale(1.1);
}

.dropdown{
    position: relative;
    display: inline-block;
}

.dropdown-content{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    min-width: 160px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 20;
}

.dropdown-content a{
    color: white;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-content a:hover{
    background: rgba(255,255,255,0.12);
}

.dropdown:hover .dropdown-content{
    display: block;
}

.hero {
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
  linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7)), rgb(152, 152, 152);
  text-align: center;
  padding-top: 80px;
  color: white;
  background-size: cover;
  background-position: center 40%;
  position: relative;
  border-bottom-left-radius: 50% 12%;
  border-bottom-right-radius: 50% 12%;
  overflow: hidden;
}

.hero h1 {
  font-size: 80px;
  color: white;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 30px;
}




.maps {
  background: #003262;
  margin: 40px 20px;
  border-radius: 30px;
  padding: 60px 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  color: white;
}

.map-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.map-text {
  flex: 1;
}

h2 {
  font-size: 25px;
  margin: 5px;
  text-align: center;
  padding:20px;
  color:#003262;
}

.map-text h3 {
  margin-bottom: 15px;
  font-size:15px;
  
}

.map-box{
  background: rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 10px;
  flex: 1;
}


h4 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #003262;
  margin-top: 60px;
  letter-spacing: .5px;
}

.food {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 20px 30px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.food-box {
  background: #003262;
  border-radius: 20px;
  padding: 24px 16px 18px;
  text-align: center;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: 0.3s ease;
  text-decoration: none;
}

.food-box:hover {
  transform: translateY(-8px);
}

.food-box h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  margin-top: 15px;
  margin-bottom: 6px;
  text-align:center;
  text-decoration: none;
}

.food-box h3 {
  font-size: 15px;
  color: white;
  margin-top: 15px;
  margin-bottom: 6px;
  text-align:center;
  text-decoration:none;
}

.food-icon{
  margin-top:15px;
}

.food-icon i{
  color: white;
  font-size: 50px;
  transition: 0.3s;
  text-align:center;
}

footer {
  text-align: center;
  padding: 30px;
  color: white;
  background-color: #003262;
}

.icons {
  margin-top: 10px;
}

.icons a {
  color: white;
  font-size: 22px;
  margin: 0 10px;
  transition: 0.3s;
}

.icons a:hover {
  color: #ddd;
}

@media (max-width: 768px) {

  /* Hero */
  .hero {
    height: 50vh;
    padding: 80px 16px 16px;
  }

  .hero h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 30, 70, 0.97);
    padding: 12px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 24px;
  }
}

/*ADD SCHOOL ADRESS AND DIFFERENT PLACES TO EAT DURING CONFERENCE (SEE OG MUN WEBSITE)