/* === Wedding Website Styles === */
/* Inspired by Minted "Elizabeth" template - Olive colorway */

/* Custom Hosted Font Face - 'Slight' (Canva Script Font) */
@font-face {
  font-family: 'Slight';
  src: url('fonts/Slight-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #5f663a;
  --color-text: #ece9d5;
  --color-accent: #bdc786;
  --color-accent-hover: #d4de9e;
  --color-muted: #a8a88a;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Josefin Sans', sans-serif;
  --font-script: 'Slight', 'Great Vibes', cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--color-accent-hover);
}

/* Navigation */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-bg);
  border-bottom: 1px solid rgba(236, 233, 213, 0.15);
  padding: 0.5rem 2.5rem; /* More generous spacing for larger logo */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 56px; /* Expanded logo height for high visibility */
  width: auto;
  display: block;
  transition: opacity 0.25s ease;
}

.nav-logo a:hover img {
  opacity: 0.8;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

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

.nav-link.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

/* Main content */
#app {
  flex: 1;
}

/* Page sections */
.page-section {
  max-width: 1400px; /* Expand horizontally to fill widescreen layouts */
  margin: 0 auto;
  padding: 4.5rem 3rem;
  text-align: center;
  box-sizing: border-box;
}

.page-section p {
  max-width: 720px; /* Keep narrative text centered and highly readable */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.divider {
  width: 120px;
  height: 2px;
  background: var(--color-accent);
  margin: 2rem auto;
  opacity: 0.6;
}

.divider-small {
  width: 60px;
  height: 1px;
  background: var(--color-accent);
  margin: 1.5rem auto;
  opacity: 0.5;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--color-accent-hover);
  color: var(--color-bg);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4.5rem 2rem 2rem 2rem;
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3.5rem; /* Increased vertical space below subtitle */
  opacity: 0.8;
}

.hero-names {
  font-family: var(--font-script);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.25; /* Increased vertical space between names */
  letter-spacing: 0.05rem;
  margin: 1.5rem 0 3.5rem 0; /* Added spacing above/below Julian & Joy */
}

.hero-names .name-left {
  display: inline-block;
  transform: translate3d(-110px, 0, 0); /* Staggered further left */
}

.hero-names .name-right {
  display: inline-block;
  transform: translate3d(75px, 0, 0);
}

.hero-names .ampersand {
  display: block;
  font-size: 2.1rem;
  color: var(--color-accent);
  font-style: normal;
  margin: 0.5rem 0; /* Added vertical space around ampersand */
}

.hero-date {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-location {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* --- Chronological Itinerary Timeline --- */
.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 6rem;
  padding: 0 2rem 0 5rem; /* Generous left padding to make room for timeline track */
  box-sizing: border-box;
}

.timeline-line {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 3rem; /* Aligns line perfectly in the gutter */
  width: 2px;
  background: rgba(236, 233, 213, 0.12); /* Muted line background */
}

.timeline-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent); /* Active gold progress indicator */
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.1s ease-out;
}

.timeline-day-header {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-accent);
  margin: 3.5rem 0 2rem -1.75rem; /* Slightly overhangs left */
  font-weight: 300;
  position: relative;
  z-index: 2;
  text-align: left;
}

