* {
    margin:0;
    padding:0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: rgba(44, 66, 189, 0.8); /* Opacidade ajustada */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    opacity: 1;
    transition: top 0.3s ease-in-out; /* Transição suave */
  }

  .logo {
    display:flex;
    align-items: center;
  }

  .logo a {
    text-decoration: none;
    color: #fff;
    display:block;
    font-size: 1.2rem;
    font-weight: 500;
    padding-left: 30px;
    white-space: nowrap;
    transition: color 0.3s;
  }

  .logo a:hover {
    color: #ffd700;
    text-decoration: underline;
  }
  
  .menu {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  
  .menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-right: 50px;
  }
  
  .menu a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .menu a:hover {
    color: #ffd700;
    text-decoration: underline;
  }
  
  /* Menu Toggle (Mobile) */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
  }
  
  .menu-toggle .bar {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  /* Animação do Menu Toggle */
  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .modal {
    display: none;
    height: 100vh;
    width: 100vw;
    position: fixed;
    background: #000000e5;
    z-index: 200;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
  }

    .modal p {
      color: white;
      font-size: 1.2rem;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.7);
      max-width: 80%;
    }

    .modal:target {
      display: none;
   }

  .modal a {
    text-decoration:none;
    color:#fff;
  }

  .modal a:hover {
    text-decoration: none;
    color:red;
  }
  @media only screen and (min-width: 768px) and (max-width: 1500px){
    
    .menu {
      display: flex;
      flex-wrap: wrap;
    }
    
    .menu ul {
      list-style: none;
      display: flex;
      gap: 30px;
      margin-right: 50px;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
    }

    .modal p {
      font-size: 1rem;
    }
  }
  /* Menu Responsivo */
  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 20px;
      background: rgba(0, 0, 0, 0.9);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      gap: 15px;
    }
  
    .menu.active {
      display: flex;
    }
  
    .menu ul {
      flex-direction: column;
      gap: 15px;
    }
  
    .menu a {
      font-size: 1.3rem;
    }
  
    .menu-toggle {
      display: flex;
      margin-right:20px;
    }
  }
/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://armenpress.am/resized/1600/static/news/b/2013/10/735612.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .hero p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .cta-button {
    padding: 12px 25px;
    background-color: #ffd700;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .cta-button:hover {
    background-color: #e6a700;
  }

/* === LOADING SPLIT === */
#loading-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 9999;
  overflow: hidden;
}

.split {
  position: absolute;
  width: 100%;
  height: 50%;
  background: #fff;
  left: 0;
  transition: transform 1s ease;
  z-index: 1;
}

.split.top {
  top: 0;
  transform: translateY(0%);
}

.split.bottom {
  bottom: 0;
  transform: translateY(0%);
}

#loading-overlay.open .split.top {
  transform: translateY(-100%);
}

#loading-overlay.open .split.bottom {
  transform: translateY(100%);
}

.loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: bold;
  z-index: 2;
}


  

