.header {
  background: #6b0f1a;
  padding: 14px 50px;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.logo img {
  width: 18vh;
  height: 14vh;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #ffd27d;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.search-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-wrapper input {
  width: 0;
  opacity: 0;
  padding: 8px 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 13px;
  transition: 0.3s;
}

.search-wrapper.active input {
  width: 180px;
  opacity: 1;
}

.search-btn {
  background: #ffd27d;
  border: none;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.main-footer {
  background: #6b0f1a;
  color: #fff;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 45px 20px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-logo img {
  width: 140px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #ffd27d;
  transition: width 0.3s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-tagline {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  padding: 14px;
  font-size: 12px;
}
.header-container {
  position: relative;
}

.nav {
  position: relative;
  z-index: 10;
}

.nav a {
  position: relative;
  z-index: 11;
}

.search-wrapper {
  position: relative;
  z-index: 5;
}

.search-wrapper input {
  pointer-events: none;
}

.search-wrapper.active input {
  pointer-events: auto;
}
/* Base header */
.header {
  background: #6b0f1a;
  width: 100%;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo img {
  height: 42px;
  width: auto;
}

/* Navigation */
.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  white-space: nowrap;
}

/* Hover underline */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #ffd27d;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* ============================= */
/* RESPONSIVE BREAKPOINTS */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav {
    justify-content: center;
    gap: 18px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    gap: 14px;
  }

  .nav a {
    font-size: 15px;
  }
}
