@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --bg-dark: #0a0a0a;
  --text-light: #f5f5f5;
  --gold: #d4af37;
  --gold-light: #f3e5ab;
  --accent: #b76e79; /* Rose gold */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
}

/* Add a cool gradient background */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, rgba(10, 10, 10, 1) 70%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  animation: fadeIn 2s ease-out;
}

.live-stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.live-stream-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.live-stream-btn i {
  color: #ff3b3b;
}
.live-stream-btn:hover i {
  color: #c90000;
}

.invitation-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.couple-names {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.couple-names .amp {
  font-family: 'Cinzel', serif;
  font-size: 0.7em;
  color: var(--accent);
  font-style: italic;
}

.event-details {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.detail-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.detail-item h3 {
  font-size: 1.2rem;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.detail-item p {
  font-weight: 300;
  font-size: 1rem;
  color: #ccc;
}

.maps-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 30px;
  background: var(--gold);
  color: var(--bg-dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.maps-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Wishes Section */
.wishes-section {
  padding: 5rem 2rem;
  background: #111;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #aaa;
  margin-bottom: 3rem;
  font-weight: 300;
}

.wishes-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  text-align: left;
}

.form-control {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 5px;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: var(--gold);
  color: var(--bg-dark);
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.submit-btn:hover {
  background: var(--gold-light);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Floating Particles for extra awesome look */
.particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float linear infinite;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
