@font-face {
  font-family: 'Avant Garde';
  src: url('../fonts/UTM Avant.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Avant Garde';
  src: url('../fonts/AvantGarde Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avant Garde';
  src: url('../fonts/AvantGarde Demibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SVN-Aguda';
  src: url('../fonts/SVN-Aguda Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'SVN-Aguda';
  src: url('../fonts/SVN-Aguda Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'SVN-Aguda';
  src: url('../fonts/SVN-Aguda Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'SVN-Aguda';
  src: url('../fonts/SVN-Aguda Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.container {
  margin: 0 auto;
}
/* Nút hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  width: 24px;
  background-color: #fff;
  display: block;
}
.navbar ul{
    display: flex;
    align-items: center;
    gap:45px;
    list-style: none;
}
.navbar li a{
    font-family: Avant Garde;
    color: #ffffff;
    text-decoration: none;
}
.navbar{
    background: linear-gradient(90deg, #27076C 0%, #4210B1 100%);
    padding: 10px;
    width: 100%;
}
.nav-content {
    display: flex;
    gap:150px;
    justify-content: center;
}
.main-content {
    flex: 1 0 auto;
}
footer {
    flex-shrink: 0;
}
.unik-footer {
    background: linear-gradient(90deg, #19004D 0%, #350069 100%);
    color: #fff;
    padding: 60px 0 30px 0;
    font-family: 'SVN-Aguda', Arial, sans-serif;
    border-bottom: 3px solid #FF6A2B;
}

.unik-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.unik-footer-col {
    flex: 1 1 0;
}

.unik-footer-logo {
    height: 48px;
    margin-bottom: 18px;
}

.unik-footer-desc {
    color: #d1cbe9;
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.5;
    word-break: break-word;
}

.unik-footer-phone {
    color: #FF6A2B;
    font-weight: 600;
    margin-bottom: 8px;
}
.unik-footer-phone span {
    color: #fff;
    font-weight: 400;
    margin-right: 6px;
}
.unik-footer-address {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0;
    margin-top: 8px;
    line-height: 1.4;
}

.unik-footer-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 18px;
    color: #fff;
}

.unik-footer-col ul,
.unik-footer-news {
    list-style: none;
    padding: 0;
    margin: 0;
}

.unik-footer-col ul li,
.unik-footer-news li {
    margin-bottom: 12px;
}

.unik-footer-col ul li a,
.unik-footer-news li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    font-family: 'SVN-Aguda', Arial, sans-serif;
}

.unik-footer-col ul li a:hover,
.unik-footer-news li a:hover {
    color: #FF6A2B;
    text-decoration: underline;
}

.unik-footer-news-date {
    color: #b3a6e6;
    font-size: 0.85rem;
    margin-top: 2px;
    margin-left: 2px;
}


@media (max-width: 900px) {
    .unik-footer-container {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }
    .unik-footer-col {
        max-width: 100%;
    }
}
@media (min-width: 769px) {
  .menu-wrapper ul {
    display: flex;
    gap: 45px;
    list-style: none;
  }

  .menu-wrapper ul li {
    position: relative;
  }

  .menu-wrapper ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2d0c77;
    padding: 10px 0;
    border-radius: 6px;
    min-width: 180px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .menu-wrapper ul li:hover > ul {
    display: block;
  }
}
/* Mobile responsive */
@media (max-width: 768px) {
  body{
    overflow-x: hidden;
  }
  .h-10{
    margin-left: 15% !important;
  }
  .navbar{
    width: 95% !important;
  }
  .menu-toggle {
    display: flex;
    justify-content: center;
    position: relative;
    left: 25%;
  }
  
  .menu-wrapper ul {
    display: none;
    max-height: 230px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    position: absolute;
    top: 10px;
    background: #2d0c77;
    border-radius: 8px;
    width: 220px;
    padding: 0;
    z-index: 1000;
  }

  .menu-wrapper ul.menu-open {
    display: block !important;
    height: 100%;
    top: 40px;
    right: 2%;
    padding-left: 0;
  }

  .menu-wrapper ul li {
    margin-bottom: 15px;
    text-align: center;
  }

  .menu-wrapper ul li:last-child {
    margin-bottom: 0;
  }
  .unik-footer{
    padding: 60px 30px 30px 30px !important;
  }
  iframe {
    width: 100% !important;
  }
  .menu-wrapper ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 40px;
    background: #2d0c77;
    border-radius: 8px;
    width: 220px;
    padding: 10px 0;
    z-index: 1000;
  }

  .menu-wrapper ul.menu-open {
    display: block !important;
  }

  .menu-wrapper ul li {
    text-align: center;
    margin-bottom: 12px;
  }

  .menu-wrapper ul li ul {
    display: none; /* Ẩn submenu mobile */
    padding-left: 20px;
  }
}
