:root {
  --primary: #3d0f0f;            
  --primary-dark: #1d7065;
  --text: #0f172a;
  --text-light: #475569;
  --gray: #e2e8f0;
  --offwhite: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: white;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.1;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
}

.alt-bg { background: var(--offwhite); }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray);
  transition: all 0.3s ease;
}

nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img { width: 90px; height: auto; }

.nav-links { display: flex; gap: 2.4rem; font-weight: 500; }

.nav-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* ── Mobile Nav ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1100;
}

.menu-toggle .bar {
  width: 28px;
  height: 3px;
  background-color: var(--primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transition: 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }
  .nav-links.active { right: 0; }
  .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
  .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  body.menu-open { overflow: hidden; }
}

/* ── Hero ── */
#hero {
  height: 100vh;
  min-height: 720px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
}

#hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
  z-index: -1;
}

.hero-content h1 { font-size: clamp(3.5rem, 9vw, 7.2rem); margin-bottom: 1.2rem; }
.hero-content p { font-size: 1.4rem; max-width: 620px; margin: 0 auto 2.5rem; }

.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn:hover { transform: translateY(-4px); background: #5a1a1a; }

/* ── Sections & Grids ── */
main { display: flex; flex-direction: column; gap: 80px; }
section { padding: 100px 0; opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
section.visible { opacity: 1; transform: translateY(0); }

h2 { font-size: clamp(2.5rem, 5vw, 4rem); text-align: center; margin-bottom: 3rem; color: var(--primary); }

.grid-2, .grid-3 { display: grid; gap: 2rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card { background: white; border-radius: 12px; padding: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.card-image-guide { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; margin-bottom: 1.5rem; }
.price { font-size: 2rem; font-weight: 700; color: var(--primary); margin: 0.5rem 0; }

.content-text-block { margin-top: 4rem; max-width: 800px; margin-inline: auto; }
.text-link { color: var(--primary); font-weight: 600; }

/* ── Gallery ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; }
.gallery-item { aspect-ratio: 4/3; overflow: hidden; border-radius: 12px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── Lightbox ── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; z-index: 2000; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90%; border-radius: 8px; }
.close-btn { position: absolute; top: 20px; right: 30px; color: white; font-size: 3rem; cursor: pointer; }

/* ── Footer ── */
footer { background: var(--text); color: white; text-align: center; padding: 4rem 1rem; }
.social-icons { display: flex; justify-content: center; gap: 1.5rem; list-style: none; margin-bottom: 1rem; }
.social-icon svg { width: 24px; fill: white; }
.footer-link { color: white; text-decoration: underline; }

/* Blog post list */
.post-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin: 24px 0; }
.post-item { border-radius: 8px; overflow: hidden; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.post-thumb { width: 100%; height: 200px; object-fit: cover; display: block; }
.post-item-body { padding: 16px; }
.post-title { font-size: 1.1rem; margin-bottom: 6px; }
.post-title a { text-decoration: none; color: inherit; }
.post-date { font-size: 0.85rem; color: #888; display: block; margin-bottom: 8px; }
.post-excerpt { font-size: 0.9rem; color: #555; }

/* Contact Form Styling */
form {
  max-width: 680px;
  margin: 3rem auto 0;
  display: grid;
  gap: 1.6rem;
}

input, textarea {
  width: 100%;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--gray);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1.05rem;
}

textarea {
  min-height: 160px;
}

.btn {
  /* Ensure your button styling is also applied here */
  cursor: pointer;
  border: none;
}
main {
    padding-top: 100px;       /* Extra top space below the fixed nav */
    padding-bottom: 80px;
    padding-left: 5vw;
    padding-right: 5vw;
}
.blog {
    padding-top: 100px;       /* Extra top space below the fixed nav */
    padding-bottom: 80px;
    padding-left: 5vw;
    padding-right: 5vw;
}