/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #1e2a45;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(255,255,255,0.05) 0%, transparent 40%),
    linear-gradient(135deg, #1e2a45 0%, #2b4f81 100%);
  color: #eeeeee;
  overflow-x: hidden;
}

/* Sparkling silver overlay animation */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  background: repeating-radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04),
    transparent 10px
  );
  animation: sparkle 8s linear infinite;
  z-index: -1;
}

@keyframes sparkle {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

/* Navbar */
.navbar {
  background-color: #000;
  padding: 1rem 0;
  border-bottom: 2px solid #d4af37;
}

.nav-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 1px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #c0c0c0;
  font-weight: 600;
  position: relative;
  padding: 6px 10px;
  transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #d4af37;
  left: 0;
  bottom: -3px;
  transition: 0.3s ease-in-out;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: transparent;
}

.hero h2 {
  font-size: 2.8rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #c0c0c0;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #d4af37;
  color: #1a1a1a;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #ffde59;
}

/* Services & Cards */
section {
  padding: 4rem 2rem;
  text-align: center;
}

h3 {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding-top: 1rem;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #555;
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #d4af37;
}

.card h4 {
  color: #d4af37;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.card span {
  color: #87cefa;
  font-weight: bold;
  margin-top: 1rem;
  display: block;
}

/* Booking & Contact */
.btn-secondary {
  background: #c0c0c0;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #000;
}

.contact a {
  color: #d4af37;
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #000;
  color: #c0c0c0;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.blink-logo {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;

  /* Background shimmer */
  background-image: linear-gradient(
    90deg,
    #d4af37 0%,
    #ffffff 50%,
    #d4af37 100%
  );
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  animation: shimmer 4s ease-in-out infinite, soft-blink 2s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

@keyframes soft-blink {
  0%, 100% {
    text-shadow: 0 0 6px #d4af37, 0 0 12px #d4af37;
  }
  50% {
    text-shadow: 0 0 12px #ffffff, 0 0 20px #eeeeee;
  }
}

.form-container {
  max-width: 600px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #444;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-weight: 600;
  color: #facc15;
}

input,
textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  background: #2b4f81;
  color: #ffffff;
  border: 1px solid #555;
}

input:focus,
textarea:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 8px #d4af37;
}

.flashy-btn {
  position: relative;
  animation: pulse-glow 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px #d4af37, 0 0 20px #facc15;
  transition: all 0.3s ease;
}

.flashy-btn:hover {
  background: linear-gradient(to right, #ffef8b, #ffd700, #facc15);
  color: #000;
  box-shadow: 0 0 20px #ffffff, 0 0 40px #facc15;
  animation: shimmer-glow 1.5s linear infinite;
}

/* Pulse animation */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px #d4af37, 0 0 20px #facc15;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px #ffffff, 0 0 40px #facc15;
    transform: scale(1.03);
  }
}

/* Optional shimmer line across text */
@keyframes shimmer-glow {
  0% {
    background-position: -200%;
  }
  100% {
    background-position: 200%;
  }
}

