/* =====================
   HEADER
===================== */
.header-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #111; /* dark background */
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  color: #fff;
  font-family: 'Century Gothic', sans-serif;
  border-bottom: 1px solid #ff8c00; /* orange line */
}

/* Logo */
.header-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.header-logo img {
  height: 55px;
  margin-right: 12px;
  display: block;
}

.header-logo span {
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff !important;
  line-height: 1;
}

/* Hamburger button */
.header-nav-toggle {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

/* =====================
   SLIDE-IN MENU
===================== */
.hidden-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background-color: #111;
  padding: 60px 20px 20px;
  box-shadow: -2px 0 8px rgba(0,0,0,0.3);
  transition: right 0.6s ease; /* slower slide */
  z-index: 1000;
  overflow-y: auto;
}

.hidden-menu.active {
  right: 0;
}

.hidden-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hidden-menu li {
  margin: 20px 0;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease; /* smooth animation */
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

/* Staggered slide-in animation for 7 links */
.hidden-menu.active li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateX(0); }
.hidden-menu.active li:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateX(0); }
.hidden-menu.active li:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateX(0); }
.hidden-menu.active li:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateX(0); }
.hidden-menu.active li:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateX(0); }
.hidden-menu.active li:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateX(0); }
.hidden-menu.active li:nth-child(7) { transition-delay: 0.7s; opacity: 1; transform: translateX(0); }
.hidden-menu.active li:nth-child(8) { transition-delay: 0.8s; opacity: 1; transform: translateX(0); }

/* Links */
.hidden-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-block;
  padding-left: 5px;
  transition: all 0.3s ease;
}

.hidden-menu li a:hover {
  color: #b2975a;
  transform: translateX(5px);
}

/* =====================
   OVERLAY
===================== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 900;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
/* =====================
   TOP CONTACT BAR
===================== */
.header-top-contact {
  background: #000;                  /* slightly darker than header */
  color: #fff;
  font-family: 'Century Gothic', sans-serif;
  display: flex;
  justify-content: center;
  gap: 25px;                         /* spacing between items */
  padding: 6px 10px;
  font-size: 0.85rem;
  border-bottom: 1px solid #ff8c00;  /* same orange accent */
}

.header-top-contact a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  transition: 0.3s;
}

.header-top-contact a:hover {
  opacity: 1;
  color: #ff8c00;                    /* subtle orange hover */
}

.header-top-contact i {
  font-size: 0.95rem;
}
/* Desktop layout */
.header-top-contact {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 6px 10px;
  font-size: 0.85rem;
  background: #000;
  border-bottom: 1px solid #ff8c00;
}

.header-top-contact address {
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  font-style: normal;
}

.header-top-contact a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
  transition: 0.3s;
}

.header-top-contact a:hover {
  opacity: 1;
  color: #ff8c00;
}

.header-top-contact i {
  font-size: 0.95rem;
}

/* Mobile stacking & icons-only */
@media (max-width: 600px) {
  .header-top-contact,
  .header-top-contact address {
    flex-direction: row;           /* keep horizontal for icons-only */
    justify-content: center;
    gap: 15px;
  }

  .header-top-contact a {
    font-size: 0;                  /* hide text */
    padding: 10px;                 /* bigger tap area */
    justify-content: center;
    flex-direction: column;         /* icon centered */
  }

  .header-top-contact a i {
    font-size: 1.4rem;             /* larger icon for touch */
  }

  .header-top-contact a::after {
    content: attr(title);           /* optional: tooltip text */
    display: none;
  }
}
