:root {
  --bg: #0d0714;
  --panel: #17101f;
  --accent: #b06ee0;
  --accent2: #f2a900;
  --text: #f5f1fa;
  --muted: #b8adc4;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
}

body {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(13,7,20,0.88), rgba(13,7,20,0.92)),
    url("images/bg-texture.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 60%;
  background-attachment: fixed;
}

.banner {
  width: calc(100% - 48px);
  height: auto;
  max-width: 672px;
  margin: 0 auto;
  display: block;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  color: var(--accent2);
  font-weight: 700;
  margin: 0 0 8px;
}

h1.title {
  font-size: clamp(28px, 5vw, 44px);
  margin: 0 0 24px;
  line-height: 1.15;
}

.details {
  display: grid;
  gap: 16px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 28px;
}

.detail-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.detail-label {
  min-width: 90px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding-top: 3px;
}

.detail-value {
  font-size: 17px;
  color: var(--text);
}

.about {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 16px;
}

.rsvp {
  background: linear-gradient(135deg, rgba(176,110,224,0.15), rgba(242,169,0,0.10));
  border: 1px solid rgba(176,110,224,0.35);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.rsvp h2 {
  margin-top: 0;
  font-size: 20px;
}

.rsvp p {
  color: var(--muted);
  margin-bottom: 20px;
}

.rsvp-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  transition: opacity 0.2s ease;
}

.rsvp-btn:hover { opacity: 0.85; }

.contact-info {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}

.contact-info a {
  color: var(--accent2);
  text-decoration: none;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  padding: 24px;
  opacity: 0.6;
}