.form-highlight {
  text-align: center;
  background: linear-gradient(135deg, #1e2a45, #2b4f81);
  padding: 4rem 2rem;
  border-top: 1px solid #555;
}

.form-highlight h3 {
  color: #d4af37;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.form-highlight p {
  color: #c0c0c0;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Flashy submit button */
.flashy-btn {
  display: inline-block;
  position: relative;
  animation: pulse-glow 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px #d4af37, 0 0 20px #facc15;
  transition: all 0.3s ease;
  font-weight: bold;
}

.flashy-btn:hover {
  background: linear-gradient(to right, #ffef8b, #ffd700, #facc15);
  color: #000;
  box-shadow: 0 0 20px #ffffff, 0 0 40px #facc15;
  animation: shimmer-glow 1.5s linear infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px #d4af37, 0 0 20px #facc15;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px #ffffff, 0 0 40px #facc15;
    transform: scale(1.05);
  }
}

@keyframes shimmer-glow {
  0% {
    background-position: -200%;
  }
  100% {
    background-position: 200%;
  }
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.checkbox-label {
  color: #eeeeee;
  font-size: 0.95rem;
}

/* Disclaimer Section Styling */
.disclaimer-section {
  background: rgba(255, 255, 255, 0.03);
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid #444;
}

.disclaimer-text {
  color: #c0c0c0;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
}

.checkbox-label {
  color: #eeeeee;
  font-size: 0.95rem;
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Flashy CTA button */
.flashy-btn {
  display: inline-block;
  position: relative;
  animation: pulse-glow 2.5s ease-in-out infinite;
  box-shadow: 0 0 10px #d4af37, 0 0 20px #facc15;
  transition: all 0.3s ease;
  font-weight: bold;
}

.flashy-btn:hover {
  background: linear-gradient(to right, #ffef8b, #ffd700, #facc15);
  color: #000;
  box-shadow: 0 0 20px #ffffff, 0 0 40px #facc15;
  animation: shimmer-glow 1.5s linear infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px #d4af37, 0 0 20px #facc15;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 20px #ffffff, 0 0 40px #facc15;
    transform: scale(1.05);
  }
}

@keyframes shimmer-glow {
  0% {
    background-position: -200%;
  }
  100% {
    background-position: 200%;
  }
}

.philosophy {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid #444;
}

.tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: #c0c0c0;
  max-width: 700px;
  margin: 0 auto;
}

 .btn-primary {
      padding: 0.3rem 0.6rem;
      font-size: 0.75rem;
      cursor: pointer;
    }

    /* General button style (shrunk and neat) */
.btn-payment {
  padding: 6px 12px;
  font-size: 0.9em;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  margin: 6px 0;
}

/* PayPal specific color */
.btn-paypal {
  background-color: gold;
  color: black;
}

/* Stripe specific color (add later when ready) */
.btn-stripe {
  background-color: #635bff;
  color: white;
}

/* ===== Payment Buttons ===== */

.btn-payment {
  padding: 6px 12px;
  font-size: 0.9em;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  margin: 6px 0;
}

.btn-paypal {
  background-color: gold;
  color: black;
}

.btn-stripe {
  background-color: #635bff;
  color: white;
}

/* ===== Payment Buttons ===== */

.btn-payment {
  padding: 6px 12px;
  font-size: 0.9em;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  margin: 6px 0;
}

.btn-paypal {
  background-color: gold;
  color: black;
}

.btn-stripe {
  background-color: #635bff;
  color: white;
}


/* --- Payment Section (Refined) --- */

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  justify-content: center;
}

.payment-card {
  flex: 1 1 180px;
  max-width: 220px;
  background: linear-gradient(145deg, #f0f0f0, #ffffff);
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.payment-card h5 {
  font-size: 0.95em;
  margin: 0 0 6px;
  color: #333;
}

.payment-card p {
  font-size: 0.8em;
  color: #666;
  margin-bottom: 10px;
}

.btn-payment {
  padding: 6px 10px;
  font-size: 0.8em;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  display: block;
}

.btn-paypal {
  background-color: gold;
  color: black;
}

.btn-stripe {
  background-color: #635bff;
  color: white;
}

/* Responsive layout */
@media (max-width: 600px) {
  .payment-options {
    flex-direction: column;
    align-items: center;
  }

  .payment-card {
    max-width: 90%;
  }
}

/* === Blink/Blink (Glow Pulse Animation) === */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 215, 0, 0);
  }
  50% {
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 215, 0, 0);
  }
}
.btn-paypal {
  background-color: gold;
  color: black;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
  transition: box-shadow 0.3s ease;
}

.btn-stripe {
  background-color: #635bff;
  color: white;
  box-shadow: 0 0 12px rgba(99, 91, 255, 0.6);
  transition: box-shadow 0.3s ease;
}

