@font-face {
  font-family: 'Sloop Script';
  src: url('/public/fonts/Sloop Script Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Modern Wedding Site Styling */
:root {
  --dark-walnut: #582f0e;
  --saddle-brown: #7f4f24;
  --toffee-brown: #936639;
  --camel: #a68a64;
  --khaki-beige: #b6ad90;
  --dry-sage: #c2c5aa;
  --dry-sage-2: #a4ac86;
  --dusty-olive: #656d4a;
  --ebony: #414833;
  --charcoal-brown: #333d29;
  --beige: #f3dbb9;
  --october: #8c2e1c;
  --muted-camel: #a28558;
  --muted-rose: #420508;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /*background: white; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-menu a {
  color: var(--beige);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--beige);
  color: rgb(66, 5, 5);
}

/* Sections */
section {
  padding: 40px 20px 60px;
  min-height: auto;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-section {
  position: relative;
  /* Remove background-image from here */
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/public/images/DSC01967-1.jpg');
  background-size: cover;
  background-position: center 80%;
  filter: brightness(0.4);
  /* Lower brightness */
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(66, 5, 5, 0.35);
  /* Red overlay */
  z-index: 1;
  pointer-events: none;
}

.hero-section>* {
  position: relative;
  z-index: 2;
}

.hero-container {
  animation: fadeIn 0.8s ease-in;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.couple-names {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 4em;
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
  font-family: "Sloop Script", serif;
  font-size: 3em;
  color: var(--beige);
  margin-top: 40px;
  font-weight: 400;
  text-align: center;
}

.wedding-date {
  /*background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px); 
  border-radius: 15px;*/
  padding: 30px;
  color: var(--beige);
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* keeps them on the same Y-level */
  margin-top: auto;
  /* pushes it to the bottom */
  margin-bottom: 10px;
}

.date-text {
  font-family: "Hubbali", sans-serif;
  font-size: 2em;
}

.time-text {
  font-family: "Hubbali", sans-serif;
  font-size: 2em;
  font-weight: 300;
}

/* Details Section */
.details-section {
  background: var(--muted-camel);
  color: var(--muted-rose);
  font-family: "Hubbali", sans-serif;
  text-align: center;
}

.details-section h1 {
  font-size: 2.5em;
  color: var(--muted-rose);
  font-family: "Sorts Mill Goudy", serif;
  text-align: center;
}

.details-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  /* Stretch all items to have the same height */
  gap: 20px;
  /* Adds spacing between sections */
}

.details-grid-section {
  flex: 1;
  /* Equal space for all sections */
  display: flex;
  flex-direction: column;
  /* Ensures content is stacked vertically */
  align-items: center;
  /* Centers elements horizontally */
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

.details-label {
  font-family: "Sloop Script", serif;
  font-size: 3em;
  font-weight: 400;
  text-align: center;
}

.details-desc {
  font-family: "Hubbali", sans-serif;
}

.detail-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--dusty-olive);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-card h3 {
  color: var(--ebony);
  margin-bottom: 20px;
  font-size: 1.5em;
}

.detail-card p {
  margin-bottom: 10px;
  color: #666;
}

/* Venue Section */
.venue-section {
  background: #f8f9fa;
}

.venue-info {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.venue-info h3 {
  color: var(--ebony);
  font-size: 2em;
  margin-bottom: 20px;
}

.venue-address {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.venue-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}

.venue-details p {
  margin-bottom: 10px;
  color: #666;
}

/* Accommodations Section */
.accommodations-section {
  background: var(--muted-camel);
  color: var(--muted-rose);
  font-family: "Hubbali", sans-serif;
  text-align: center;
}
.accommodations-section h1 {
  font-size: 2.5em;
  color: var(--muted-rose);
  font-family: "Sorts Mill Goudy", serif;
  text-align: left;
  margin-left: 10vw;
}
.accommodations-section h3 {
  color: var(--muted-rose);
  margin-top: 0px;
  margin-bottom: 0px;
}
.accommodations-section a{
  color: var(--muted-rose);
  font-family: "Sorts Mill Goudy", serif;
  text-decoration: underline;
  font-weight: bold;
}
.section-intro {
  text-align: center;
  font-size: 1.1em;
  color: #666;
  margin-bottom: 40px;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.hotel-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  border-top: 4px solid var(--toffee-brown);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hotel-card h3 {
  color: var(--toffee-brown);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.hotel-address {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}

.hotel-rate {
  color: var(--dusty-olive);
  font-weight: 600;
  font-size: 1.1em;
  margin-top: 15px;
}

.booking-deadline {
  color: #dc3545;
  font-style: italic;
  margin-top: 10px;
}

.accommodations-note {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: #fff3cd;
  border-radius: 10px;
  color: #856404;
}

/* RSVP Section */
.rsvp-section {
  background: var(--beige);

  padding: 60px 20px;
  
}
.rsvp-section h1 {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 2.5em;
  margin-bottom: 0;
  color: var(--muted-rose);
}
.rsvp-section .container {
  padding: 40px;
  max-width: 600px;
}

/* Addressee Name Styling */
.addressee-name {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 2em;
  color: var(--muted-rose);
  text-align: center;
  margin: 20px 0;
  font-weight: 400;
}

/* RSVP Status Display for Existing RSVPs */
.rsvp-status-display {
  margin: 20px 15%;
}

.rsvp-status {
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-family: "Sorts Mill Goudy", serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rsvp-status .status-text {
  font-size: 1.2em;
  font-weight: 600;
}

.yes-status {
  background: var(--dry-sage);
  border: 3px solid var(--dusty-olive);
  color: var(--ebony);
}

.no-status {
  background: var(--saddle-brown);
  border: 3px solid var(--dark-walnut);
  color: var(--beige);
}

.maybe-status {
  background: var(--khaki-beige);
  border: 3px solid var(--camel);
  color: var(--charcoal-brown);
}

/* Toggle Buttons */
.toggle-buttons {
  display: flex;
  justify-content: space-evenly;
  gap: 15px;
  margin-top: 10px;
  font-family: "Sorts Mill Goudy", serif;
}

.toggle-button {
  background: white;
  border: 3px solid var(--khaki-beige);
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.toggle-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toggle-button .toggle-text {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--charcoal-brown);
  font-family: "Hubbali", sans-serif;
}

/* Active state for YES button */
.toggle-button[data-value="YES"].active {
  background: var(--dry-sage);
  border-color: var(--dusty-olive);
  box-shadow: 0 4px 12px rgba(101, 109, 74, 0.3);
}

.toggle-button[data-value="YES"].active .toggle-text {
  color: var(--ebony);
}

/* Active state for NO button */
.toggle-button[data-value="NO"].active {
  background: var(--saddle-brown);
  border-color: var(--dark-walnut);
  box-shadow: 0 4px 12px rgba(88, 47, 14, 0.3);
}

.toggle-button[data-value="NO"].active .toggle-text {
  color: var(--beige);
}

.center{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 10px;
}

.divider {
  margin-left: 33%;
  margin-right: 33% ;
  display: flex;             /* Enable flexbox */
  justify-content: center;   /* Horizontal centering */
  align-items: center;       /* Vertical centering */
}
.divider img {
  width: 100%;;
}
/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.footer p {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.footer-names {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--dry-sage-2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  color: var(--beige);
  text-align: center;
  margin-bottom: 30px;
  font-size: 2.5em;
  font-weight: 600;
}

h2 {
  color: var(--beige);
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 1.8em;
}

h3 {
  color: var(--beige);
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 1.3em;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--dusty-olive);
  box-shadow: 0 0 0 3px rgba(101, 109, 74, 0.1);
}

input[readonly] {
  background-color: white;
  color: var(--muted-rose);
  cursor: not-allowed;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

button,
.button {
  background: var(--muted-rose);
  color: white;
  padding: 7px 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: "Sorts Mill Goudy", serif;
}

button:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px var(--muted-rose);
}

button:active,
.button:active {
  transform: translateY(0);
}

.button-secondary {
  background: var(--october);
}

.button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px var(--muted-rose);
}

.button-danger {
  background: #dc3545;
}

.button-danger:hover {
  background: #c82333;
  box-shadow: 0 10px 20px rgba(220, 53, 69, 0.3);
}

.button-success {
  background: #28a745;
}

.button-success:hover {
  background: #218838;
  box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

.message {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message.info {
 /* background-color: var(--muted-rose); */
  color: var(--muted-rose);
  font-family: "Sorts Mill Goudy", serif;
  border: 2px solid var(--muted-rose);
  box-shadow: 5px 5px;
  text-align: center;
  margin: 0 15%;
  font-style: italic;
}

/* Admin Dashboard Styles */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.attendee-card {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.attendee-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.attendee-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.attendee-name {
  font-size: 1.3em;
  font-weight: 600;
  color: #333;
}

.invite-code {
  background: linear-gradient(135deg, var(--ebony) 0%, var(--dark-walnut) 100%);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9em;
}

.attendee-actions {
  display: flex;
  gap: 10px;
}

.attendee-actions button,
.attendee-actions a {
  padding: 8px 16px;
  font-size: 14px;
}

.attendee-info {
  margin-bottom: 10px;
  color: #666;
}

.rsvp-list {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #e9ecef;
}

.rsvp-item {
  background: white;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  border-left: 4px solid var(--dusty-olive);
}

.rsvp-item.attending-YES {
  border-left-color: #28a745;
}

.rsvp-item.attending-NO {
  border-left-color: #dc3545;
}

.rsvp-item.attending-MAYBE {
  border-left-color: #ffc107;
}

.rsvp-status {
  font-weight: 600;
  margin-bottom: 5px;
}

.no-rsvps {
  color: #999;
  font-style: italic;
  text-align: center;
  padding: 20px;
}

/* Form Groups */
.form-group {
  margin-bottom: 5px;
  font-family: "Sorts Mill Goudy", serif;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

/* Links */
a {
  color: var(--ebony);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-walnut);
  text-decoration: underline;
}

/* Loading state */
.loading {
  text-align: center;
  padding: 20px;
  color: var(--ebony);
}

.loading::after {
  content: '...';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {

  0%,
  20% {
    content: '.';
  }

  40% {
    content: '..';
  }

  60%,
  100% {
    content: '...';
  }
}

/* Hidden elements */
.hidden {
  display: none;
}

/* Photo Gallery Section */
.photo-gallery-section {
  background: var(--october);
}

/* Split Layout for Gallery */
.gallery-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: center;
}

.pinky img {
  width: 70%;
  height: 100%;
  object-fit: contain;
}

.gallery-text-section {
  color: var(--beige);
  padding: 20px;
}

.gallery-text-section h3 {
  color: var(--beige);
  font-size: 2em;
  margin-bottom: 20px;
  font-family: "Sorts Mill Goudy", serif;
}

.gallery-text-section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--beige);
  font-family: "Hubbali", sans-serif;
}

.gallery-carousel-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Photo Carousel Styles */
.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  padding: 0 50px;
}

.carousel-track {
  display: flex;
  gap: 0;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  padding-top: 10px;
  /* Space for hover translateY effect */
  padding-bottom: 15px;
  /* Space for box-shadow */
  width: 100%;
}

.carousel-track::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--ebony) 0%, var(--dark-walnut) 100%);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 25%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn-left {
  left: 0;
}

.carousel-btn-right {
  right: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.photo-placeholder {
  position: relative;
  background: #f8f9fa;
  border: 3px ridge var(--dusty-olive);
  border-radius: 15px;
  padding: 0;
  text-align: center;
  min-height: 400px;
  width: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms cubic-bezier(.2, .8, .2, 1), box-shadow 220ms cubic-bezier(.2, .8, .2, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  /* sits below overlays/text */
  transition: filter 220ms cubic-bezier(.2, .8, .2, 1);
}

/* blurred on hover/focus */
.photo-placeholder:hover::before,
.photo-placeholder:focus::before,
.photo-placeholder:focus-within::before {
  background-image: inherit;
  filter: blur(5px);
}

/* Hover / focus: translate card, show overlay, reveal text (fully opaque) */
.photo-placeholder:hover,
.photo-placeholder:focus,
.photo-placeholder:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  outline: none;
}

.photo-placeholder .overlay-text {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: auto;
}

.photo-placeholder:hover .overlay-text,
.photo-placeholder:focus .overlay-text,
.photo-placeholder:focus-within .overlay-text {
  opacity: 1;
  transform: translateY(0);
}

.photo-placeholder:focus-visible {
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Timeline Section */
.timeline-section {
  background: var(--beige);
  color: var(--october);
}

.timeline-section h1 {
  color: var(--october);
  font-size: 2.5em;
  font-family: "Sorts Mill Goudy", serif;
  text-align: left;
  margin-bottom: 0;
}
.date-subtitle{
  font-family: "Hubbali", sans-serif;
  font-size: 1em;
}
.cathedral img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hotel img {
  width: 30vw;
  object-fit: contain;
}
 .timeline {
      width: 60%;
      margin: 0 auto;
      padding: 20px 0;
    }

    .timeline-entry {
      display: flex;
      align-items: center;
      margin: 20px 0;
    }

    .timeline-entry .time {
      flex: 0 0 25%;
      text-align: left;
      font-family: "Sorts Mill Goudy", serif;
    }

    .timeline-entry .description {
      flex: 1;
      text-align: center;
      font-family: "Sloop Script", serif;
      font-size: 2em;
    }

    .timeline hr {
      border: none;
      height: 2px;
      background-color: var(--october);
      margin: 20px 0;
    }
    .accommodations hr {
      border: none;
      height: 1px;
      background-color: var(--muted-rose);
      margin: 20px 0;
    }
@media (max-width: 875px) {
  .divider {
    margin-left: 0;
    margin-right: 0;
  }
  .details-grid {
    flex-direction: column;
    /* Stack the sections vertically */
    height: auto;
    /* Adjust height automatically to fit content */
  }

  .details-grid-section {
    flex: none;
    /* Reset flex sizing */
    width: 100%;
    /* Make each section take up the full width */
  }
}

.more-info-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--october);
    color: var(--beige);
    overflow: hidden;
}

.more-info-section::before {
    content: '';
    position: absolute;
    top:  0;
    left: 0;
    width:  250px;
    height:  250px;
    background-image: url('/public/images/cupid.svg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.more-info-section::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: -5%;
    width: 250px;
    height: 250px;
    background-image: url('/public/images/wine.svg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.more-info-section .container {
    position: relative;
    z-index: 1;
}

.more-info-section .section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-family: "Sorts Mill Goudy", serif;
    margin-bottom: 0px;
}

.qa-list {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    text-align: center;
}
.qa-item {
    margin-left: 10vw;
    margin-right: 10vw;
}
.qa-item .question {
    font-size:  1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: "Sorts Mill Goudy", serif;
}

.qa-item .answer {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 0;
    margin-left: 0;
    margin-right:0;
    margin-bottom: 0;
    font-family: "Hubbali", sans-serif;
}
@media (max-width: 1200px) {
  .left {
    margin-right: 33vw !important;
  }
}
/* Responsive design */
@media (max-width: 768px) {
    .more-info-section::before,
    .more-info-section::after {
        width: 150px;
        height: 150px;
    }
    .more-info-section::after {
      bottom: 40%;
    }
    .more-info-section .section-heading {
        font-size: 2rem;
        margin-top: 7vh;
    }
    
    .qa-item .question {
        font-size: 1.2rem;
    }
    
    .qa-item .answer {
        font-size: 1rem;
    }
    .accommodations-section h1 {
      margin-left: 0;
      text-align: center;
    }
}
/* Responsive design */
@media (max-width: 768px) {
  .nav-menu {
    gap: 10px;
    padding: 10px;
  }

  .nav-menu a {
    padding: 6px 12px;
    font-size: 14px;
  }

  section {
    padding: 60px 15px 40px;
  }

  .hero-section {
    padding-top: 80px;
  }


  .date-text {
    font-size: 1.5em;
  }

  .time-text {
    font-size: 1.5em;
  }

  .wedding-date {
    padding: 20px;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .detail-card,
  .hotel-card,
  .venue-info {
    padding: 20px;
  }

  .rsvp-section .container {
    padding: 25px;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 1.5em;
  }

  .form-row {
    flex-direction: column;
  }

  .admin-header {
    flex-direction: column;
    align-items: stretch;
  }

  .attendee-actions {
    flex-wrap: wrap;
  }

  /* Carousel responsive */
  .gallery-split-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-text-section {
    text-align: center;
    padding: 10px 15px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .gallery-text-section h3 {
    font-size: 1.5em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-top: 10px;
  }

  .gallery-text-section p {
    font-size: 1em;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .gallery-carousel-section {
    max-width: 100%;
    overflow: hidden;
  }

  .carousel-container {
    padding: 0 40px;
    max-width: 100%;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .photo-placeholder {
    min-height: 300px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .couple-names {
    font-size: 2.3em;
  }

  .tagline {
    font-size: 2em;
  }

  .date-text {
    font-size: 1.3em;
  }

  .time-text {
    font-size: 1.3em;
  }

  .nav-menu {
    gap: 5px;
    padding: 8px;
  }

  .nav-menu a {
    padding: 5px 10px;
    font-size: 12px;
  }

  h2 {
    font-size: 1.3em;
  }

  .detail-card h3,
  .hotel-card h3 {
    font-size: 1.2em;
  }

  .gallery-text-section {
    padding: 10px 12px;
  }

  .gallery-text-section h3 {
    font-size: 1.3em;
    margin-top: 5px;
  }

  .gallery-text-section p {
    font-size: 0.95em;
    line-height: 1.6;
  }

  .carousel-container {
    padding: 0 35px;
  }

  .carousel-btn {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .photo-placeholder {
    min-height: 250px;
  }
}
