/* ==========================================================================
   SANCTUARIUM CASEI • ODA SIRU
   Haute Gastronomie & Sacred Aesthetic
   Fully Responsive & Mobile-Optimized
   ========================================================================== */

:root {
  /* Color Palette - Obsidian Noir & Royal Gold */
  --bg-dark: #090806;
  --bg-surface: #12100c;
  --bg-card: rgba(22, 19, 14, 0.82);
  --bg-card-hover: rgba(32, 27, 20, 0.9);
  --bg-altar: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15) 0%, rgba(14, 12, 9, 0.98) 75%);

  /* Gold & Honey Accents */
  --gold-100: #FFF9E6;
  --gold-200: #FFEAA7;
  --gold-300: #FFD269;
  --gold-400: #F6B834;
  --gold-500: #D4AF37; /* Royal Classic Gold */
  --gold-600: #AA820A;
  --gold-700: #735300;
  --gold-glow: rgba(212, 175, 55, 0.35);

  /* Neutrals */
  --text-primary: #F8F5EE;
  --text-secondary: #C8BFB0;
  --text-muted: #8E8474;
  --border-subtle: rgba(212, 175, 55, 0.18);
  --border-bright: rgba(255, 215, 0, 0.45);

  /* Typography */
  --font-display: 'Cinzel Decorative', 'Georgia', serif;
  --font-editorial: 'Cormorant Garamond', 'Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Elevation & Shadows */
  --shadow-gold: 0 10px 35px -5px rgba(212, 175, 55, 0.25);
  --shadow-deep: 0 20px 45px -10px rgba(0, 0, 0, 0.85);
  --glass-blur: blur(16px);
}

/* Base Resets & Layout */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
  background-color: var(--bg-dark);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  min-height: 100vh;
  cursor: default;
  -webkit-text-size-adjust: 100%;
}

/* Background Atmospheric Canvas & Glows */
.ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.ambient-vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(5, 4, 3, 0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

.ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.22;
  animation: orbDrift 22s infinite alternate ease-in-out;
  max-width: 100vw;
}

.orb-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #f3a61d, transparent 70%);
  top: -80px;
  right: -80px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #b8860b, transparent 70%);
  bottom: 10%;
  left: -120px;
  animation-duration: 28s;
  animation-delay: -7s;
}

.orb-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #ffeaa7, transparent 70%);
  top: 45%;
  right: 10%;
  animation-duration: 20s;
  animation-delay: -12s;
  opacity: 0.12;
}

@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 40px) scale(1.08); }
  100% { transform: translate(-20px, -30px) scale(0.95); }
}

/* Custom Gold Cheese Cursor (Desktop Only) */
.gold-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5));
}

@media (hover: none) or (pointer: coarse) {
  .gold-cursor {
    display: none !important;
  }
}

.cursor-wedge {
  width: 100%;
  height: 100%;
  animation: cursorBob 3s ease-in-out infinite alternate;
}

@keyframes cursorBob {
  from { transform: rotate(-5deg); }
  to { transform: rotate(8deg); }
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  background: rgba(10, 8, 6, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
  width: 100%;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-crest {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.crest-symbol {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 10px rgba(246, 184, 52, 0.4));
  transition: transform 0.3s ease;
}

.brand-crest:hover .crest-symbol {
  transform: rotate(15deg) scale(1.1);
}

.crest-text {
  display: flex;
  flex-direction: column;
}

.crest-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.crest-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-400);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold-300);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.btn-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--gold-300);
  padding: 0.45rem 0.85rem;
  border-radius: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-icon:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-400);
  color: var(--gold-100);
}

.btn-icon .hidden {
  display: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #1a1200;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--gold-300);
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 6px 22px rgba(246, 184, 52, 0.5);
  transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7.5rem 1.25rem 3.5rem;
  z-index: 2;
  text-align: center;
  overflow-x: hidden;
  width: 100%;
}

.hero-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 1.1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-bright);
  border-radius: 50px;
  font-size: clamp(0.62rem, 2.2vw, 0.75rem);
  letter-spacing: clamp(0.12em, 1.5vw, 0.22em);
  color: var(--gold-300);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
  max-width: 100%;
  text-align: center;
  line-height: 1.35;
}

.badge-dot {
  width: 5px;
  height: 5px;
  background-color: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-400);
  flex-shrink: 0;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
  width: 100%;
}

