/* ===== ROOT COLORS ===== */
:root {

  --primary-color: #1a1a1a;
  --primary-light: #333333;

  --secondary-color: #6e6e6e;

  --bg-color: #ffffff;
  --bg-light: #f5f5f5;

  --text-dark: #111111;
  --text-light: #777777;
  --text-white: #ffffff;

  --overlay-dark: rgba(0, 0, 0, 0.45);

  --border-light: #e0e0e0;

}


/* ===== LOGO ===== */
.logo {
  width: 100%;
}

.logo a {
  width: 100%;
  display: block;
  text-align: center;
}

.logo a img {
  max-height: 250px !important;
  width: 16%;
  transition: all 0.3s ease;
}

.logo a img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


/* ===== HIDE ELEMENTS ===== */
footer {
  display: none;
}

.header-top-wrap {
  display: none;
}


/* ===== NAVBAR ===== */
.navbar-wrap ul li a {
  color: var(--text-dark);
  display: block;
  font-size: 16px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
}

/* underline hover effect */
.navbar-wrap ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 0%;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-wrap ul li a:hover {
  color: var(--primary-color);
}

.navbar-wrap ul li a:hover::after {
  width: 100%;
}


/* ===== HEADER ===== */
.header-style-four .menu-area {
  background: #E9E5DF;
  box-shadow: none !important;
}

.menu-nav {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding: 60px 0 15px 0;
}


/* ===== HERO SECTION ===== */
.nv-hero-section {
  height: 100vh;
  width: 100%;
  background-image: url("/storage/enter-image-1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}


/* ===== OVERLAY ===== */
.nv-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}


/* ===== CENTER BOX ===== */
.nv-center-box {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}


/* ===== CENTER CONTENT ===== */
.nv-center-content {
  background: var(--primary-color);
  padding: 60px 70px;
  text-align: center;
  color: var(--text-white);
  transition: all 0.4s ease;
}

.nv-center-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}


/* ===== TEXT ===== */
.nv-logo-text {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 5px;
  color: var(--text-white);
}

.nv-brand-name {
  font-size: 11px;
  letter-spacing: 3px;
  opacity: 0.85;
  margin-bottom: 28px;
  color: var(--text-light);
}


/* ===== BUTTON ===== */
.nv-enter-btn {
  border: 2px dotted var(--text-white);
  padding: 8px 32px;
  color: var(--text-white);
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: 20px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* fill animation */
.nv-enter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--text-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.nv-enter-btn:hover::before {
  transform: scaleX(1);
}

.nv-enter-btn:hover {
  color: var(--primary-color);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .nv-center-content {
    padding: 40px;
  }

  .logo a img {
    width: 40%;
  }

}