/* mobile.css: Optimized for screens 700px wide or less, matching theme */

/* General */
body {
  font-size: 1.08rem;
  padding: 0;
  background: linear-gradient(135deg, #f9f4e3 0%, #f0e6d2 100%);
  color: var(--dark-text);
  margin: 0;
}

/* Header */
header {
  padding: 2.2rem 0.7rem 3rem 0.7rem;
  border-radius: 0 0 16px 16px;
  text-align: center;
}

.header-content {
  padding: 0;
  max-width: 100%;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.15);
  text-align: center;
}

header p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

.divider {
  width: 60px;
  height: 3px;
  margin: 1.2rem auto;
  background: var(--gold, #d4af37);
  border-radius: 2px;
}

/* Navigation */
nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.2rem;
  align-items: center;
}

.nav-link {
  font-size: 1.08rem;
  padding: 0.7rem 0;
  border-radius: 24px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  color: var(--light-gold, #d4af37);
  background: rgba(212,175,55,0.08);
  text-align: center;
  display: block;
}

/* Section spacing */
section {
  padding: 2rem 0.7rem;
  max-width: 100%;
}

/* Section header */
.section-header h2 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  text-align: center;
}

/* About section */
#about .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0.4rem;
  gap: 1rem;
}

.image-container {
  margin: 0 auto 1.2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
  max-width: 340px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.parallax-img {
  width: 100%;
  max-width: 340px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: none;
}

.text-content {
  padding: 0;
  text-align: center;
}

/* Features section */
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  margin: 0 auto;
}

.feature-card {
  width: 100%;
  max-width: 340px;
  background: white;
  padding: 1.2rem 0.7rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  color: var(--gold, #d4af37);
}

/* Rituals section */
.ritual-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  margin: 0 auto 1.5rem auto;
}