.title-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 2.2vw, 0.85rem);
  letter-spacing: clamp(0.15em, 2vw, 0.35em);
  color: var(--gold-400);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.title-main {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: clamp(0.04em, 1vw, 0.08em);
  line-height: 1.08;
  background: linear-gradient(135deg, #FFFFFF 10%, var(--gold-200) 40%, var(--gold-400) 75%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 25px rgba(212, 175, 55, 0.35));
  word-break: break-word;
}

.hero-quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1.05rem, 3.2vw, 1.5rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
  padding: 0 0.5rem;
  line-height: 1.5;
}

/* 3D Interactive Cheese Showcase */
.hero-cheese-stage {
  position: relative;
  width: min(300px, 75vw);
  height: min(300px, 75vw);
  margin: 0 auto 2.5rem;
  perspective: 1000px;
  max-width: 100%;
}

.cheese-disc-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.4, 1);
  cursor: grab;
}

.cheese-wheel-3d {
  width: 100%;
  height: 100%;
  animation: floatCheese 6s ease-in-out infinite alternate;
}

.cheese-svg-3d {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
}

.halo-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.3);
  pointer-events: none;
  animation: rotateHalo 35s linear infinite;
}

@keyframes floatCheese {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
  100% { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes rotateHalo {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #FFE082, #D4AF37 50%, #9E7400);
  color: #120c02;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  border: 1px solid #FFEBB0;
  white-space: nowrap;
}

.btn-luxury:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(246, 184, 52, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-200);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-400);
  color: #FFFFFF;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 18px;
  height: 28px;
  border: 2px solid var(--border-bright);
  border-radius: 20px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 5px;
  background: var(--gold-400);
  border-radius: 2px;
  animation: mouseWheel 2s infinite;
}

@keyframes mouseWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ==========================================================================
   Section Liturgija (The Sacred Poem Codex)
   ========================================================================== */
.section-liturgija {
  position: relative;
  padding: 5rem 1.25rem;
  z-index: 2;
  overflow-x: hidden;
  width: 100%;
}

.section-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  width: 100%;
}

.sub-label {
  display: block;
  font-size: clamp(0.65rem, 2vw, 0.75rem);
  letter-spacing: clamp(0.15em, 2vw, 0.3em);
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  font-weight: 600;
  line-height: 1.35;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: clamp(0.04em, 1vw, 0.08em);
  color: var(--text-primary);
  margin-bottom: 1rem;
  word-break: break-word;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0.85rem 0;
}

.divider-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.divider-gem {
  color: var(--gold-300);
  font-size: 1.1rem;
}

/* Codex Presentation Cards */
.codex-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.stanza-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: clamp(1.75rem, 5vw, 3rem) clamp(1rem, 4vw, 2.5rem);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-deep);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  width: 100%;
}

.stanza-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.stanza-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.9), 0 0 25px rgba(212, 175, 55, 0.15);
}

.stanza-card:hover::before {
  opacity: 1;
}

.verse-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0;
  width: 100%;
}

.verse-line {
  font-family: var(--font-editorial);
  font-size: clamp(1.15rem, 5.2vw, 2.1rem);
  font-weight: 600;
  letter-spacing: clamp(0.02em, 0.8vw, 0.07em);
  color: var(--gold-100);
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
  transition: color 0.3s ease;
}

.verse-line:hover {
  color: var(--gold-300);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.highlight-gold {
  color: var(--gold-300);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Monumental Chorus Shrine */
.chorus-altar-card {
  position: relative;
  background: radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.15), rgba(12, 10, 7, 0.96) 75%);
  border: 2px solid var(--gold-400);
  border-radius: 20px;
  padding: clamp(2.25rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2.5rem);
  text-align: center;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.25), inset 0 0 35px rgba(212, 175, 55, 0.1);
  overflow: hidden;
  width: 100%;
}

