/* --- Egyedi betűtípus --- */
@font-face {
  font-family: "Minecraft";
  src: url("./fonts/MinecraftRegular-Bmg3.otf") format("opentype");
}

/* --- Alapbeállítások --- */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body {
  font-family: "Minecraft", sans-serif;
  background: linear-gradient(180deg, #e7f6e7 0%, #fffaf5 60%, #fbe6e8 100%);
  color: #3a3a3a;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

/* --- Meghívó kártya --- */
.invite-card {
  background: rgba(255,255,255,0.9);
  border: 2px solid #d9e7d0;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 0 18px rgba(240,200,190,0.4);
  max-width: 420px;
  width: 100%;
  backdrop-filter: blur(8px);
}

.couple-img {
  width: 120px;
  margin-bottom: 1rem;
}

.names {
  font-size: 2rem;
  color: #f3b3b8;
  text-shadow: 0 0 5px #ffd9de;
}

.tagline {
  font-size: 1.1rem;
  color: #6e936e;
  margin-bottom: 1.5rem;
}

/* --- Személyre szabott rész --- */
.personal-section {
  margin-bottom: 1.2rem;
}

#guest-greeting {
  font-size: 1.2rem;
  color: #324732;
}

#guest-role {
  font-size: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  display: inline-block;
  margin: 0.5rem 0;
  color: #fff;
}

#guest-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* --- Szerepkörök stílusai --- */

/* Vendég — egyszerű, nyugodt zöld tónus */
.role-guest {
  background: #a6d8a8;
  box-shadow: 0 0 6px #b9e7b9;
}

