@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=DM+Serif+Display&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --nav-h: 80px;
  /* match the total visual height of your navbar (padding included) */
  --filter-width: 280px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #fdfcfa;
  color: #000;
  line-height: 1.6;
  letter-spacing: 0.25px;
  overflow-x: hidden;
  max-width: 100vw;
}


.tagline,
.decorative-heading h1,
.hero-heading {
  font-family: 'Plus Jakarta Sans';
}

a {
  text-decoration: none;
  color: #4a3f39;
  transition: color 0.2s ease;
}

a:hover {
  color: #2f231c;
}

html {
  scroll-behavior: smooth;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #121111;
  padding: 1.5rem 3rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 128px;
  height: auto;
  object-fit: contain;
}

/* === Desktop Menu === */
.desktop-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}

.desktop-menu ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.desktop-menu li a {
  color: #f5f2ef;
  font-size: 1.1rem;
  font-weight: 500;
}

.desktop-menu li a:hover {
  color: #e1cfa3;
}

/* === Mobile Menu Toggle Button === */
.menu-button-container {
  display: none;
}

.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  color: #f5f2ef;
  font-size: 2rem;
}

/* === Mobile Side Menu === */
/* ===== Glassy Side Drawer ===== */
:root {
  --menu-bg: rgba(20, 13, 13, 0.699);
  /* near-black glass */
  --menu-blur: 16px;
  /* stronger blur for depth */
  --accent: #d1c1aa;
  /* warm beige accent */
}

.side-menu {
  position: fixed;
  inset: auto 0 0 0;
  /* top right bottom 0, left auto */
  width: clamp(260px, 80%, 320px);
  height: 90vh;
  display: flex;
  flex-direction: column;
  padding: 3.5rem 2rem 2rem;
  background: var(--menu-bg);
  backdrop-filter: blur(var(--menu-blur));
  transform: translateX(100%);
  opacity: 0;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.45s cubic-bezier(.37, .01, .15, 1.01),
    opacity 0.45s ease;
  z-index: 1001;

}

/* open state */
.side-menu.open {
  transform: translateX(0);
  opacity: 1;
  overflow-y: auto;
  /* allow scrolling if content overflows */

}

