/* ===================================
   NAVBAR STYLES
   El-Shaddai Interiors
   =================================== */

/* CSS Variables (needed for navbar colors) */
:root {
  --black: #080808;
  --dark1: #111111;
  --dark2: #1a1a1a;
  --dark3: #242424;
  --dark4: #2e2e2e;
  --border: #2a2a2a;
  --gold: #C9A84C;
  --gold-light: #E0C068;
  --white: #ffffff;
  --grey: #a0a0a0;
  --grey-dark: #606060;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
  box-sizing: border-box;
  padding: 0 60px;
}

#header.scrolled {
  border-bottom-color: rgba(201, 168, 76, 0.25);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  flex-grow: 1;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.3s;
  white-space: nowrap;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--gold);
}

/* CTA Button in Navbar */
.cta-button {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.cta-button:hover {
  background: var(--gold);
  color: var(--black);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--gold);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--gold);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  width: 100%;
  height: calc(100vh - 56px);
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
}

.mobile-nav-links {
  list-style: none;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.mobile-nav-links a {
  color: var(--grey);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--dark3);
  text-decoration: none;
}

.mobile-nav-links a:hover {
  color: var(--gold);
}

.mobile-book-btn {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 12px 20px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  margin-top: 8px;
  border-bottom: none !important;
}

.mobile-book-btn:hover {
  background: var(--gold-light) !important;
}

.mobile-contact-info {
  padding: 20px 16px 15px;
  border-top: 1px solid var(--dark3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact-item {
  text-align: center;
}

.mobile-contact-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 4px;
  display: block;
}

.mobile-contact-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}

.mobile-contact-phone:hover {
  color: var(--gold-light);
}

.mobile-contact-email {
  font-size: 12px;
  color: var(--grey);
  transition: color 0.3s ease;
  display: block;
  text-decoration: none;
}

.mobile-contact-email:hover {
  color: var(--gold);
}

.mobile-contact-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.mobile-nav-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--dark3);
  text-align: center;
}

.mobile-nav-footer p {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin: 0;
}

.mobile-nav-footer a[href*="auerion"] {
  color: #1E90FF;
}

.mobile-nav-footer a[href*="auerion"]:hover {
  color: #63B8FF;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (max-width: 1024px) {
  #header {
    padding: 0 32px;
  }

  .nav-links {
    gap: 24px;
  }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */
@media (max-width: 768px) {
  #header {
    padding: 0 16px;
    height: 56px;
    margin-top: 0;
    position: fixed;
  }

  .logo img {
    height: 28px;
  }

  .nav-links {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ===================================
   RESPONSIVE - SMALL MOBILE
   =================================== */
@media (max-width: 480px) {
  #header {
    padding: 0 16px;
  }

  .logo img {
    height: 24px;
  }
}