.timeline-day-header::before {
  content: '';
  position: absolute;
  left: -1.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-accent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr; /* Time column + event details column */
  gap: 2rem;
  margin-bottom: 3.2rem;
  position: relative;
  opacity: 0.35;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-item.active {
  opacity: 1;
  transform: translateY(0);
}

.timeline-marker {
  position: absolute;
  left: -2.35rem; /* Center aligned with timeline-line */
  top: 0.5rem;
  z-index: 3;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid rgba(236, 233, 213, 0.3);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.timeline-item.active .timeline-dot {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.3); /* Pop active dots */
  box-shadow: 0 0 8px var(--color-accent);
}

.timeline-time {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--color-accent);
  padding-top: 0.3rem;
  text-align: left;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(236, 233, 213, 0.08);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.timeline-item.active .timeline-content {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(236, 233, 213, 0.15);
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-family: var(--font-display);
}

.timeline-content p {
  margin-bottom: 0;
  line-height: 1.7;
  opacity: 0.85;
  font-size: 1rem;
}

.timeline-dress-code {
  margin-top: 0.75rem !important;
  font-size: 0.9rem !important;
  opacity: 0.75 !important;
  border-top: 1px solid rgba(236, 233, 213, 0.08);
  padding-top: 0.75rem;
}

.timeline-dress-code a {
  color: var(--color-accent);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .timeline-wrapper {
    padding: 0 1rem 0 3.5rem;
  }
  .timeline-line {
    left: 2rem;
  }
  .timeline-marker {
    left: -1.35rem; /* Centered around line */
  }
  .timeline-day-header {
    font-size: 1.5rem;
    margin-left: -0.25rem;
  }
  .timeline-day-header::before {
    left: -1.85rem;
  }
  .timeline-item {
    grid-template-columns: 1fr; /* Stack time above event content on tiny screens */
    gap: 0.5rem;
    margin-bottom: 2.5rem;
  }
  .timeline-time {
    font-size: 1rem;
    padding-top: 0;
  }
  .timeline-content {
    padding: 1.25rem 1.5rem;
  }
}

/* Music form */
.music-form {
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(236, 233, 213, 0.1);
  border: 1px solid rgba(236, 233, 213, 0.3);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.25s ease;
}

.form-group input::placeholder {
  color: rgba(236, 233, 213, 0.4);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.music-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.music-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.form-message.success { color: var(--color-accent); }
.form-message.error { color: #e8a0a0; }

/* FAQ */
.faq-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(236, 233, 213, 0.15);
  padding: 1.25rem 0;
  cursor: pointer;
}

.faq-item:first-child {
  border-top: 1px solid rgba(236, 233, 213, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.faq-toggle {
  font-size: 1.3rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.faq-answer {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  padding-right: 2rem;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Travel & Registry Layout */
.info-block {
  margin: 0 auto;
  text-align: left;
}

.info-block h3 {
  color: var(--color-accent);
}

.info-block ul {
  padding-left: 1.5rem;
  line-height: 2;
}

.registry-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.registry-card {
  flex: 1 1 320px;
  max-width: 480px;
  background-color: rgba(236, 233, 213, 0.03);
  border: 1px solid rgba(236, 233, 213, 0.08);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
}

.registry-card h3 {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}

.registry-card p {
  opacity: 0.85;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
  .top-nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-list {
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  .nav-link {
    font-size: 0.7rem;
  }

  .hero-names {
    font-size: 3.8rem;
    margin: 1.2rem 0 2.5rem 0;
  }
  .hero-names .name-left {
    transform: translate3d(-50px, 0, 0); /* Proportionally adjusted for mobile */
  }
  .hero-names .name-right {
    transform: translate3d(35px, 0, 0);
  }

  .hero {
    min-height: 50vh;
  }

  .page-section {
    padding: 3rem 1.5rem;
  }

  .page-title {
    font-size: 2rem;
  }
}

/* --- Page transitions --- */
.fade-in {
  animation: fadeIn 0.4s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Scroll-Driven Parallax Image Layout --- */
.scroll-image-container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 600px;
  margin: 3.5rem auto;
  border-radius: 16px; /* Smooth rounded window corners */
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  background: #1f2113; /* Deep fallback matching base color palette */
}

.parallax-img {
  width: 100%;
  height: 130%; /* Taller than parent viewport to allow smooth vertical translation */
  object-fit: cover;
  position: absolute;
  top: -15%;
  left: 0;
  will-change: transform;
  transform: scale(1.15); /* Base scale to cover margins during movement */
  transition: transform 0.15s cubic-bezier(0.1, 0.8, 0.3, 1); /* Ultra-smooth scrolling lag ease */
}

@media (max-width: 768px) {
  .scroll-image-container {
    height: 400px;
    margin: 2.5rem auto;
  }
}

@media (max-width: 480px) {
  .scroll-image-container {
    height: 280px;
  }
}

/* --- Scroll-Reveal Layout --- */
.reveal-container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 700px;
  margin: 4rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: transparent;
  padding: 0 2rem;
  box-sizing: border-box;
}

.reveal-image-wrapper {
  position: absolute;
  width: 75%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  z-index: 2;
  transition: transform 0.1s cubic-bezier(0.1, 0.8, 0.3, 1), width 0.1s ease;
  transform-origin: center center;
  background: #1f2113;
}

.reveal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reveal-text-content {
  position: absolute;
  right: 6%;
  width: 36%;
  opacity: 0;
  transform: translate3d(50px, 0, 0);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  z-index: 1;
  text-align: left;
}

@media (max-width: 900px) {
  .reveal-container {
    height: auto;
    flex-direction: column;
    overflow: visible;
    padding: 0 1rem;
    margin: 2.5rem auto;
  }

  .reveal-image-wrapper {
    position: relative;
    width: 100% !important;
    height: 400px;
    transform: none !important;
    margin-bottom: 2rem;
  }

  .reveal-text-content {
    position: relative;
    width: 100%;
    right: auto;
    opacity: 1 !important;
    transform: none !important;
    text-align: center;
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .reveal-image-wrapper {
    height: 280px;
  }
}

/* --- 3D Swirling Tornado Scroll Showcase --- */
.tornado-track {
  position: relative;
  width: 100%;
  height: 480vh; /* Scroll distance for smooth swirling rotation */
  background: transparent;
}

.tornado-viewport {
  position: sticky;
  top: 90px; /* Offset below top navigation bar */
  height: calc(100vh - 90px);
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.tornado-stage {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px; /* Essential for 3D depth perception */
  transform-style: preserve-3d;
}

.tornado-card {
  position: absolute;
  width: 310px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  background: #1f2113;
  will-change: transform, opacity, z-index;
  transition: border-color 0.3s ease;
  border: 2px solid rgba(236, 233, 213, 0.08);
  box-sizing: border-box;
}

.tornado-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.tornado-hint {
  margin-top: 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.5;
  animation: pulseSwirl 2s infinite ease-in-out;
}

@keyframes pulseSwirl {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 0.7; transform: translateY(5px); }
}

@media (max-width: 900px) {
  .tornado-track {
    height: auto !important; /* Stack vertically on tablets and mobile */
  }
  .tornado-viewport {
    position: relative !important;
    top: 0 !important;
    height: auto !important;
    padding: 3rem 1.5rem;
  }
  .tornado-stage {
    height: auto !important;
    flex-direction: column;
    gap: 2.5rem;
    perspective: none;
    transform-style: flat;
  }
  .tornado-card {
    position: relative !important;
    width: 100% !important;
    max-width: 400px;
    height: 480px !important;
    transform: none !important;
    opacity: 1 !important;
    z-index: 1 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  .tornado-hint {
    display: none;
  }
}

@media (max-width: 480px) {
  .tornado-card {
    height: 360px !important;
  }
}

/* --- Venue Apple-Style Interactive Sticky Scroll Showcase --- */
.venue-interactive-track {
  position: relative;
  width: 100%;
  height: 200vh; /* Determines length of the scrolling interaction */
  background: transparent;
}

.venue-sticky-viewport {
  position: sticky;
  top: 90px; /* Sits below top navigation bar */
  height: calc(100vh - 90px);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.venue-image-panel {
  position: absolute;
  width: 92%;
  height: 80vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  z-index: 2;
  background: #1f2113;
  will-change: transform, width, height;
}

.venue-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venue-text-panel {
  position: absolute;
  width: 40%;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  text-align: left;
  will-change: transform, opacity;
}

@media (max-width: 900px) {
  .venue-interactive-track {
    height: auto !important; /* Disables sticky effect on mobile viewports */
  }

  .venue-sticky-viewport {
    position: relative !important;
    top: 0 !important;
    height: auto !important;
    flex-direction: column;
    padding: 0 1.5rem 3rem;
  }

  .venue-image-panel {
    position: relative !important;
    width: 100% !important;
    height: 400px !important;
    transform: none !important;
    margin-bottom: 2rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }

  .venue-text-panel {
    position: relative !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    text-align: center;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .venue-image-panel {
    height: 280px !important;
  }
}



/* GPU-Accelerated Mobile Smooth Transitions */
@media (max-width: 900px) {
  .tornado-card, .venue-image-panel, .venue-text-panel {
    transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.25s ease !important;
    will-change: transform, opacity;
  }
}

/* Password Gate Screen Overlay styling */
#password-gate {
  position: fixed;
  inset: 0;
  background-color: var(--color-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
  padding: 2rem;
  color: var(--color-text);
  font-family: var(--font-body);
}

.password-card {
  max-width: 540px;
  width: 100%;
  text-align: center;
  background: transparent; /* Floating layout */
  border: none;
  box-shadow: none;
  padding: 1.5rem;
}

.password-logo {
  height: 50vh;
  min-height: 360px;
  max-height: 500px; /* Giant primary visual centerpiece */
  width: auto;
  margin-bottom: -2.5rem; /* Negative margin to counteract inner whitespace in the PNG graphic */
  opacity: 0.95;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.18));
}

/* Mobile responsive sizing for the massive logo */
@media (max-width: 600px) {
  .password-logo {
    height: 250px !important;
    margin-bottom: -1.5rem !important;
  }
  #password-form {
    max-width: 250px !important;
  }
}

#password-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 280px; /* Skinner horizontal layout */
  margin: 0 auto;
  width: 100%;
}

#password-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(0, 0, 0, 0.2); /* Solid dark transparent backdrop */
  border: 1px solid rgba(236, 233, 213, 0.45); /* Highly visible outline */
  border-radius: 4px;
  color: #ffffff; /* High contrast pure white text */
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
  outline: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

#password-input::placeholder {
  color: rgba(236, 233, 213, 0.5); /* Clear placeholder visibility */
}

#password-input:focus {
  border-color: var(--color-accent);
  background: rgba(0, 0, 0, 0.3);
}

/* Overriding autofill text color styling on browsers (Chrome/Safari) */
#password-input:-webkit-autofill,
#password-input:-webkit-autofill:hover,
#password-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px #3f4425 inset !important; /* Matches darker shade of olive */
  transition: background-color 5000s ease-in-out 0s;
}

.password-btn {
  width: 100%;
  padding: 0.9rem;
  background-color: var(--color-accent);
  border: none;
  border-radius: 4px;
  color: var(--color-bg);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.password-btn:hover {
  background-color: var(--color-accent-hover);
}

.password-error-msg {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 1.25rem;
  height: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}



