:root {
  --gold: #c9a14a;
  --gold-light: #d8b67a;
  --black: #000000;
  --charcoal: #111111;
  --gray: #6e6e6e;
  --light-gray: #f5f5f5;
  --white: #ffffff;
}



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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;

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

  padding: 0 50px;

  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(201, 161, 74, 0.3);

  z-index: 9999;
  box-sizing: border-box;
}
/* ================= LOGO SECTION ================= */

.left-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 50px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}


.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h1 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
}

.logo-text p {
  margin: 4px 0 0;
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.middle-section {
  display: flex;
  align-items: center;
  gap: 35px;
}

.middle-section p {
  margin: 0;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s;
}

.middle-section p::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.middle-section p:hover {
  color: var(--gold-light);
}

.middle-section p:hover::after {
  width: 100%;
}

/* ================= BOOK BUTTON ================= */

.right-section button {
  background: var(--gold);
  color: var(--black);

  border: none;
  border-radius: 4px;

  padding: 12px 24px;

  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;

  cursor: pointer;
  transition: 0.3s;
}

.right-section button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

/* ================= MOBILE MENU ================= */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;

  width: 280px;
  max-width: 85%;
  height: 100vh;

  background: var(--charcoal);
  padding-top: 60px;

  z-index: 2000;

  transition: right 0.4s ease;

  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
}

.mobile-menu.is-open {
  right: 0;
}

.close-menu {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}

.close-btn {
  color: var(--gold-light);
  font-size: 36px;
  cursor: pointer;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  gap: 25px;
}

.mobile-menu-content p {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;

  padding-bottom: 10px;
  border-bottom: 1px solid #2b2b2b;

  transition: 0.3s;
}

.mobile-menu-content p:hover {
  color: var(--gold-light);
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  header {
    padding: 15px 20px;
  }

  .middle-section p {
    display: none;
  }

  .right-section {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo {
    width: 42px;
    height: 42px;
  }

  .logo-text h1 {
    font-size: 16px;
  }

  .logo-text p {
    font-size: 9px;
    letter-spacing: 2px;
  }
}