.altar-halo {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: min(300px, 90vw);
  height: 140px;
  background: radial-gradient(ellipse, rgba(255, 215, 0, 0.35), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.altar-badge {
  display: inline-block;
  font-size: clamp(0.65rem, 2vw, 0.72rem);
  letter-spacing: 0.25em;
  color: #120c02;
  background: linear-gradient(90deg, #FFE082, #D4AF37);
  font-weight: 800;
  padding: 0.3rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.chorus-body {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  width: 100%;
}

.chorus-line {
  font-family: var(--font-display);
  font-size: clamp(1rem, 4.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: clamp(0.03em, 0.8vw, 0.08em);
  color: #FFFFFF;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  word-break: break-word;
  overflow-wrap: break-word;
}

.final-worship {
  color: var(--gold-300);
  text-shadow: 0 0 25px rgba(246, 184, 52, 0.6);
  font-weight: 900;
}

.altar-sigil {
  font-size: 1.4rem;
  color: var(--gold-400);
  letter-spacing: 0.4rem;
  opacity: 0.85;
}

/* Finale Card & Author Signature */
.finale-card {
  text-align: center;
}

.finale-body {
  margin-bottom: 1.25rem;
}

.epic-line {
  font-size: clamp(1.25rem, 5.5vw, 2.3rem);
  font-weight: 700;
  color: var(--gold-200);
}

.finale-divider {
  color: var(--gold-400);
  letter-spacing: 1rem;
  margin: 1.25rem 0 2rem;
  font-size: 1.1rem;
}

.echoed-chorus .chorus-line {
  font-size: clamp(0.95rem, 3.8vw, 1.5rem);
}

.author-signature {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.author-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* ==========================================================================
   Section: Interaktivni Degustacijski Pladenj
   ========================================================================== */
.section-pladenj {
  position: relative;
  padding: 5rem 1.25rem;
  z-index: 2;
  background: radial-gradient(ellipse at 50% 20%, rgba(26, 22, 15, 0.7), transparent 80%);
  overflow-x: hidden;
  width: 100%;
}

.platter-interface {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.cheese-pills {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
  width: 100%;
}

.cheese-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 40px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cheese-pill:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-200);
  border-color: var(--gold-400);
}

.cheese-pill.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(170, 130, 10, 0.35));
  border-color: var(--gold-400);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.platter-display-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  padding: clamp(1.75rem, 4.5vw, 3rem);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-deep);
  align-items: center;
  width: 100%;
}

.platter-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.cheese-showpiece {
  position: relative;
  width: min(180px, 50vw);
  height: min(180px, 50vw);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 215, 0, 0.2), rgba(10, 8, 6, 0.8));
  border: 1px solid var(--border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.2), 0 10px 30px rgba(0, 0, 0, 0.6);
}

.platter-badge-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
  filter: blur(15px);
  pointer-events: none;
}

.platter-icon-art {
  font-size: clamp(3.2rem, 10vw, 5rem);
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.8));
  transition: transform 0.4s ease;
}

.cheese-showpiece:hover .platter-icon-art {
  transform: scale(1.15) rotate(10deg);
}

.verse-connection {
  text-align: center;
  width: 100%;
}

.connect-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.connect-quote {
  font-family: var(--font-editorial);
  font-size: clamp(1.1rem, 3.5vw, 1.3rem);
  font-weight: 700;
  color: var(--gold-300);
}

.cheese-origin-badge {
  font-size: clamp(0.65rem, 2vw, 0.72rem);
  letter-spacing: 0.2em;
  color: var(--gold-400);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.cheese-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4.5vw, 1.85rem);
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

.cheese-desc {
  font-size: clamp(0.85rem, 2.6vw, 0.95rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.tasting-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  width: 100%;
}

.spec-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
}

.spec-label {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.spec-value {
  font-size: clamp(0.75rem, 2.2vw, 0.82rem);
  font-weight: 600;
  color: var(--gold-200);
  word-break: break-word;
}

.btn-sample {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-400);
  border-radius: 40px;
  color: var(--gold-100);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-sample:hover {
  background: var(--gold-400);
  color: #1a1202;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   Section: Oltar Čaščenja & Kultni Števec iz 2006
   ========================================================================== */
.section-oltar {
  position: relative;
  padding: 5rem 1.25rem;
  z-index: 2;
  text-align: center;
  overflow-x: hidden;
  width: 100%;
}

.altar-holy-stage {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-altar);
  border: 2px solid var(--gold-500);
  border-radius: 28px;
  padding: clamp(2rem, 5.5vw, 4.5rem) clamp(1rem, 4vw, 2.5rem);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.25), inset 0 0 40px rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.sanctuary-crest {
  margin-bottom: 1.25rem;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)); }
  100% { transform: scale(1.05); filter: drop-shadow(0 0 25px rgba(246, 184, 52, 0.6)); }
}

.altar-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5.5vw, 3rem);
  font-weight: 700;
  letter-spacing: clamp(0.04em, 1vw, 0.08em);
  color: var(--gold-100);
  margin-bottom: 0.85rem;
  word-break: break-word;
}

