@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600;700;800&display=swap');
:root {
  --dark: #070101;
  --dark-2: #110202;
  --accent: #ff3c12;
  --gold: #d9a441;
  --white: #fff;
  --muted: #d7d7d7;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
a { color: inherit; }

/* COMMON NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  background: rgba(5, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 60, 18, 0.18);
}

.logo { text-decoration: none; }
.stamp-logo {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080101;
  border: 2px solid rgba(255, 60, 18, 0.8);
  box-shadow: 0 0 0 4px rgba(255,255,255,.08), 0 0 25px rgba(255, 60, 18, .45);
  transform: rotate(-4deg);
  transition: 0.3s ease;
}
.stamp-logo img { width: 115%; height: 115%; object-fit: cover; display: block; }
.stamp-logo:hover { transform: rotate(0deg) scale(1.06); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links li a,
.dropdown-btn {
  color: #fff;
  text-decoration: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  letter-spacing: 2px;
  font-weight: 700;
  transition: color .3s ease;
}
.nav-links li a:hover,
.dropdown-btn:hover { color: var(--accent); }

.menu-btn {
  display: none;
  width: 40px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menu-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  border-radius: 5px;
  transition: .3s ease;
}

/* ONLINE ORDER DROPDOWN */
.dropdown { position: relative; }
.dropdown-btn {
  background: transparent;
  border: none;
  cursor: pointer;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 165px;
  background: rgba(8, 0, 0, .98);
  border: 1px solid rgba(255, 60, 18, .35);
  border-radius: 14px;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  z-index: 1002;
}
.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff !important;
  text-decoration: none;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--accent); color: #fff !important; }
.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu { display: flex; }

/* COMMON FOOTER */
.footer {
  position: relative;
  z-index: 5;
  background: #030000;
  color: #fff;
  padding: 55px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 60, 18, 0.25);
  font-family: Georgia, 'Times New Roman', serif;
}
.footer-content h2 { font-size: 30px; letter-spacing: 4px; margin-bottom: 12px; }
.footer-content p { color: #bdbdbd; margin-bottom: 22px; }
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 25px; }
.footer-links a { color: #fff; text-decoration: none; font-size: 14px; letter-spacing: 1px; }
.footer-links a:hover { color: var(--accent); }
.copyright { font-size: 13px; color: #888; }

.page-top-space { padding-top: 95px; }

@media (max-width: 768px) {
  .navbar { height: 75px; padding: 0 20px; }
  .stamp-logo { width: 62px; height: 62px; }
  .menu-btn { display: block; }
  .nav-links {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 78%;
    height: calc(100vh - 75px);
    background: rgba(8,0,0,.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 45px 30px;
    gap: 26px;
    transition: right .4s ease;
    z-index: 1000;
  }
  .nav-links.active { right: 0; }
  .nav-links li a, .dropdown-btn { font-size: 18px; letter-spacing: 2px; }
  .menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 7px); }
  .menu-btn.active span:nth-child(2) { opacity: 0; }
  .menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }
  .dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 12px;
    background: rgba(255,255,255,.07);
    border-radius: 14px;
    padding: 10px;
  }
  .dropdown-menu a { font-size: 16px !important; padding: 12px 14px; }
  .footer-links { flex-direction: column; gap: 14px; }
  .page-top-space { padding-top: 75px; }
}


/* UNIFORM BRAND POLISH */
:root {
  --brand-smoke: #070101;
  --brand-charcoal: #120604;
  --brand-ember: #ff6b1a;
  --brand-ember-soft: #ff8a2a;
  --brand-cream: #fff4e8;
  --brand-muted: #d8c5b5;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;
}

body { font-family: var(--font-body); }
.nav-links li a,
.dropdown-btn,
.footer,
.footer-links a { font-family: var(--font-body); }
.footer-content h2 { font-family: var(--font-heading); }
.nav-links li a:hover,
.dropdown-btn:hover,
.footer-links a:hover { color: var(--brand-ember-soft); }
