/* ===== TEMPLE THEME ===== */
:root {
  --primary: #FF9933;     /* Saffron */
  --secondary: #D4AF37;   /* Gold */
  --bg: #FFF8EE;          /* Soft ivory */
  --text: #3B2F2F;
  --glass: rgba(255, 255, 255, 0.85);
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 0 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--glass);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

/* ===== LOGO ===== */
.logo {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== MENU ===== */
.nav-menu {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary);
}

/* ===== DONATION BUTTON ===== */
.btn {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 25px;
  color: #fff !important;
}

/* ===== HAMBURGER ===== */
#nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 5px;
  transition: all 0.4s ease;
}

/* ===== ICON ANIMATION ===== */
#nav-toggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

#nav-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

#nav-toggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);

    background: var(--bg);

    flex-direction: column;
    justify-content: center;
    gap: 35px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  #nav-toggle:checked ~ .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* ===== PAGE CONTENT ===== */
.content {
  padding-top: 120px;
  text-align: center;
}