.altar-subtext {
  font-family: var(--font-editorial);
  font-size: clamp(1.05rem, 3.2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 2.25rem;
  line-height: 1.5;
  padding: 0 0.5rem;
}

/* Pedestal Counter */
.counter-pedestal {
  background: rgba(8, 7, 5, 0.85);
  border: 1px solid var(--border-bright);
  border-radius: 18px;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(0.75rem, 3.5vw, 2.5rem);
  display: inline-block;
  margin-bottom: 2.5rem;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.8), 0 8px 30px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 460px;
}

.pedestal-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: clamp(0.62rem, 2vw, 0.75rem);
  letter-spacing: clamp(0.08em, 1.5vw, 0.22em);
  color: var(--gold-400);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
  line-height: 1.3;
}

.digital-odometer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}

.odometer-digits {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(1.8rem, 8vw, 4.2rem);
  font-weight: 900;
  letter-spacing: clamp(0.05em, 1vw, 0.15em);
  color: var(--gold-300);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  padding: 0 0.4rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  max-width: 100%;
}

.odometer-unit {
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pedestal-meta {
  font-size: clamp(0.72rem, 2.2vw, 0.8rem);
  color: var(--text-muted);
}

.pedestal-meta em {
  color: var(--gold-200);
}

/* Big Ritual Worship Button */
.altar-interactive-core {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  width: 100%;
}

.btn-worship-ritual {
  position: relative;
  background: linear-gradient(135deg, #FFDF7A, #E5A82B 50%, #9C6C00);
  border: 2px solid #FFF2B2;
  border-radius: 50px;
  padding: clamp(1rem, 3.5vw, 1.25rem) clamp(1.25rem, 5vw, 3.5rem);
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5), inset 0 2px 10px rgba(255, 255, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 100%;
  width: auto;
}

.btn-worship-ritual:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 50px rgba(246, 184, 52, 0.7);
}

.btn-worship-ritual:active {
  transform: translateY(2px) scale(0.98);
}

.btn-inner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.worship-icon {
  font-size: 2rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.worship-text {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 3.8vw, 1.25rem);
  font-weight: 900;
  letter-spacing: clamp(0.06em, 1.2vw, 0.15em);
  color: #1a1002;
  word-break: break-word;
}

.worship-sub {
  font-size: clamp(0.65rem, 2.2vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #4d3300;
  text-align: center;
}

.worship-message {
  min-height: 28px;
  font-family: var(--font-editorial);
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  color: var(--gold-300);
  letter-spacing: 0.04em;
  transition: opacity 0.4s ease;
  padding: 0 0.5rem;
  line-height: 1.4;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  background: #050403;
  border-top: 1px solid var(--border-subtle);
  padding: clamp(3rem, 6vw, 5rem) 1.25rem 2.5rem;
  z-index: 2;
  overflow-x: hidden;
  width: 100%;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.footer-brand .footer-crest {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  letter-spacing: 0.12em;
  color: var(--gold-300);
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: clamp(0.8rem, 2.5vw, 0.85rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold-300);
}

.footer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  width: 100%;
}

.cheese-motto {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold-400);
}

/* ==========================================================================
   Animations & Scroll Reveals
   ========================================================================== */
.reveal-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.glow-pulse {
  animation: subtlePulse 3s ease-in-out infinite alternate;
}

@keyframes subtlePulse {
  from { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); }
  to { box-shadow: 0 6px 25px rgba(246, 184, 52, 0.6); }
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Breakpoints
   ========================================================================== */

/* Tablets & Small Laptops (<= 860px) */
@media (max-width: 860px) {
  .nav-links {
    display: none; /* Hide middle links to avoid any horizontal wrap/overflow */
  }

  .nav-container {
    padding: 0.65rem 1rem;
  }

  .brand-crest {
    gap: 0.5rem;
  }

  .crest-symbol {
    font-size: 1.4rem;
  }

  .crest-title {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .crest-sub {
    display: none; /* Hide small subtitle on tablets/phones to preserve space */
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .btn-icon {
    padding: 0.4rem 0.65rem;
  }

  .btn-icon .btn-label {
    display: none; /* Icon only */
  }

  .btn-primary {
    padding: 0.45rem 0.95rem;
    font-size: 0.72rem;
  }

  .platter-display-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.25rem;
    gap: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Mobile Phones (<= 640px) */
@media (max-width: 640px) {
  .hero-section {
    padding: 6rem 1rem 3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 280px;
    gap: 0.75rem;
  }

  .btn-luxury,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .section-liturgija,
  .section-pladenj,
  .section-oltar {
    padding: 3.5rem 1rem;
  }

  .cheese-pills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .cheese-pill {
    width: 100%;
    justify-content: center;
    padding: 0.55rem 0.4rem;
    font-size: 0.76rem;
    white-space: normal;
    text-align: center;
  }

  .tasting-specs {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .btn-sample {
    width: 100%;
    justify-content: center;
  }

  .btn-worship-ritual {
    width: 100%;
    max-width: 320px;
    padding: 1rem 1.25rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.65rem;
  }
}

/* Very Small Mobile Screens (<= 380px) */
@media (max-width: 380px) {
  .nav-container {
    padding: 0.5rem 0.75rem;
  }

  .crest-title {
    font-size: 0.75rem;
  }

  .btn-primary {
    padding: 0.35rem 0.75rem;
    font-size: 0.68rem;
  }

  .hero-cheese-stage {
    width: 220px;
    height: 220px;
  }

  .stanza-card {
    padding: 1.5rem 0.85rem;
  }

  .chorus-altar-card {
    padding: 2rem 0.85rem;
  }

  .altar-holy-stage {
    padding: 1.75rem 0.85rem;
  }

  .counter-pedestal {
    padding: 1rem 0.65rem;
  }

  .odometer-digits {
    font-size: 1.7rem;
    letter-spacing: 0.04em;
  }
}

/* ==========================================================================
   Floating Luxury Sacred Music Player Widget
   ========================================================================== */
.music-floating-widget {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(14, 12, 9, 0.94);
  border: 1px solid var(--border-bright);
  border-radius: 40px;
  padding: 0.45rem 1rem 0.45rem 0.65rem;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.music-floating-widget:hover {
  border-color: var(--gold-400);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(246, 184, 52, 0.35);
  transform: translateY(-2px);
}

.music-floating-widget.is-waiting {
  border-color: rgba(212, 175, 55, 0.5);
  animation: waitingGlow 2.4s infinite ease-in-out;
}

.music-floating-widget.is-waiting .eq-bar {
  opacity: 0.6;
}

@keyframes waitingGlow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 10px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.35);
  }
  50% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 22px rgba(246, 184, 52, 0.45);
    border-color: var(--gold-400);
  }
}

.music-widget-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: var(--text-primary);
  text-align: left;
  padding: 0.2rem 0;
}

.music-eq-waves {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 18px;
  width: 18px;
  padding-bottom: 2px;
}

.eq-bar {
  width: 2.5px;
  background: var(--gold-400);
  border-radius: 2px;
  height: 4px;
  transition: height 0.2s ease;
}

.music-floating-widget.is-playing .bar-1 {
  animation: eqBounce 1.2s ease-in-out infinite alternate;
}
.music-floating-widget.is-playing .bar-2 {
  animation: eqBounce 0.75s ease-in-out infinite alternate 0.2s;
}
.music-floating-widget.is-playing .bar-3 {
  animation: eqBounce 1.4s ease-in-out infinite alternate 0.4s;
}
.music-floating-widget.is-playing .bar-4 {
  animation: eqBounce 0.95s ease-in-out infinite alternate 0.1s;
}

@keyframes eqBounce {
  0% { height: 4px; }
  100% { height: 18px; }
}

.music-info {
  display: flex;
  flex-direction: column;
}

.music-track-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold-200);
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1.2;
}

.music-track-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.music-track-sub strong {
  color: var(--gold-400);
}

.music-volume-control {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-left: 0.65rem;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.vol-icon {
  font-size: 0.85rem;
  user-select: none;
}

.music-volume-control input[type="range"] {
  accent-color: var(--gold-400);
  width: 60px;
  height: 4px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .music-floating-widget {
    bottom: 0.85rem;
    left: 0.85rem;
    padding: 0.35rem 0.75rem 0.35rem 0.5rem;
    gap: 0.5rem;
    max-width: calc(100vw - 1.7rem);
  }
  .music-volume-control input[type="range"] {
    width: 45px;
  }
  .music-track-title {
    font-size: 0.7rem;
  }
  .music-track-sub {
    font-size: 0.6rem;
  }
}