/* ===== Close (×) Button ===== */
.close-button {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid hsla(0, 0%, 100%, .1);
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.close-button:hover {
  background: hsla(0, 0%, 100%, .10);
  transform: rotate(90deg);
}

/* ===== Links ===== */
.menu-section {
  margin-top: 2.5rem;
  flex: 1 1 auto;
  overflow-y: auto;
  padding-right: 1rem;
  /* prevent scrollbar overlap */
  padding-bottom: 2rem;
  /* space for last item */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  color: #f5f2ef;
  text-align: left;
  line-height: 1.6;
  font-weight: 500;
  padding-left: 1.5rem;
  /* left padding for better alignment */
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  /* subtle left border for separation */
}

.menu-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.menu-section a {
  font-family: 'Marcellus', serif;
  /* your chosen heading font */
  font-size: 1.35rem;
  letter-spacing: .03em;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.menu-section a::after {
  /* underline that grows */
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s cubic-bezier(.37, .01, .15, 1.01);
}

.menu-section a:hover {
  color: var(--accent);
}

.menu-section a:hover::after {
  width: 100%;
}

/* ===== Prevent body scroll when menu open ===== */
body.menu-open {
  overflow: hidden;
}

/* Touch-only devices: keep hover effects subtle */
@media (hover: none) {
  .close-button:hover {
    background: transparent;
    transform: none;
  }

  .menu-section a:hover::after {
    width: 0;
  }
}


/* === Hero Section === */
.hero-ad {
  position: relative;
  width: 100%;
  height: 94vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #383634;
  color: #f5f2ef;
}

.hero-media {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideshow-ad {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slideshow-ad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.slideshow-ad img:nth-child(1) {
  opacity: 1;
}

.slideshow-ad img:nth-child(2) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slideshow-ad img:nth-child(3) {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slideshow-ad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slideshow-ad img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 2rem;
  z-index: 2;
  animation: fadeInOverlay 0.8s ease forwards;
  pointer-events: none;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-overlay button {
  background: linear-gradient(145deg, #544430, #b69a74);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
  pointer-events: all;
}


.hero-button {
  background: linear-gradient(145deg, #121111, #121111a3);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 32px;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

@keyframes fadeInOverlay {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-heading {
  font-family: 'Plus Jakarta Sans';
  font-size: 3.5rem;
  color: #fff4e1;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: #f8e8d2;
}

/* === Content Wrapper === */
.content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  background-color: #fffdfa;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

/* === Section Headings === */
.decorative-heading {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(145deg, #ffffffe5, #f8f7f571);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid #fdfdfd;
  box-shadow: 0 4px 16px rgba(255, 248, 248, 0.1);

}

.decorative-heading h1 {
  font-family: 'Plus Jakarta Sans';
  font-size: 3rem;
  color: #1a1208;
  letter-spacing: 0.3px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 1.2;
  padding: 0.5rem 1rem;
}

.decorative-heading p {
  font-size: 1.5rem;
  color: #21201e;
  opacity: 0.85;
  font-weight: 400;
}

/* === Card Grid === */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 0 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  justify-items: center;
  align-items: start;
}

/* === Card === */
.section {
  background: #fefcf9;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #fdfdfdad;
  height: 640px;
}

.section:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

/* === Image === */
.section img.lantern {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;

}

/* === Text Content === */
.tagline {
  font-family: 'Plus Jakarta Sans';
  font-size: 1.8rem;
  color: #2a2015;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.subtitle {
  font-size: 1.05rem;
  color: #3d342a;
  opacity: 0.9;
  line-height: 1.6;
}

/* === Button === */
.card-button {
  margin-top: 2rem;
  background: linear-gradient(145deg, #121111, #121111a3);
  color: white;
  padding: 0.6rem 1.6rem;
  border: none;
  border-radius: 32px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
}

.card-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* Base Footer Styling */
.footer {
  background-color: #121111;
  color: #eee;
  padding: 3rem 1.5rem 1rem;
  padding-left: calc(var(--filter-width) + 1.5rem);
  /* content aligned */
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.footer-logo img {
  width: 140px;
  filter: brightness(0) invert(1);
  margin: 0 auto;
}

/* Grid Layout for Links */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem auto 1rem;
  max-width: 1000px;
}

/* Footer Section Blocks */
.footer-section {
  min-width: 160px;
  text-align: left;
}

.footer-section h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
  align-items: center;
  gap: 0.5rem;
  display: inline-flex;
  margin-bottom: 0.5rem;        /* tighter */
}


.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.4rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #d1c1aa;
}

/* Contact Paragraphs */
.footer-section p,
.footer-section p a {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.15rem 0;            /* bigger tap area */
}

.footer-section p a:hover {
  color: #d1c1aa;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #2a2119;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}

/* Responsive */
/* Subtle separators between sections on mobile */
@media (max-width: 768px) {
  /* reset the left offset you added for the filter panel */
  .footer {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem;
  }

  /* one centered column, tighter and even spacing */
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.75rem;                 /* was 3rem */
    max-width: 520px;
    margin: 0 auto 1rem;
  }

  .footer-section {
    text-align: center;
    min-width: auto;
    width: 100%;
  }

  .footer-section:not(:last-child)::after {
    content: "";
    display: block;
    width: 56px;
    height: 1px;
    background: #2a2119;
    opacity: 0.7;
    margin: 1rem auto 0.25rem;
  }

  /* Footer bottom: logo + text perfectly centered */
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom .footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-bottom .footer-logo img {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
  }
}

/* Nice hover for links (keeps your brand tone) */
.footer-section a:hover,
.footer-section p a:hover {
  color: #e0d4c0;
}


/* === Responsive === */
@media (max-width: 768px) {
  .decorative-heading h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .card-button {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}


/* =========================================================
   RESPONSIVE – Tablet Down
   ========================================================= */
@media (max-width: 992px) {

  /* --- Navigation --- */
  .desktop-menu {
    display: none;
  }

  .menu-button-container {
    display: flex;
  }

  /* --- Collection Grid --- */
  .collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0;
    /* remove side-padding that caused shift */
    justify-items: center;
    /* center each card in its cell */
  }

  .section {
    max-width: 340px;
    margin: 0 auto 2rem;
    /* equal L/R margin keeps cards centered */
  }

  /* --- Typography tweaks --- */
  .decorative-heading h1 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 1.05rem;
  }
}

/* =========================================================
   RESPONSIVE – Mobile
   ========================================================= */
@media (max-width: 768px) {

  /* --- Hero copy size --- */
  .hero-heading {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* --- Buttons --- */
  .card-button {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}

/* =========================================================
   RESPONSIVE – Small Mobile (single-column cards)
   ========================================================= */
@media (max-width: 600px) {

  .collection-grid {
    grid-template-columns: 1fr;
    /* one card per row */
    gap: 1.5rem;
  }

  .section {
    width: 90%;
    max-width: 360px;
    margin: 0 auto;
    /* fully centered */
  }

  .hero-heading {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }
}

/* =========================================================
   RESPONSIVE – Extra-Small Mobile
   ========================================================= */
@media (max-width: 480px) {

  /* Hero overlay padding */
  .hero-overlay {
    padding: 1rem;
  }

  /* Headline hierarchy */
  .decorative-heading h1 {
    font-size: 1.9rem;
  }

  .tagline {
    font-size: 1.4rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .card-button {
    font-size: 0.9rem;
    padding: 0.55rem 1.1rem;
  }
}

/* =========================================================
   RESPONSIVE – Ultra-Small (older 320–360 px phones)
   ========================================================= */
@media (max-width: 360px) {

  .hero-heading {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .decorative-heading h1 {
    font-size: 1.7rem;
  }

  .tagline {
    font-size: 1.25rem;
  }

  .card-button {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

.content {
  position: relative;
  z-index: 3;
  /* higher than .hero-overlay’s 2 */
}

.hero-ad {
  z-index: 0;
}

/* overlay keeps its 2, but hero is now 0 */
.side-menu {
  pointer-events: none;
}

/* when closed */
.side-menu.open {
  pointer-events: auto;
}

/* re-enable only when visible */