/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: #fdfbf7;
  color: #4a4a4a;
  line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #fdfbf7;
}

.hero-content .pre-title {
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b89a7a;
  margin-bottom: 16px;
}

.hero-content .couple-name {
  font-size: 3.2rem;
  font-weight: normal;
  color: #3a3a3a;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.hero-content .amp {
  color: #b89a7a;
  font-style: italic;
}

.hero-content .date {
  font-size: 1.1rem;
  letter-spacing: 6px;
  color: #888;
  margin-bottom: 36px;
}

.hero-photo {
  margin-top: 40px;
}

.hero-photo img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  border-radius: 120px 120px 8px 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.btn {
  display: inline-block;
  padding: 12px 36px;
  border: 1.5px solid #b89a7a;
  color: #b89a7a;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 4px;
}

.btn:hover {
  background-color: #b89a7a;
  color: #fff;
}

/* ===== STORY ===== */
.story {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
}

.story h2,
.details h2,
.rsvp h2 {
  font-size: 1.8rem;
  font-weight: normal;
  color: #3a3a3a;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.story-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.story-card {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.story-card h3 {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 1px;
  color: #b89a7a;
  margin-bottom: 8px;
}

.story-card p {
  font-size: 0.88rem;
  color: #777;
  font-style: italic;
}

/* ===== DETAILS ===== */
.details {
  padding: 80px 20px;
  background-color: #fdfbf7;
  text-align: center;
}

.details-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.detail-card {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
}

.detail-card .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.detail-card h3 {
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b89a7a;
  margin-bottom: 10px;
}

.detail-card p {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.9;
}

/* ===== RSVP ===== */
.rsvp {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.rsvp p {
  color: #888;
  margin-bottom: 30px;
  font-style: italic;
}

.rsvp-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
  padding: 12px 16px;
  border: 1px solid #e0d5c8;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9rem;
  background-color: #fdfbf7;
  color: #4a4a4a;
  outline: none;
  transition: border-color 0.3s;
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
  border-color: #b89a7a;
}

.btn-submit {
  padding: 13px;
  background-color: #b89a7a;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #a08360;
}

.rsvp-message {
  margin-top: 20px;
  font-style: italic;
  color: #b89a7a !important;
}

/* ===== FOOTER ===== */
footer {
  padding: 50px 20px;
  text-align: center;
  background-color: #fdfbf7;
  border-top: 1px solid #ede8e0;
}

footer p {
  font-size: 0.9rem;
  color: #aaa;
}

footer .footer-date {
  margin-top: 10px;
  letter-spacing: 4px;
  font-size: 0.8rem;
  color: #b89a7a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .hero-content .couple-name {
    font-size: 2.4rem;
  }

  .hero-photo img {
    width: 240px;
    height: 320px;
  }

  .story-grid,
  .details-grid {
    flex-direction: column;
    align-items: center;
  }
}
