@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Lato:wght@300;400;700&family=Raleway:wght@300;400;600;800&display=swap');

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

:root {
  --parchment:   #f5efe6;
  --linen:       #ede0cc;
  --deep-walnut: #3b2a1a;
  --charcoal:    #2a2118;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dark:   #9a7a2e;
  --cream:       #fdf8f2;
  --sage:        #8a9a6e;
  --frame-outer: #b8972a;
  --frame-inner: #d4af50;
  --frame-bg:    #e8c97a;
  --shadow-warm: rgba(59,42,26,0.35);
  --shadow-gold: rgba(201,168,76,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--parchment);
  color: var(--charcoal);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  color: var(--deep-walnut);
  letter-spacing: 0.04em;
}
h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--deep-walnut);
  letter-spacing: 0.02em;
}

.serif-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
}

a { color: var(--gold-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

/* ── Image Protection ──────────────────────────────── */
/* Artwork images are copyrighted. Disable selection/dragging globally. */
.protected-img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none; /* prevents right-click on the image itself */
}
/* Re-enable pointer events on the parent container */
.frame-container, .artwork-frame-large {
  pointer-events: auto;
}

/* Navigation */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 3rem;
  background: rgba(245,239,230,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 2px 20px rgba(59,42,26,0.1);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text {
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--deep-walnut);
  letter-spacing: 0.12em;
}
/* Exact brand name casing: DVD (upper) by (lower) SVG (upper) rendered via spans */
/* "by" inherits font-weight:800 from .nav-logo-text — only transform is lowercased */
.nav-logo-text .brand-lower { text-transform: lowercase; font-weight: 800; }

.nav-links {
  display: flex; gap: 2.2rem; list-style: none;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--deep-walnut);
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--gold); transition: right 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a:hover { color: var(--gold-dark); }

.nav-cart {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--deep-walnut); color: var(--gold-light) !important;
  padding: 0.5rem 1.2rem; border-radius: 2px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s, color 0.2s; text-decoration: none;
}
.nav-cart:hover { background: var(--gold); color: var(--deep-walnut) !important; }
.cart-count {
  background: var(--gold); color: var(--deep-walnut);
  border-radius: 50%; width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--deep-walnut); transition: all 0.3s; }

/* Instagram nav icon */
.nav-instagram {
  display: inline-flex; align-items: center;
  color: var(--deep-walnut) !important;
  transition: color 0.2s;
  padding-bottom: 3px;
}
.nav-instagram:hover { color: #c13584 !important; }
.nav-instagram svg { display: block; }

/* Instagram footer link */
.footer-instagram {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.8rem;
  color: rgba(237,224,204,0.75);
  font-family: 'Lato', sans-serif; font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-instagram:hover { color: var(--gold-light); }
.footer-instagram svg { flex-shrink: 0; }
.footer ul a { display: inline-flex; align-items: center; gap: 0.4rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.25s;
  text-decoration: none;
}
.btn-primary { background: var(--deep-walnut); color: var(--gold-light); border: 1px solid var(--deep-walnut); }
.btn-primary:hover { background: var(--gold); color: var(--deep-walnut); border-color: var(--gold); }
.btn-outline { background: transparent; color: var(--deep-walnut); border: 1px solid var(--deep-walnut); }
.btn-outline:hover { background: var(--deep-walnut); color: var(--gold-light); }
.btn-gold { background: var(--gold); color: var(--deep-walnut); border: 1px solid var(--gold-dark); }
.btn-gold:hover { background: var(--gold-dark); color: var(--cream); }

/* Form Elements */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--deep-walnut); margin-bottom: 0.4rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.7rem 1rem;
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Gold Divider */
.gold-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 2rem auto; max-width: 300px;
}
.gold-divider::before, .gold-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--gold);
}
.gold-divider span { color: var(--gold); font-size: 1rem; }

/* Footer */
.footer {
  background: var(--deep-walnut); color: var(--linen);
  padding: 3rem 3rem 1.5rem; margin-top: 6rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
/* Transparent PNG — no filter or blend mode needed; colours display exactly as-is */
.footer-brand img { height: 60px; width: auto; margin-bottom: 0.8rem; }
.footer-brand p { color: rgba(237,224,204,0.7); font-size: 0.9rem; line-height: 1.7; }
.footer h4 {
  color: var(--gold-light); font-family: 'Lato', sans-serif;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: rgba(237,224,204,0.75); font-size: 0.9rem; transition: color 0.2s; }
.footer ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.2); padding-top: 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(237,224,204,0.5); font-size: 0.78rem;
}

/* Page Hero */
.page-hero {
  padding: 140px 3rem 60px; text-align: center;
  background: var(--linen); border-bottom: 1px solid rgba(201,168,76,0.25);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.page-hero .subtitle {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.15rem; color: var(--gold-dark);
}

/* Toast */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--deep-walnut); color: var(--gold-light);
  padding: 1rem 1.5rem; border-left: 3px solid var(--gold);
  font-size: 0.9rem; box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transform: translateX(120%); transition: transform 0.4s ease; max-width: 300px;
}
.toast.show { transform: translateX(0); }

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 0.8rem 1.5rem; }
  .nav-links {
    display: none; flex-direction: column; position: fixed;
    top: 62px; left: 0; right: 0; background: var(--cream);
    padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .nav-cart .cart-label { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 2rem 1.5rem 1rem; }
  .page-hero { padding: 120px 1.5rem 40px; }
}
