/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2d5f5d;
  --secondary-color: #d4c5a0;
  --dark-color: #1a3635;
  --light-color: #f5f3ed;
  --white: #ffffff;
  --text-dark: #2d5f5d;
  --text-light: #5a7876;
  --border-color: #d4c5a0;
  --success-color: #4caf50;
  --error-color: #f44336;
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-script: 'Great Vibes', cursive;
  
  --transition: all 0.3s ease;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

/* Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d5f5d 0%, #1a3635 100%);
  background-image: url('https://bmw.schrodinger.ninja/uploads/1763330609296-692833954.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-date {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-location {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  min-width: 100px;
}

.countdown-value {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  animation: bounce 2s infinite;
}

/* Photos Highlight Section */
.photos-highlight-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.photos-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-highlight-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-highlight-frame {
  background: var(--white);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  width: 100%;
}

.photo-highlight-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.photo-highlight-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* Story Section */
.story-section {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.story-timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: auto;
  text-align: justify;
  padding-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
  text-align: left;
  padding-left: 3rem;
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: calc(50% - 30px);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -44px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -44px;
}

.timeline-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Details Section */
.details-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.detail-card {
  background: var(--light-color);
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.detail-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.detail-card h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.detail-card p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.btn-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-link:hover {
  color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-color);
  border-color: var(--dark-color);
}

.btn-secondary:hover {
  background-color: var(--dark-color);
  color: var(--white);
}

/* RSVP Section */
.rsvp-section {
  padding: 6rem 0;
  background-color: var(--light-color);
  min-height: calc(100vh - 200px);
}

.rsvp-header {
  text-align: center;
  margin-bottom: 3rem;
}

.rsvp-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio-label {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.radio-label:hover {
  border-color: var(--primary-color);
  background-color: rgba(212, 175, 55, 0.05);
}

.radio-label input[type="radio"] {
  width: auto;
  margin-right: 1rem;
  accent-color: var(--primary-color);
}

.radio-label span {
  font-weight: 500;
}

.form-actions {
  margin-top: 2rem;
  text-align: center;
}

.form-actions button {
  width: 100%;
}

/* Success/Error Messages */
.success-message, .error-message {
  text-align: center;
  padding: 3rem;
}

.success-icon, .error-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1.5rem;
}

.success-icon {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--success-color);
}

.error-icon {
  background-color: rgba(244, 67, 54, 0.1);
  color: var(--error-color);
}

