/* ========== COMBINED VINTAGE STYLES ========== */


/* ---------------- Base Typography ---------------- */
body {
  font-family: 'Linden Hill', serif;
  background-color: #F1E4C2;
}
h1, h2, h3, .font-display {
  font-family: 'DM Serif Display', serif;
}

nav a {
  font-family: 'Special Elite', cursive;
  font-size: 1.25rem;
  position: relative;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
nav a:hover {
  color: #FFD8B1;
  text-shadow: 
    0 0 3px #FFD8B1,
    0 0 6px #D67A3D,
    0 0 9px #D67A3D,
    0 0 12px #FFD8B1,
    0 0 20px #D67A3D;
  animation: flicker 1.2s infinite alternate;
}

@keyframes flicker {
  0% { opacity: 1; }
  45% { opacity: 0.7; }
  55% { opacity: 0.5; }
  60% { opacity: 1; }
  100% { opacity: 0.85; }
}

.text-vintage-title {
  font-size: 1.75rem;
  color: #b91c1c;
  text-transform: uppercase;
  text-shadow: 1px 1px #000;
  font-weight: bold;
}

.link-vintage {
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}
.link-vintage:hover {
  color: #facc15;
  text-shadow: 0 0 4px #facc15;
}

.underline-deco {
  text-decoration: underline dotted #A4443D 1px;
  text-underline-offset: 4px;
}


/* ---------------- Buttons ---------------- */
.btn-vintage,
.vintage-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  text-align: center;
  font-family: 'Special Elite', serif;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  display: inline-block;
  text-decoration: none;
  background-color: #6b4e2f;
}
.btn-vintage:hover,
.vintage-btn:hover {
  transform: scale(1.05);
  background-color: #5c3f22;
}

.btn-wa {
  background-color: #16a34a;
}
.btn-wa:hover {
  background-color: #15803d;
}

.btn-telp {
  background-color: #2563eb;
}
.btn-telp:hover {
  background-color: #1d4ed8;
}

.btn-tiket {
  background-color: #374151;
}
.btn-tiket:hover {
  background-color: #1f2937;
}

.typing-buttons a {
  position: relative;
  overflow: hidden;
}

.typing-buttons a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  animation: glowPulse 2s ease-in-out infinite;
  pointer-events: none;
}


/* ---------------- Animation ---------------- */
.glow-pulse {
  animation: glowPulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px #fff4, 0 0 20px #fff5;
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 5px #fff2, 0 0 10px #fff3;
  }
  50% {
    box-shadow: 0 0 15px #fff4, 0 0 25px #fff5;
  }
}

.typing-effect,
.typing-buttons a span {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 3s steps(40, end) infinite;
  border-right: 2px solid white;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}


/* ---------------- Layout ---------------- */
.footer-vintage {
  background-color: #fef7e0;
  border-top: 1px solid #c9b18d;
  font-family: 'Special Elite', serif;
  color: #3e3e3e;
  font-size: 0.875rem;
}

/* Responsive Nav */
header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.mobile-menu {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  background: #FAF9F5;
  height: 3px;
  width: 24px;
  border-radius: 1px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    background: #4A2C2A;
    padding: 10px;
    text-align: right;
    width: 200px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease-in-out;
  }
  .mobile-menu.active {
    transform: scaleY(1);
  }
  .mobile-menu a {
    display: block;
    padding: 8px 0;
    color: #FFD8B1;
    font-family: 'Special Elite', cursive;
    text-decoration: none;
    font-size: 1.1rem;
  }
  .mobile-menu a:hover {
    text-shadow: 0 0 5px #FFD8B1;
  }
}
/* FONT VINTAGE */
.font-vintage {
  font-family: 'Special Elite', monospace;
}

/* BUTTON VINTAGE */
.vintage-btn {
  @apply px-5 py-2.5 rounded-2xl text-sm font-semibold shadow-md transition duration-200;
  font-family: 'Special Elite', monospace;
}
