:root {
  --sand: #E8D8B0;
  --savanna: #B08A5A;
  --jungle: #3E4A2D;
  --earth: #2F2A24;
  --gold: #C6A76B;
  --cream: #F6F1E6; 
  --earth: #2F2A24;
  --gold: #FFBC0D;        
  --cream: #F6F1E6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

   font-family: 'Montserrat', sans-serif;

  background:
    linear-gradient(rgba(246,241,230,0.92), rgba(246,241,230,0.92)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1600');

  background-size: cover;
  background-position: center;

  color: var(--earth);

  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 25px;

  color: #2f2f2f;
}

.container {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

/* HERO */
/* CINEMATIC IMAGE FRAMING */
.image-frame {
  display: inline-block;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #fdf5e6);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--gold); /* Golden Yellow Frame */
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.image-frame:hover {
  transform: scale(1.05) rotate(2deg); /* Subtle playful animation */
}

/* TYPOGRAPHY ADJUSTMENTS */
h1 {
  font-family: 'Montserrat', sans-serif; /* High-energy font */
  font-weight: 900;
  color: var(--savanna); /* Bold McDonald's Red */
  text-transform: uppercase;
  font-size: 32px;
  margin-top: 10px;
}

.subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--savanna);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ADDING A "JUNGLE" TEXTURE TO CARDS */
.card {
  background: rgba(255, 255, 255, 0.85); /* Slightly more opaque for readability */
  backdrop-filter: blur(5px); /* Modern frosted glass effect */
  border: 1px solid rgba(62, 74, 45, 0.2);
  border-radius: 20px;
  padding: 30px;
}



.subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8a7d66;
  text-transform: uppercase;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;

  color: var(--jungle);

  letter-spacing: 1px;
}

h1::after {
  content: "🐾";
  margin-left: 10px;
  font-size: 24px;
}

.tagline {
  margin-top: 10px;
  color: #6e665a;
  font-size: 15px;
  line-height: 1.6;
}

/* CARD */
.card {
  background: rgba(255, 255, 255, 0.75);

  border: 1px solid rgba(176,138,90,0.4);

  border-radius: 18px;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.06),
    inset 0 0 0 1px rgba(198,167,107,0.15);

  padding: 25px;

  margin-top: 20px;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--jungle);

  margin-bottom: 20px;
  position: relative;
}

h2::before {
  content: "🌿";
  margin-right: 6px;
}

/* INFO */
.info p {
  margin: 10px 0;
  font-size: 15px;
}

.info span {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  color: #a08d6c;
}

/* MAP */
.map {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
}

.map-text {
  font-size: 12px;
  color: #8a7d66;
  margin-top: 8px;
}

/* RSVP */
.rsvp-options button {
  border: 1px solid var(--savanna);
  background: transparent;

  color: var(--earth);

  padding: 10px 22px;

  border-radius: 30px;

  transition: 0.3s;
   margin-bottom: 20px;
}

.rsvp-options button:hover {
  background: var(--sand);
}

.rsvp-subtext {
  font-size: 14px;
  color: #7a6d5a;
  margin-top: -10px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.active-btn {
  background: var(--savanna) !important;
  color: white;
}

/* FORM */
#rsvpForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* SUBMIT */
.submit-btn {
  background: var(--jungle);
  color: var(--cream);

  border: 1px solid var(--gold);

  padding: 12px;

  border-radius: 40px;

  letter-spacing: 1px;

  transition: 0.3s;
}

.submit-btn:hover {
  background: var(--savanna);
}

/* MESSAGE */
.hidden-text {
  margin-top: 15px;
  color: #7a6d5a;
}

/* FOOTER */
.footer {
  margin-top: 20px;
  font-size: 13px;
  color: #8a7d66;
}

.map {
  width: 100%;
  border-radius: 12px;
  margin-top: 10px;
  transition: 0.3s ease;
  cursor: pointer;
}

.map:hover {
  transform: scale(1.02);
  filter: brightness(0.95);
}

.map-embed {
  margin-top: 10px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

iframe {
  border-radius: 14px;
  border: 1px solid rgba(176,138,90,0.3);
}

/*.hero-image {
  border-radius: 50%;
  border: 3px solid var(--gold);

  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}*/

.gift-intro {
  font-size: 14px;
  color: var(--earth);
  margin-bottom: 15px;
  line-height: 1.6;
}

.gift-list p {
  padding: 10px 12px;
  margin: 8px 0;

  background: rgba(198,167,107,0.08);
  border-left: 3px solid var(--gold);

  border-radius: 8px;

  font-size: 14px;
}

.hidden {
  display: none;
}

#attendingFields {
  display: none; /* hidden by default */
  flex-direction: column;
  gap: 12px;
}

.rsvp-disclaimer {
  font-size: 14px;
  color: var(--savanna); /* Matches your elegant theme color */
  margin-bottom: 25px;
  border-radius: 12px;
  font-style: italic;
  font-weight: 500;
}

.rsvp-disclaimer strong {
  text-decoration: underline;
  color: var(--earth);
}

.special-card {
  background:
    linear-gradient(
      rgba(255,255,255,0.88),
      rgba(255,255,255,0.82)
    );

  border: 1px solid rgba(198,167,107,0.35);
}

.special-message {

  font-size: 15px;
  line-height: 1.9;

  color: #5f5648;

  margin-top: 10px;
}

.dress-intro {

  font-size: 14px;
  line-height: 1.8;

  color: #5f5648;

  margin-bottom: 20px;
}

.dress-grid {

  display: grid;
  grid-template-columns: 1fr;

  gap: 12px;
}

.dress-item {

  background: rgba(198,167,107,0.08);

  border: 1px solid rgba(198,167,107,0.2);

  border-radius: 14px;

  padding: 16px;

  display: flex;
  align-items: center;

  gap: 14px;

  text-align: left;
}

.dress-item span {
  font-size: 24px;
}

.dress-item strong {
  color: var(--jungle);
}