/* Optional: Stronger glow on hover */
.btn-paypal:hover {
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.9);
}

.btn-stripe:hover {
  box-shadow: 0 0 18px rgba(99, 91, 255, 0.9);
}


@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
  50% { box-shadow: 0 0 8px rgba(255, 215, 0, 0.6); }
  100% { box-shadow: 0 0 0 rgba(255, 215, 0, 0); }
}

.btn-blink {
  animation: pulseGlow 2s infinite;
}

.btn-paypal:hover {
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

.btn-stripe:hover {
  box-shadow: 0 0 12px rgba(99, 91, 255, 0.8);
}
@media (max-width: 600px) {
  .btn-paypal,
  .btn-stripe {
    animation: none;
  }
}

.slogan-box {
  background: linear-gradient(135deg, #e0eaff, #fdfdff);
  border-left: 6px solid #4b6cb7;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  animation: fadeInSlogan 1.2s ease-in-out;
}

.slogan-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  font-style: italic;
}

@keyframes fadeInSlogan {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.slogan-box {
  background: linear-gradient(135deg, #e0eaff, #fdfdff);
  border-left: 6px solid #4b6cb7;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.slogan-typewriter {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #4b6cb7;
}

.slogan-box {
  background: linear-gradient(135deg, #e0eaff, #fdfdff);
  border-left: 6px solid #4b6cb7;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.slogan-typewriter {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

.blink-letter {
  animation: blink 1.2s ease-in-out infinite;
  display: inline-block;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.05); }
}

.blink-letter {
  animation: blink 1.2s ease-in-out infinite;
  display: inline-block;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.05); }
}

/* 💖 Add this new animation for the heart */
.heart-blink {
  display: inline-block;
  margin-left: 0.3rem;
  animation: pulseHeart 1.2s ease-in-out infinite;
  color: #e25555;
}

@keyframes pulseHeart {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* ========== MOBILE RESPONSIVE BASICS ========== */
* { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 16px; }

h1,h2,h3 { font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
h2 { font-size: clamp(1.6rem, 2.2vw + 1rem, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.4vw + .9rem, 1.6rem); }
p, li { font-size: clamp(.95rem, .5vw + .8rem, 1.05rem); }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 10; background:#0a0a23; color:#fff; }
.nav-container { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px 16px; }
.logo { font-weight:700; }
.nav-toggle { display:none; background:transparent; color:#fff; border:0; font-size:1.5rem; cursor:pointer; }

/* desktop nav */
.nav-links ul { display:flex; gap:14px; list-style:none; }
.nav-links a { color:#fff; text-decoration:none; padding:8px 10px; border-radius:6px; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.1); }

/* HERO */
.hero { padding: 48px 0; text-align:center; }
.hero .subtext { color:#8aa; max-width:800px; margin: 8px auto 16px; }
.btn-primary {
  display:inline-block; padding:10px 16px; border-radius:999px;
  background:#0a0a23; color:#fff; text-decoration:none; font-weight:600;
}
.btn-primary.disabled { opacity:.55; pointer-events:none; }

/* GRID & CARDS */
.grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.card {
  background:#f9f9f9; border:1px solid #e8e8e8; border-radius:12px; padding:16px;
  text-align:center;
}

/* PAYMENT LAYOUT (keeps buttons inside box) */
/*
.payment-options {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 10px;
} */

/* Center PayPal when it's the only payment option */
.payment-options.single {
  display: flex;
  justify-content: center;
}

.payment-options.single .payment-card {
  text-align: center;
}

.payment-card {
  background: linear-gradient(145deg, #f0f0f0, #ffffff);
  border:1px solid #ddd; border-radius:8px; padding:12px;
}
.payment-card h5 { margin:0 0 6px; font-size: .95rem; }
.payment-card p { margin:0 0 10px; color:#666; font-size:.9rem; }

/* Compact buttons with steady glow */
.btn-payment {
  display:inline-block; width:100%;
  padding:8px 14px; font-size:.9rem; font-weight:700;
  border:0; border-radius:30px; cursor:pointer;
  transition: box-shadow .3s ease, transform .2s ease;
}
.btn-paypal {
  background-color: gold; color: #000;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}
.btn-paypal:hover { box-shadow:0 0 16px rgba(255,215,0,.9); transform: translateY(-2px); }

.btn-stripe {
  background-color: #635bff; color: #fff;
  box-shadow: 0 0 12px rgba(99, 91, 255, 0.6);
}
.btn-stripe:hover { box-shadow:0 0 16px rgba(99,91,255,.9); transform: translateY(-2px); }

/* DISCLAIMER */
.disclaimer-section { padding: 36px 0; }
.checkbox-label { display:flex; gap:10px; align-items:flex-start; }

/* MOBILE NAV */
@media (max-width: 800px) {
  .nav-toggle { display:block; }
  .nav-links { display:none; width:100%; }
  .nav-links.open { display:block; }
  .nav-links ul { flex-direction:column; gap:8px; padding:12px 0; }
}

/* Tighten spacing on very small screens */
@media (max-width: 480px) {
  .container { padding: 12px; }
  .card { padding: 14px; }
  .btn-payment { padding: 8px 12px; font-size: .9rem; }
}

/* Center the disclaimer checkbox and text */
#disclaimer-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#disclaimer-form .checkbox-label {
  justify-content: center;
  text-align: center;
}

/* ===== GALLERY PAGE ===== */
.gallery-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.gallery-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  background: #fff;
  padding: 10px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Download Button */
.download-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  background-color: gold;
  color: black;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background-color: #d4af37;
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-title { font-size: 1.5rem; }
}

/* ===== Hewen Craft Intro ===== */
.hewen-intro {
  position: relative;
  background: url('images/handmade-bg.jpg') center/cover no-repeat; 
  /* Replace handmade-bg.jpg with your actual artsy background image */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hewen-overlay {
  background: rgba(255, 255, 255, 0.85); /* Soft white overlay */
  max-width: 900px;
  padding: 30px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hewen-overlay h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  color: #b45f5f; /* Warm craft color */
  margin-bottom: 5px;
}

.hewen-overlay h4 {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 20px;
}

.hewen-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
  .hewen-overlay {
    padding: 20px;
  }
  .hewen-overlay h2 {
    font-size: 1.6rem;
  }
  .hewen-overlay h4 {
    font-size: 1rem;
  }
  .hewen-overlay p {
    font-size: 0.95rem;
  }
}

/* ===== Hewen Craft Intro ===== */
.hewen-intro {
  position: relative;
  background: url('images/handmade-bg.jpg') center/cover no-repeat; 
  /* Replace handmade-bg.jpg with your actual artsy background image */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hewen-overlay {
  background: rgba(255, 255, 255, 0.85); /* Soft white overlay */
  max-width: 900px;
  padding: 30px 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.hewen-overlay h2 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  color: #b45f5f; /* Warm craft color */
  margin-bottom: 5px;
}

.hewen-overlay h4 {
  font-size: 1.2rem;
  color: #777;
  margin-bottom: 20px;
}

.hewen-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}

/* Responsive for Mobile */
@media (max-width: 600px) {
  .hewen-overlay {
    padding: 20px;
  }
  .hewen-overlay h2 {
    font-size: 1.6rem;
  }
  .hewen-overlay h4 {
    font-size: 1rem;
  }
  .hewen-overlay p {
    font-size: 0.95rem;
  }
}
/* Make nav responsive */
.nav-links ul {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links ul li a {
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 600;
  color: #333;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  transition: background 0.3s;
}

.nav-links ul li a:hover {
  background: rgba(0,0,0,0.1);
}

/* Stack nav items for very small screens */
@media (max-width: 600px) {
  .nav-links ul {
    justify-content: center;
  }
  .nav-links ul li {
    flex: 1 1 45%; /* Each takes about half screen */
    text-align: center;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 200px; /* Fixed height for uniformity */
  object-fit: cover; /* Crop to fill the space without stretching */
  border-radius: 6px;
}

.download-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  background: gold;
  color: black;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: orange;
}

/* 🎨 Gallery Frame Design */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* keeps images big but even */
  gap: 20px;
}

.gallery-item {
  background: #fdfaf5; /* light warm tone, like a gallery wall */
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  border: 8px solid #fff; /* white inner frame */
  outline: 2px solid #ccc; /* grey outer frame edge */
  transition: transform 0.2s ease;
}

.gallery-item:hover {
  transform: scale(1.03); /* slight zoom on hover */
}

.gallery-item img {
  width: 100%;
  height: 240px; /* fixed height for uniform look */
  object-fit: cover; /* crops to fit the frame without distortion */
  border-radius: 6px;
}

/* 🎨 Gallery Frame Design with Gradient Accent */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  background: linear-gradient(145deg, #fdfaf5, #f6e9d7); /* warm parchment-like background */
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  padding: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  
  /* Inner and outer gradient border */
  border: 10px solid transparent;
  background-clip: padding-box;
  position: relative;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 3px;
  background: linear-gradient(135deg, #d4af37, #f6e27a, #d4af37); /* gold gradient */
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}


.gallery-intro {
  background: linear-gradient(135deg, #fff8f0, #fefcf9);
  padding: 40px 20px;
  text-align: center;
  border-radius: 14px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.gallery-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #8b5e3c;
  margin-bottom: 15px;
}

.gallery-intro p {
  font-size: 1.1rem;
  color: #5a4633;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.caption {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #4a3c2a;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ===== NAVBAR FULL RESET & GOLD GRADIENT ===== */
.navbar {
  background: linear-gradient(90deg, #f9e7b7, #e2c465);
  padding: 10px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 999;
  font-family: 'Inter', sans-serif;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #4a3c1a;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  color: #4a3c1a;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links ul li a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #2e260f;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .nav-links ul {
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #f9e7b7, #e2c465);
    display: none;
    padding: 10px 0;
  }

  .nav-links ul li {
    text-align: center;
    padding: 10px 0;
  }

  .nav-links.active ul {
    display: flex;
  }

  /* Optional: hamburger menu icon */
  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: #4a3c1a;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}

.craft-message {
  background: linear-gradient(145deg, #fff8e7, #fdf6ec);
  padding: 28px 20px;
  margin: 40px auto 0;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 880px;
  border: 1px solid #f0e1c6;
}

.craft-text p {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5a4632;
  text-align: center;
}

.craft-text strong {
  color: #d4af37; /* soft gold */
  font-weight: bold;
}

/* ===== NAV BAR (dark base) ===== */
.navbar{
  position: sticky; top:0; z-index:9999;
  background:#0a0a23; /* keep your dark bar */
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.nav-container{
  max-width:1200px; margin:0 auto; padding:10px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.logo{ color:#fff; font-weight:700; font-size:1.1rem; }

/* desktop nav */
.nav-links{ display:block; }
.nav-links ul{
  list-style:none; margin:0; padding:0;
  display:flex; gap:12px; flex-wrap:wrap;
}

/* ===== SILVER “KEY” BUTTONS ===== */
.nav-links a{
  display:inline-block;
  background: linear-gradient(145deg, #f0f0f0, #d6d6d6); /* soft silver */
  color:#333;
  padding:8px 14px; border-radius:10px;
  text-decoration:none; font-weight:600;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 1px 2px rgba(0,0,0,.25);
  transition: transform .2s ease, background .25s ease, color .25s ease;
}
.nav-links a:hover{
  background: linear-gradient(145deg, #ffffff, #c0c0c0); /* lighter silver */
  color:#000; transform: translateY(-2px);
}
.nav-links a.active{
  background: linear-gradient(145deg, #e7e7e7, #bfbfbf);
  color:#111;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 2px 4px rgba(0,0,0,.28);
}

/* ===== MOBILE ===== */
.nav-toggle{
  display:none; background:transparent; border:0; color:#fff; font-size:1.6rem; cursor:pointer;
}
@media (max-width: 800px){
  .nav-toggle{ display:block; }
  .nav-links{ display:none; width:100%; }
  .nav-links.open{ display:block; }
  .nav-links ul{
    flex-direction:column; gap:8px;
    padding:12px 0;
  }
  .nav-links a{
    width:100%;
    text-align:center;
  }
}

/* optional: tighter on very small screens */
@media (max-width: 420px){
  .logo{ font-size:1rem; }
  .nav-links a{ padding:8px 12px; }
}

/* ===== NAV BAR (dark base) ===== */
.navbar{
  position: sticky; top:0; z-index:9999;
  background:#0a0a23;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.nav-container{
  max-width:1200px; margin:0 auto; padding:10px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.logo{ color:#fff; font-weight:700; font-size:1.1rem; }

/* hide the checkbox itself */
.nav-check{ position:absolute; left:-9999px; }

/* hamburger button */
.nav-toggle{
  display:none; background:transparent; border:0; color:#fff;
  font-size:1.6rem; cursor:pointer; line-height:1; padding:6px 8px;
}

/* desktop nav layout */
.nav-links{ display:block; }
.nav-links ul{
  list-style:none; margin:0; padding:0;
  display:flex; gap:12px; flex-wrap:wrap;
}

/* ===== SILVER “KEY” BUTTONS ===== */
/* ===== SILVER-WHITE “KEY” BUTTONS ===== */
/* ===== NAVBAR BASE ===== */
.navbar {
  background: #111; /* dark bar background */
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO ===== */
.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: gold;
}

/* ===== NAV LINKS ===== */
.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.nav-links li {
  display: inline-block;
}

/* ===== SILVER-WHITE “KEY” BUTTONS ===== */
./* ===== NAVBAR BASE ===== */
.navbar {
  background: #111; /* dark bar background */
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO ===== */
.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: gold;
}

/* ===== NAV LINKS ===== */
.nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.nav-links li {
  display: inline-block;
}

/* ===== SILVER-WHITE “KEY” BUTTONS ===== */
.nav-links a {
  display: inline-block;
  background: linear-gradient(145deg, #ffffff, #e5e5e5); /* bright silver-white */
  color: #222; /* dark text for contrast */
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700; /* bold */
  font-size: 0.95rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 1px 3px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease;
}

/* Hover state */
.nav-links a:hover {
  background: linear-gradient(145deg, #ffffff, #d6d6d6);
  color: #000;
  transform: translateY(-2px);
}

/* Active / Click state - keep it bright */
.nav-links a:active,
.nav-links a:focus,
.nav-links a.active {
  background: linear-gradient(145deg, #fdfdfd, #dcdcdc);
  color: #000; /* keep text fully visible */
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 2px 4px rgba(0, 0, 0, 0.28);
  outline: none; /* remove browser outline */
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links ul {
    flex-direction: column;
    width: 100%;
    gap: 6px;
    margin-top: 10px;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 1rem;
  }
}

/* === NAV CLICK VISIBILITY FIX (put at very end) === */
.nav-links a,
.nav-links a:visited,
.nav-links a:focus,
.nav-links a:active {
  color: #000 !important;              /* keep text dark */
  background: linear-gradient(145deg, #ffffff, #dcdcdc) !important; /* keep silver */
  text-shadow: none !important;
  outline: none !important;
  -webkit-tap-highlight-color: rgba(0,0,0,0); /* iOS/Android tap flash off */
}

/* keep hover slightly brighter but still readable */
.nav-links a:hover {
  color: #000 !important;
  background: linear-gradient(145deg, #ffffff, #d6d6d6) !important;
}

/* optional: when a link is the current page */
.nav-links a.active {
  color: #000 !important;
  background: linear-gradient(145deg, #fdfdfd, #dcdcdc) !important;
}

/* === NAV BAR BUTTONS (Clean + Silver Gradient) === */
.nav-links a,
.nav-links a:visited,
.nav-links a:focus,
.nav-links a:active {
  display: inline-block;
  padding: 10px 16px;
  color: #000 !important;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  background: linear-gradient(145deg, #f5f5f5, #d9d9d9); /* subtle silver */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8),
              0 2px 5px rgba(0,0,0,0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.nav-links a:hover {
  background: linear-gradient(145deg, #ffffff, #cccccc); /* slightly brighter */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9),
              0 3px 6px rgba(0,0,0,0.15);
  color: #000 !important;
}

.nav-links a.active {
  background: linear-gradient(145deg, #eeeeee, #cccccc); /* active = soft silver */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9),
              0 3px 6px rgba(0,0,0,0.15);
  color: #000 !important;
}

/* === NAV BAR BUTTONS (Clean + Silver Gradient) === */
.nav-links a,
.nav-links a:visited,
.nav-links a:focus,
.nav-links a:active {
  display: inline-block;
  padding: 10px 16px;
  color: #000 !important;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  background: linear-gradient(145deg, #f5f5f5, #d9d9d9); /* subtle silver */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8),
              0 2px 5px rgba(0,0,0,0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.nav-links a:hover {
  background: linear-gradient(145deg, #ffffff, #cccccc); /* slightly brighter */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9),
              0 3px 6px rgba(0,0,0,0.15);
  color: #000 !important;
}

.nav-links a.active {
  background: linear-gradient(145deg, #eeeeee, #cccccc); /* active = soft silver */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9),
              0 3px 6px rgba(0,0,0,0.15);
  color: #000 !important;
}

/* === MOBILE NAV FIX (CSS-only) === */
.navbar { position: sticky; top: 0; z-index: 9999; }
.nav-container { position: relative; }

/* Hide the checkbox itself */
.nav-check { position: absolute; left: -9999px; }

/* Hamburger button (the <label class="nav-toggle">☰) */
.nav-toggle {
  display: none;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
  user-select: none;
}

/* Desktop: show inline nav */
.nav-links { display: block; }
.nav-links ul {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap; /* desktop can wrap if needed */
}

/* ----- Mobile behavior ----- */
@media (max-width: 820px) {
  .nav-toggle { display: block; }           /* show hamburger */
  .nav-links {
    display: none;                          /* hide list by default */
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #0a0a23;                    /* dropdown background */
    padding: 10px 12px 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,.25);
  }
  .nav-links ul {
    flex-direction: column;                 /* stack all items */
    gap: 8px;
  }
  .nav-links a {                            /* make each key easy to tap */
    width: 100%;
    text-align: center;
    padding: 12px 14px;
  }

  /* When checkbox is checked, show the menu */
  .nav-check:checked ~ .nav-links { display: block; }
}

/* Ensure your silver button look stays readable on all states */
.nav-links a,
.nav-links a:visited,
.nav-links a:focus,
.nav-links a:active {
  display: inline-block;
  padding: 10px 16px;
  color: #000 !important;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  background: linear-gradient(145deg, #f5f5f5, #d9d9d9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 2px 5px rgba(0,0,0,.1);
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav-links a:hover {
  background: linear-gradient(145deg, #ffffff, #cccccc);
  color: #000 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 3px 6px rgba(0,0,0,.15);
}
.nav-links a.active {
  background: linear-gradient(145deg, #eeeeee, #cccccc);
}

/* ===== GALLERY PAGE ONLY (JPG + soft cream overlay) ===== */
html body.gallery-page {
  color: #222;
  background:
    linear-gradient(0deg, rgba(244,241,236,0.82), rgba(244,241,236,0.82)),
    url('images/linen-bg.jpg') center center / cover no-repeat fixed !important;
}

html body.gallery-page .caption { color: #222; }

.gallery-item {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}































   


  