.success-message h3, .error-message h3 {
  margin-bottom: 1rem;
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
  background-color: var(--white);
  min-height: calc(100vh - 200px);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.empty-gallery {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
  z-index: 2001;
}

.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-nav button:hover {
  background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Upload Section */
.upload-section {
  padding: 6rem 0;
  background-color: var(--light-color);
  min-height: calc(100vh - 200px);
}

.upload-header {
  text-align: center;
  margin-bottom: 3rem;
}

.upload-container {
  max-width: 800px;
  margin: 0 auto;
}

.upload-area {
  border: 3px dashed var(--border-color);
  border-radius: 15px;
  padding: 4rem 2rem;
  text-align: center;
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.upload-area:hover,
.upload-area.drag-over {
  border-color: var(--primary-color);
  background-color: rgba(212, 175, 55, 0.05);
}

.upload-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.preview-area {
  margin-top: 2rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(244, 67, 54, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 1.2rem;
}

.upload-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.upload-progress {
  margin-top: 2rem;
}

.progress-bar {
  width: 100%;
  height: 30px;
  background-color: var(--border-color);
  border-radius: 15px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
  width: 0%;
}

#progressText {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
}

.upload-tips {
  margin-top: 3rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
}

.upload-tips ul {
  list-style: none;
  margin-top: 1rem;
}

.upload-tips li {
  padding: 0.5rem 0;
  color: var(--text-light);
}

/* FAQ Section */
.gyik-section {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-family: var(--font-body);
}

.faq-question:hover {
  color: var(--primary-color);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* Admin Section */
.admin-section {
  padding: 6rem 0;
  background-color: var(--light-color);
  min-height: calc(100vh - 200px);
}

.admin-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.rsvp-table-container {
  background: var(--white);
  border-radius: 10px;
  overflow-x: auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.rsvp-table {
  width: 100%;
  border-collapse: collapse;
}

.rsvp-table thead {
  background-color: var(--dark-color);
  color: var(--white);
}

.rsvp-table th,
.rsvp-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.rsvp-table tbody tr:hover {
  background-color: var(--light-color);
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.status-yes {
  background-color: rgba(76, 175, 80, 0.2);
  color: var(--success-color);
}

.status-no {
  background-color: rgba(244, 67, 54, 0.2);
  color: var(--error-color);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
}

.footer p {
  margin: 0.5rem 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Plane Journey Animation - Takeoff, Cruise, Landing */
@keyframes planeJourney {
  0% {
    left: -10%;
    top: 70%;
    transform: rotate(-45deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
    transform: rotate(-35deg);
  }
  20% {
    left: 15%;
    top: 20%;
    transform: rotate(-10deg);
    opacity: 0.7;
  }
  50% {
    left: 50%;
    top: 15%;
    transform: rotate(0deg);
    opacity: 0.8;
  }
  70% {
    left: 75%;
    top: 20%;
    transform: rotate(10deg);
    opacity: 0.7;
  }
  85% {
    left: 95%;
    top: 60%;
    transform: rotate(35deg);
    opacity: 0.6;
  }
  100% {
    left: 110%;
    top: 85%;
    transform: rotate(45deg);
    opacity: 0;
  }
}

/* Cloud Drift Animations - Left to Right */
@keyframes cloudDriftLeft {
  0% {
    left: -15%;
  }
  100% {
    left: 115%;
  }
}

/* Cloud Drift Animations - Right to Left */
@keyframes cloudDriftRight {
  0% {
    left: 115%;
  }
  100% {
    left: -15%;
  }
}

/* Travel Theme Decorations */
.story-intro {
  position: relative;
}

/* Sky Animation Container */
.sky-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Plane Animation */
.plane {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0;
  animation: planeJourney 25s ease-in-out infinite;
}

.plane img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* Cloud Animations */
.cloud {
  position: absolute;
  width: 120px;
  height: 80px;
  opacity: 0.7;
}

.cloud img {
  width: 100%;
  height: 100%;
  filter: brightness(1.2) drop-shadow(1px 1px 2px rgba(0,0,0,0.1));
}

/* Clouds from left to right */
.cloud-1 {
  top: 15%;
  animation: cloudDriftLeft 40s linear infinite;
}

.cloud-2 {
  top: 45%;
  animation: cloudDriftLeft 55s linear infinite;
  animation-delay: -15s;
}

.cloud-3 {
  top: 70%;
  animation: cloudDriftLeft 50s linear infinite;
  animation-delay: -30s;
}

/* Clouds from right to left */
.cloud-4 {
  top: 25%;
  animation: cloudDriftRight 48s linear infinite;
  animation-delay: -10s;
}

.cloud-5 {
  top: 60%;
  animation: cloudDriftRight 60s linear infinite;
  animation-delay: -25s;
}

.section-title::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .countdown {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .countdown-item {
    min-width: 65px;
    padding: 0.75rem 0.5rem;
  }

  .countdown-value {
    font-size: 1.5rem;
  }

  .countdown-label {
    font-size: 0.7rem;
  }

  /* Photos Highlight mobile styles */
  .photos-highlight-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: 90%;
    text-align: justify;
    margin-left: 2.0rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  
  .story-timeline::before {
    left: 10px;
  }
  
  .timeline-content::before,
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -36px;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .rsvp-form-container {
    padding: 2rem 1.5rem;
  }
  
  .success-actions {
    flex-direction: column;
  }
  
  .upload-actions {
    flex-direction: column;
  }
  
  .rsvp-table {
    font-size: 0.875rem;
  }
  
  .rsvp-table th,
  .rsvp-table td {
    padding: 0.75rem 0.5rem;
  }

  /* Smaller animations on mobile */
  .plane {
    width: 50px;
    height: 50px;
  }

  .cloud {
    width: 80px;
    height: 55px;
  }

  /* FAQ mobile styles */
  .faq-question {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .faq-icon {
    font-size: 1.3rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
}

/* Login Section */
.login-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
}

.login-container {
  max-width: 450px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(45, 95, 93, 0.1);
}

.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header h1 {
  color: var(--dark-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-control {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition);
  background-color: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45, 95, 93, 0.1);
}

.btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.error-message {
  background-color: #ffebee;
  color: #c62828;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #c62828;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .login-container {
    padding: 2rem;
    margin: 0 1rem;
  }

  .login-header h1 {
    font-size: 1.75rem;
  }
}