.ritual-card {
  width: 100%;
  max-width: 340px;
  background: white;
  padding: 1.2rem 0.7rem;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-top: 3px solid var(--gold, #d4af37);
  text-align: center;
  margin: 0 auto;
}

.ritual-card h3 {
  font-size: 1.12rem;
  color: var(--maroon, #800000);
  margin-bottom: 0.4rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
}
.ritual-card h3::after {
  content: '';
  display: block;
  margin: 0.4rem auto 0 auto;
  width: 36px;
  height: 2px;
  background: var(--gold, #d4af37);
  border-radius: 1px;
}
.ritual-card p {
  font-size: 0.98rem;
  color: var(--dark-text, #222);
  text-align: center;
}
.quote {
  padding: 1.2rem 0.7rem;
  border-radius: 12px;
  text-align: center;
  margin: 0 auto 1.5rem auto;
  max-width: 340px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--maroon, #800000) 0%, #5a0a1d 100%);
  color: #fff;
}
.quote blockquote {
  font-size: 1.08rem;
  color: #fff;
  font-style: italic;
  margin: 0;
}

/* Timeline (Wedding Events) */
.timeline {
  max-width: 100%;
  padding: 0;
  margin: 0 auto 2rem auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline::before {
  display: none;
}

.timeline-event {
  width: 100%;
  max-width: 340px;
  left: 0 !important;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-date {
  background: var(--maroon, #800000);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 0.7rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.event-content {
  background: white;
  padding: 1rem 0.7rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
  width: 100%;
  max-width: 340px;
}

.event-content::before {
  display: none;
}

.event-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--maroon, #800000);
}

/* Gallery Section */
.gallery-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 0 0;
  width: 100%;
}

.gallery-item {
  border-radius: 8px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  max-width: 340px;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Lightbox Modal */
.lightbox-modal {
  padding: 0;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 98vw;
  max-height: 60vh;
  border-radius: 8px;
}

.close-btn {
  top: 10px;
  right: 16px;
  font-size: 2rem;
}

.lightbox-prev, .lightbox-next {
  font-size: 2rem;
  top: 60%;
  left: 10px;
  right: 10px;
}

/* RSVP / Contact section */
.rsvp-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.07);
  padding: 0;
  background: white;
  margin: 0 auto 2rem auto;
  align-items: center;
  width: 100%;
}

.rsvp-text {
  background: linear-gradient(135deg, var(--maroon, #800000) 0%, #5a0a1d 100%);
  color: white;
  padding: 1.2rem 0.7rem 0.6rem 0.7rem;
  border-radius: 10px 10px 0 0;
  text-align: center;
  width: 100%;
  max-width: 340px;
}

.rsvp-text h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.rsvp-text p {
  font-size: 1rem;
  margin-bottom: 0.7rem;
  text-align: center;
}

.rsvp-form {
  padding: 1.2rem 0.7rem;
  border-radius: 0 0 10px 10px;
  background: #fff;
  box-shadow: none;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  text-align: center;
}

.form-group {
  margin-bottom: 0.8rem;
  text-align: left;
}

input, select, textarea {
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.7rem;
  width: 100%;
  box-sizing: border-box;
}

.submit-btn {
  padding: 0.9rem 0;
  font-size: 1rem;
  border-radius: 6px;
  width: 100%;
  margin-top: 0.5rem;
}

/* Footer */
footer {
  padding: 2rem 0.7rem 1rem 0.7rem;
  font-size: 0.95rem;
  border-radius: 14px 14px 0 0;
  margin-top: 1.5rem;
  text-align: center;
  background: #f9f4e3;
}
/* mobile.css: Optimized for screens 700px wide or less, matching theme */

/* General */
body {
  font-size: 1.08rem;
  padding: 0;
  background: linear-gradient(135deg, #f9f4e3 0%, #f0e6d2 100%);
  color: var(--dark-text);
  margin: 0;
}

/* Header */
header {
  padding: 2.2rem 0.7rem 3rem 0.7rem;
  border-radius: 0 0 16px 16px;
  text-align: center;
}

.header-content {
  padding: 0;
  max-width: 100%;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.15);
  text-align: center;
}

header p {
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  text-align: center;
}

.divider {
  width: 60px;
  height: 3px;
  margin: 1.2rem auto;
  background: var(--gold, #d4af37);
  border-radius: 2px;
}

/* Navigation */
nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 1.2rem;
  align-items: center;
}

.nav-link {
  font-size: 1.08rem;
  padding: 0.7rem 0;
  border-radius: 24px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  color: var(--light-gold, #d4af37);
  background: rgba(212,175,55,0.08);
  text-align: center;
  display: block;
}

/* Section spacing */
section {
  padding: 2rem 0.7rem;
  max-width: 100%;
}

/* Section header */
.section-header h2 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  text-align: center;
}

/* About section */
#about .section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0.4rem;
  gap: 1rem;
}

.image-container {
  margin: 0 auto 1.2rem auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
  max-width: 340px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.parallax-img {
  width: 100%;
  max-width: 340px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: none;
}

.text-content {
  padding: 0;
  text-align: center;
}

/* Features section */
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  width: 100%;
  margin: 0 auto;
}

.feature-card {
  width: 100%;
  max-width: 340px;
  background: white;
  padding: 1.2rem 0.7rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
  color: var(--gold, #d4af37);
}

/* Rituals section */
.ritual-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  margin: 0 auto 1.5rem auto;
}

.ritual-card {
  width: 100%;
  max-width: 340px;
  background: white;
  padding: 1.2rem 0.7rem;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-top: 3px solid var(--gold, #d4af37);
  text-align: center;
  margin: 0 auto;
}

.ritual-card h3 {
  font-size: 1.12rem;
  color: var(--maroon, #800000);
  margin-bottom: 0.4rem;
  text-align: center;
  position: relative;
  padding-bottom: 0.5rem;
}
.ritual-card h3::after {
  content: '';
  display: block;
  margin: 0.4rem auto 0 auto;
  width: 36px;
  height: 2px;
  background: var(--gold, #d4af37);
  border-radius: 1px;
}
.ritual-card p {
  font-size: 0.98rem;
  color: var(--dark-text, #222);
  text-align: center;
}
.quote {
  padding: 1.2rem 0.7rem;
  border-radius: 12px;
  text-align: center;
  margin: 0 auto 1.5rem auto;
  max-width: 340px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--maroon, #800000) 0%, #5a0a1d 100%);
  color: #fff;
}
.quote blockquote {
  font-size: 1.08rem;
  color: #fff;
  font-style: italic;
  margin: 0;
}

/* Timeline (Wedding Events) */
.timeline {
  max-width: 100%;
  padding: 0;
  margin: 0 auto 2rem auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline::before {
  display: none;
}

.timeline-event {
  width: 100%;
  max-width: 340px;
  left: 0 !important;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-date {
  background: var(--maroon, #800000);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 0.7rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}

.event-content {
  background: white;
  padding: 1rem 0.7rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-align: center;
  width: 100%;
  max-width: 340px;
}

.event-content::before {
  display: none;
}

.event-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--maroon, #800000);
}

/* Gallery Section */
.gallery-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 0 0;
  width: 100%;
}

.gallery-item {
  border-radius: 8px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  max-width: 340px;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Lightbox Modal */
.lightbox-modal {
  padding: 0;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 98vw;
  max-height: 60vh;
  border-radius: 8px;
}

.close-btn {
  top: 10px;
  right: 16px;
  font-size: 2rem;
}

.lightbox-prev, .lightbox-next {
  font-size: 2rem;
  top: 60%;
  left: 10px;
  right: 10px;
}

/* RSVP / Contact section */
.rsvp-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.07);
  padding: 0;
  background: white;
  margin: 0 auto 2rem auto;
  align-items: center;
  width: 100%;
}

.rsvp-text {
  background: linear-gradient(135deg, var(--maroon, #800000) 0%, #5a0a1d 100%);
  color: white;
  padding: 1.2rem 0.7rem 0.6rem 0.7rem;
  border-radius: 10px 10px 0 0;
  text-align: center;
  width: 100%;
  max-width: 340px;
}

.rsvp-text h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.rsvp-text p {
  font-size: 1rem;
  margin-bottom: 0.7rem;
  text-align: center;
}

.rsvp-form {
  padding: 1.2rem 0.7rem;
  border-radius: 0 0 10px 10px;
  background: #fff;
  box-shadow: none;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  text-align: center;
}

.form-group {
  margin-bottom: 0.8rem;
  text-align: left;
}

input, select, textarea {
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.7rem;
  width: 100%;
  box-sizing: border-box;
}

.submit-btn {
  padding: 0.9rem 0;
  font-size: 1rem;
  border-radius: 6px;
  width: 100%;
  margin-top: 0.5rem;
}

/* Footer */
footer {
  padding: 2rem 0.7rem 1rem 0.7rem;
  font-size: 0.95rem;
  border-radius: 14px 14px 0 0;
  margin-top: 1.5rem;
  text-align: center;
  background: #f9f4e3;
}
