*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  overflow:hidden;
  font-family:Arial, sans-serif;
}


/* HEADER */
.topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:90px;
  padding:0 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:linear-gradient(to bottom,#111,transparent);
  z-index:999;
}

.logo{
  height:80px;
  width:auto;
  object-fit:contain;
}

.navbar{
  display:flex;
  gap:35px;
  flex-wrap:wrap;
  align-items:center;
}

.navbar a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
  white-space:nowrap;
}

.navbar a.active{
  color:#d49e4e;
}

/* Hamburger hidden in desktop */
.menu-toggle{
    display:none;
    width:35px;
    height:25px;
    background:none;
    border:none;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
}

.menu-toggle span{
    width:100%;
    height:2px;
    background:white; /* change if needed */
    border-radius:5px;
}


@media screen and (max-width:768px){

    .menu-toggle{
        display:flex !important;
    }

    .navbar{
        position:fixed;
        top:0;
        right:-100%;
        width:100vw;
        height:100vh;
        background:rgba(0,0,0,0.96);
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:30px;
        transition:right .4s ease;
        z-index:9999;
    }

    .navbar.active{
        right:0;
    }

    .navbar a{
        font-size:74px;
        color:white;
    }
    
/* MOBILE */
@media(max-width:768px){
  .navbar{
    gap:15px;
    flex-wrap:wrap;
  }

  .navbar a{
    font-size:24px;
  }

  .location-card{
    width:90%;
    right:5%;
    bottom:20px;
  }
}
  }
/* MAP */
.map-section{
  width:100%;
  height:100vh;
}

.map-section iframe{
  width:100%;
  height:100%;
  border:none;
}

/* SIDE CARD */
.location-card{
  position:absolute;
  right:300px;
  bottom:40px;
  width:320px;
  background:#000;
  color:white;
  padding:20px;
  z-index:1000;
}

.location-card h3{
  margin-bottom:15px;
}

.location-card ul{
  list-style:none;
}

.location-card li{
  margin-bottom:10px;
  display:flex;
  justify-content:space-between;
}






/* Safari fix */
@supports (-webkit-touch-callout:none){
  body{
    min-height:-webkit-fill-available;
  }
}