/* =========================================
   MODERN INTERIOR DESIGN HEADER
   OLIVE + SAND PREMIUM THEME
========================================= */

.site-header {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 999;

  background:
    linear-gradient(
      135deg,
      #29311ede,
      #5e6b4c8e
    );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(220, 201, 163, 0.12);

  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.04);

  animation: fadeInDown 0.8s ease;
  overflow: visible;
}

/* Luxury top highlight */
.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(220, 201, 163, 0.5),
      transparent
    );
}

/* =========================================
   NAV CONTAINER
========================================= */

.nav-container {
  width: 92%;
  height: 95px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  z-index: 2;
}

/* =========================================
   LOGO
========================================= */

/* .logo {
  display: flex;
  align-items: center;
  gap: 14px;
} */
.logo{
    display:flex;
    align-items:center;
    gap:14px;

    flex-shrink:0;
}
.logo img {
  height: 42px;
  width: auto;

  transition: 0.35s ease;

  filter:
    drop-shadow(0 0 10px rgba(0,0,0,0.25))
    drop-shadow(0 0 15px rgba(220,201,163,0.15));
}

.logo:hover img {
  transform: scale(1.04);
}

/* =========================================
   BRAND NAME
========================================= */

.brand-name {
  color: #F8F6F1;

  font-size: 1.9rem;
  font-weight: 600;

  letter-spacing: 0.7px;

  margin-left: 12px;

  position: relative;

  transition: 0.3s ease;

  text-shadow:
    0 3px 10px rgba(0,0,0,0.25);
}

.brand-name::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -6px;

  width: 55%;
  height: 2px;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      #DCC9A3,
      transparent
    );
}

.brand-name:hover {
  color: #DCC9A3;
}

/* =========================================
   NAVIGATION
========================================= */

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  list-style: none;

  display: flex;
  align-items: center;

  gap: 16px;
}

.main-nav ul li {
  position: relative;
}

/* NAV LINKS */

.main-nav ul li a {
  color: #F8F6F1;

  font-size: 1.08rem;
  font-weight: 600;

  text-decoration: none;

  padding: 12px 18px;

  position: relative;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* HOVER */

.main-nav ul li a:hover {
  color: #DCC9A3;
  transform: translateY(-2px);
}

/* ACTIVE */

.main-nav ul li a.active {
  color: #DCC9A3;
}

/* =========================================
   UNDERLINE EFFECT
========================================= */

.main-nav ul li a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 2px;

  transform: translateX(-50%);

  width: 0;
  height: 2px;

  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      #DCC9A3,
      #5E6B4C
    );

  opacity: 0;

  transition:
    width 0.35s ease,
    opacity 0.35s ease;

  box-shadow:
    0 0 12px rgba(220,201,163,0.3);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  width: 72%;
  opacity: 1;
}

/* =========================================
   DROPDOWN
========================================= */

.main-nav ul li .submenu {
  position: absolute;

  top: calc(100% + 14px);
  left: 0;

  min-width: 240px;

  list-style: none;

  padding: 12px 0;

  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      #3E3428,
      #49553A
    );

  backdrop-filter: blur(18px);

  border: 1px solid rgba(220,201,163,0.12);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.28);

  overflow: hidden;

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;

  z-index: 999;
}

.main-nav ul li .submenu::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.02),
      transparent,
      rgba(220,201,163,0.04)
    );

  pointer-events: none;
}

/* SUBMENU ITEMS */

.main-nav ul li .submenu li a {
  display: block;

  padding: 14px 24px;

  color: #F8F6F1 !important;

  font-size: 1rem;
  font-weight: 500;

  transition: all 0.3s ease;
}

.main-nav ul li .submenu li a:hover {
  background: rgba(220,201,163,0.12);

  color: #DCC9A3 !important;

  padding-left: 30px;
}

.main-nav ul li.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background:
    linear-gradient(
      180deg,
      #5E6B4C,
      #3E3428
    );

  border-radius: 20px;
}

::-webkit-scrollbar-track {
  background: #F8F6F1;
}

/* =========================================
   ANIMATION
========================================= */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   DESKTOP ONLY
========================================= */

.mobile-menu-toggle {
  display: none !important;
}



/*===================================sub part of the header========================*/


/* =========================================
   HEADER DIVIDER
========================================= */

.header-divider{
    width:1px;
    height:55px;

    margin:0 18px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(220,201,163,0.85),
            transparent
        );

    box-shadow:
        0 0 12px rgba(220,201,163,0.25);
}


/* =========================================
   ORGANIZATION INFO
========================================= */

.org-info{
    display:flex;
    flex-direction:column;
    justify-content:center;

    max-width:480px;
}

.org-title{
    color:#F8F6F1;

    font-size:0.92rem;
    font-weight:600;

    line-height:1.25;

    letter-spacing:0.4px;

    text-shadow:
        0 2px 8px rgba(0,0,0,0.25);
}

.org-subtitle{
    margin-top:3px;

    color:#DCC9A3;

    font-size:0.74rem;
    font-weight:500;

    letter-spacing:0.8px;

    text-transform:uppercase;

    opacity:0.9;
}