/* Barát — vidám, lüktető színátmenet */
.role-friend {
  background: linear-gradient(90deg, #f3b3b8, #a6d8a8);
  box-shadow: 0 0 12px #ffdede;
  animation: pulse 3s ease-in-out infinite;
}

/* Családtag — meleg, elegáns csillogás */
.role-family {
  background: linear-gradient(120deg, #f6c38e, #f3b3b8, #f6c38e);
  background-size: 300% 300%;
  box-shadow: 0 0 15px #ffe4c4;
  animation: shimmer 3s linear infinite;
}

/* Tanu / Vőfély — arany és rózsaszín fényjáték */
.role-maidofhonor, 
.role-bestman {
  background: linear-gradient(90deg, #ffb6c1, #ffe59d, #ffb6c1);
  background-size: 200% 200%;
  color: #fff5e1;
  text-shadow: 0 0 8px #ffe2af;
  box-shadow: 0 0 20px #ffdfb3;
  animation: glow 2.5s ease-in-out infinite alternate;
}

/* Koordinátor / DJ — energikus fényvillanás */
.role-coordinator, 
.role-dj {
  background: linear-gradient(90deg, #9ad1a8, #f6c38e, #f3b3b8);
  background-size: 250% 250%;
  color: #fff;
  box-shadow: 0 0 18px #ffe3b5;
  animation: flicker 2.5s infinite alternate;
}

/* VIP / Fotós — finom, elegáns átmenet */
.role-vip {
  background: linear-gradient(135deg, #ffe59d, #f3b3b8, #f6c38e);
  background-size: 250% 250%;
  box-shadow: 0 0 25px #ffd9b8;
  color: #fff8e7;
  animation: glow 1.8s ease-in-out infinite alternate;
}

/* --- Animációk --- */
@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 10px #ffe3d9; }
  50% { transform: scale(1.05); box-shadow: 0 0 25px #ffe3d9; }
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

@keyframes glow {
  from { box-shadow: 0 0 15px #f6d98e; }
  to { box-shadow: 0 0 30px #f3b3b8; }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; filter: brightness(1.2); }
}

/* --- Kiegészítő részek --- */
.details p { 
  font-size: 0.9rem; 
  margin: 0.3rem 0; 
}

.note { 
  margin-top: 0.6rem; 
  font-size: 0.8rem; 
  color: #8a6e68; 
}

.gift-note { 
  font-style: italic; 
  opacity: 0.85; 
}

/* --- Programlista --- */
.programs { 
  margin-top: 1.5rem; 
}

.programs h2 { 
  font-size: 1.1rem; 
  color: #6e936e; 
  margin-bottom: 0.5rem; 
}

.programs ul { 
  list-style: none; 
  font-size: 0.9rem; 
}

.programs li { 
  margin: 0.3rem 0; 
}

/* --- RSVP gomb --- */
#rsvpBtn {
  margin-top: 1.5rem;
  background: #f3b3b8;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #ffcfd8;
}

#rsvpBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #ffdeda;
}

/* --- Lábjegyzet --- */
footer { 
  margin-top: 1.5rem; 
  font-size: 0.8rem; 
  color: #666; 
}

footer span { 
  color: #f3b3b8; 
}

/* --- Részletek szekció --- */
.details {
  background: rgba(255, 255, 255, 0.8);
  border: 2px dashed #d9e7d0;
  border-radius: 16px;
  padding: 1.2rem;
  margin-top: 1.5rem;
  box-shadow: 0 0 12px rgba(240, 200, 190, 0.3);
}

.details-title {
  font-size: 1.1rem;
  color: #6e936e;
  text-shadow: 0 0 5px #eaf6e8;
  margin-bottom: 0.8rem;
}

.details-box {
  background: #f9fcf8;
  border-radius: 10px;
  padding: 0.8rem;
  border: 1px solid #e0eedf;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.details-box p {
  margin: 0.2rem 0;
}

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

/* Jegyzetkártyák */
.note {
  background: #fffaf7;
  border-left: 4px solid #f3b3b8;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  font-size: 0.8rem;
  color: #7a5c58;
  line-height: 1.3;
  box-shadow: 0 0 6px rgba(243, 179, 184, 0.15);
}

.note strong {
  color: #f3b3b8;
}

.note u {
  text-decoration-color: #f3b3b8;
  text-underline-offset: 3px;
}

.gift-note {
  background: #fffdf5;
  border-left-color: #f6c38e;
}

.plusone-note {
  background: #f8fef8;
  border-left-color: #a6d8a8;
}

.fun-note {
  background: #fff5f5;
  border-left-color: #f3b3b8;
  font-weight: 600;
}
.details-box a {
  color: #6c9b5d;
  text-decoration: none;
  font-weight: 600;
}
.details-box a:hover {
  text-decoration: underline;
  color: #4d7a42;
}

/* --- Visszaszámlálás --- */
.countdown-section {
  margin-top: 1.8rem;
  background: rgba(255, 255, 255, 0.85);
  border: 2px dashed #f3b3b8;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 0 12px rgba(243, 179, 184, 0.25);
}

.countdown-section h2 {
  font-size: 1.1rem;
  color: #f3b3b8;
  margin-bottom: 0.5rem;
}

#countdown {
  font-size: 1.2rem;
  color: #6e936e;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #eaf6e8;
}

/* When the countdown hits the day */
.countdown-today {
  color: #f3b3b8;
  font-size: 1.3rem;
  text-shadow: 0 0 8px #ffd9de;
  animation: pulse 3s ease-in-out infinite;
}
#countdown {
  transition: all 0.2s ease-in-out;
}

/* --- Pixel történet szekció --- */
.story-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 1rem;
  border: 2px dashed #f3b3b8;
  box-shadow: 0 0 15px rgba(243, 179, 184, 0.25);
  text-align: center;
}

.story-img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  border: 2px solid #f3b3b8;
  box-shadow: 0 0 18px rgba(243, 179, 184, 0.25);
  background: #fffaf7;
  image-rendering: pixelated;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(243, 179, 184, 0.4);
}

.story-caption {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #7a5c58;
  font-style: italic;
}
