body {
  margin: 0;
  font-family: Arial, sans-serif;
}
* {
  
  box-sizing: border-box;
  
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 75px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  color: #ff4d88;
  font-size: 25px;
  
}

.logo img{
  width: 80px;
  
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(169, 169, 169, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(230, 230, 230, 0.25);
  padding: 5px 6px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.032);
}

.nav-links a.active {
  background-color: rgba(255, 255, 255, 0.212);
  color: white;
  font-weight: 700;
  border-radius: 20px;
}

.nav-links a {
  transition: all 0.8s ease;
}

.nav-links a {
   padding: 10px 15px;
  text-decoration: none;
  font-family: 'Roboto', sans-serif;
  color: rgba(255, 255, 255, 0.782);
  font-size: 14px;
  transition: all 0.7s ; 
}

.nav-links a:hover{
    color:#ff4d88;
}

.contact-btn {
  background: #ff4d88;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
}

.contact-btn:hover{
    background-color: #600b22;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: black;
}

.mobile {
  display: none;
}

.dropdownMenu {
  position: relative;
}

.dropbtn {
  background: rgba(169, 169, 169, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  transition: 0.3s ease;
}

.dropdownMenu a {
  text-decoration: none;
  font-size: 25px;
  color: #fc6a9a;
}

.message{
  display: none;
}

.dropbtn:hover {
  background: rgba(255,255,255,0.2);
}

.dropdown-content {
   position: absolute;
  top: 105%;
  right: 0;
  min-width: 180px;
  background: rgba(30,30,30,0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  display: none;
  border: 1px solid rgba(255,255,255,0.1);
}

.dropdown-content a {
  display: block;
  padding: 14px 18px;
  color: white;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background: rgba(255,255,255,0.1);
}

.dropdownMenu:hover .dropdown-content {
  display: block;
}

.close-menu{
    position: absolute;
    top: 25px;
    right: 25px;
    display: none;
    font-size: 20px;
    color: rgb(61, 61, 61);
    cursor: pointer;
    transition: 0.3s;
}

.close-menu:hover{
    color: #ff4d88;
}
@media (min-width: 769px) and (max-width: 1024px){
  .message2{
    display: none;
  }
  .message{
    display: block;
  }
}
@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  .hamburger {
    display: block;
    z-index: 2001;
    color: white;
    font-size: 30px;
  }

  .close-menu{
    display: block;
  }

  /* FULLSCREEN MENU */
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    border-radius: 0;
    width: 48%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.944);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: first baseline;
    align-items: center;
    padding: 100px;
    gap: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.5s ease;
    z-index: 9999;
  }

  /* PAG ACTIVE */
  .nav-links.active {
    left: 0;
  }

  .nav-links a {
    font-size: 15px;
    width: auto;
    border: none;
    color: rgb(85, 84, 84);
    padding: 0;
    letter-spacing: 2px;
  }

  .nav-links a.active {
    background: none;
    color: #ff4d88;
  }

  .dropdownMenu {
    margin-top: 10px;
  }
  .message2{
    display: none;
  }
  .message{
    display: block;
  }

}
/* LIGHT PAGE NAVBAR */

.light-page .nav-links {
  background: rgba(129, 129, 129, 0.199);
}

.light-page .nav-links a {
  color: #fc6a9a;
}

.light-page .nav-links a.active {
  background: rgba(252, 106, 154, 0.12);
  color: #ff4d88;
}

.light-page .hamburger {
  color: #fc6a9a;
}

.light-page .dropdownMenu a {
  color: #fc6a9a;
}