/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Winter/Christmas themed color palette */
  --primary-red: #C41E3A;
  --primary-green: #165B33;
  --accent-gold: #D4AF37;
  --accent-silver: #C0C0C0;
  --dark-blue: #1a2332;
  --light-cream: #FAF9F6;
  --soft-white: #FFFFFF;
  --text-dark: #2d3748;
  --text-medium: #4a5568;
  --gradient-festive: linear-gradient(135deg, #C41E3A 0%, #165B33 100%);
  --gradient-winter: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #2c3e50 100%);
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--dark-blue);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(22, 91, 51, 0.1) 0%, transparent 50%);
  min-height: 100vh;
  position: relative;
}

/* Snowflake effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, white, transparent);
  background-size: 200% 200%;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 50px 30px;
  background: var(--soft-white);
  background-image:
    linear-gradient(45deg, rgba(196, 30, 58, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(22, 91, 51, 0.03) 25%, transparent 25%);
  background-size: 60px 60px;
  border-radius: 25px;
  margin-bottom: 40px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(212, 175, 55, 0.2);
  border: 3px solid var(--accent-gold);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-festive);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.1;
}

.hero-image {
  margin-bottom: 30px;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 0 3px var(--accent-gold);
  max-height: 450px;
  object-fit: cover;
  border: 4px solid var(--soft-white);
}

.title {
  font-size: 4.5rem;
  font-weight: 900;
  background: var(--gradient-festive);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  font-family: 'Georgia', serif;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  position: relative;
}

.subtitle {
  font-size: 1.8rem;
  color: var(--primary-green);
  font-weight: 400;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
  margin-bottom: 15px;
}

.slogan {
  font-size: 1.4rem;
  color: var(--primary-red);
  font-weight: 600;
  font-style: italic;
  margin-top: 15px;
  padding: 15px 30px;
  background: rgba(196, 30, 58, 0.1);
  border-left: 4px solid var(--primary-red);
  border-right: 4px solid var(--primary-green);
  border-radius: 8px;
  display: inline-block;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
  margin-bottom: 25px;
}

.hero-cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: var(--primary-red);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 900;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow:
    0 8px 25px rgba(196, 30, 58, 0.4),
    0 0 0 4px white,
    0 0 0 6px var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Georgia', serif;
  border: 3px solid white;
}

.hero-cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 12px 35px rgba(196, 30, 58, 0.5),
    0 0 0 4px white,
    0 0 0 6px var(--accent-gold),
    0 0 30px rgba(212, 175, 55, 0.6);
  background: #a01729;
}

/* Section Styles */
section {
  background: var(--soft-white);
  padding: 45px;
  margin-bottom: 35px;
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  position: relative;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--primary-red);
  border-bottom: 4px solid var(--accent-gold);
  padding-bottom: 15px;
  font-family: 'Georgia', serif;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60%;
  height: 4px;
  background: var(--primary-green);
}

section h3 {
  font-size: 1.7rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-green);
  font-weight: 700;
}

section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-weight: 400;
}

section ul {
  color: var(--text-dark);
  font-weight: 400;
}

section li {
  color: var(--text-dark);
  line-height: 1.7;
}

/* Countdown Section */
.countdown-section {
  text-align: center;
  background: var(--gradient-festive);
  color: white;
  border: 3px solid var(--accent-gold);
  position: relative;
  overflow: hidden;
}

.countdown-section::before {
  content: '❄';
  position: absolute;
  font-size: 15rem;
  opacity: 0.05;
  top: -50px;
  right: -50px;
  transform: rotate(-15deg);
}

.countdown-section h2 {
  color: white;
  border-bottom-color: var(--accent-gold);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.countdown-section h2::after {
  background: rgba(255, 255, 255, 0.5);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px 35px;
  border-radius: 15px;
  min-width: 110px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 0 2px var(--accent-gold);
  border: 3px solid var(--soft-white);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
}

.countdown-number {
  font-size: 3.5rem;
  font-weight: 900;
  display: block;
  background: var(--gradient-festive);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Georgia', serif;
}

.countdown-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  color: var(--primary-green);
  font-weight: 600;
}

.event-date {
  font-size: 1.4rem;
  margin-top: 30px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  background: rgba(255, 255, 255, 0.2);
  padding: 15px 30px;
  border-radius: 10px;
  display: inline-block;
}

.event-note {
  font-size: 1.2rem;
  margin-top: 15px;
  font-style: italic;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* About Section */
.about-section ul {
  list-style: none;
  margin: 20px 0;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.about-section li {
  margin: 12px 0;
  padding-left: 35px;
  position: relative;
  color: var(--text-dark);
  font-weight: 400;
}

.about-section li::before {
  content: '🎄';
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.about-section strong {
  color: var(--primary-red);
  font-weight: 700;
}

/* Register Section */
.register-section {
  text-align: center;
  background: var(--primary-green);
  background-image: linear-gradient(135deg, var(--primary-green) 0%, #0d3d21 100%);
  color: white;
  border: 3px solid var(--accent-gold);
}

.register-section h2 {
  color: white;
  border-bottom-color: var(--accent-gold);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.register-section h2::after {
  background: rgba(255, 255, 255, 0.4);
}

.register-section p {
  color: white;
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  padding: 20px 60px;
  background: var(--accent-gold);
  color: var(--dark-blue);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 25px 0;
  transition: all 0.3s ease;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 0 0 3px white;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 4px solid var(--soft-white);
  font-family: 'Georgia', serif;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.4),
    0 0 0 3px white,
    0 0 20px rgba(212, 175, 55, 0.5);
  background: #f0c54d;
}

.contact-info {
  margin-top: 25px;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.contact-info a {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--accent-gold);
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: white;
  border-bottom-color: white;
}

/* Donations Section */
.donations-section {
  text-align: center;
  background: linear-gradient(135deg, #165B33 0%, #22884a 100%);
  color: white;
  border: 3px solid var(--accent-silver);
}

.donations-section h2 {
  color: white;
  border-bottom-color: var(--accent-silver);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.donations-section h2::after {
  background: rgba(255, 255, 255, 0.4);
}

.donations-section p {
  color: white;
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  font-weight: 400;
}

.payment-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.payment-option {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

.payment-option h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.payment-button {
  display: block;
  padding: 15px 30px;
  background: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.venmo-button {
  color: #008CFF;
}

.cashapp-button {
  color: #00D54B;
}

.payment-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.donations-section .note {
  font-size: 1.1rem;
  margin-top: 20px;
  font-style: italic;
  opacity: 0.95;
}

/* Lodging Section */
.lodging-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  border: 3px solid var(--accent-gold);
}

.lodging-section h2 {
  color: white;
  border-bottom-color: var(--accent-gold);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.lodging-section h2::after {
  background: rgba(255, 255, 255, 0.4);
}

.lodging-section p {
  color: white;
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.lodging-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 35px 0;
  flex-wrap: wrap;
}

.lodging-option {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 15px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.3),
    0 0 0 3px var(--accent-gold);
  border: 3px solid white;
  transition: transform 0.3s ease;
}

.lodging-option:hover {
  transform: translateY(-5px);
}

.lodging-option h3 {
  color: var(--primary-red);
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 15px;
  text-shadow: none;
}

.lodging-option p {
  color: var(--text-dark);
  font-size: 1.1rem;
  text-shadow: none;
}

.lodging-contact {
  margin-top: 30px;
  font-size: 1.2rem;
  font-weight: 600;
}

.lodging-contact a {
  color: var(--accent-gold);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-gold);
  font-weight: 700;
  transition: all 0.3s ease;
}

.lodging-contact a:hover {
  color: white;
  border-bottom-color: white;
}

/* Directions Section */
.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address {
  font-size: 1.2rem;
  line-height: 1.8;
}

.map-link {
  display: inline-block;
  padding: 12px 30px;
  background: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.map-link:hover {
  background: #764ba2;
}

/* Invitation Section */
.invitation-section {
  text-align: center;
}

.download-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Code of Conduct Section */
.conduct-section {
  background: #f8f9fa;
  border-left: 5px solid #667eea;
}

.conduct-section ul {
  list-style-position: inside;
  margin: 15px 0;
}

.conduct-section li {
  margin: 10px 0;
  padding-left: 10px;
}

.conduct-section a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.conduct-section a:hover {
  text-decoration: underline;
}

.conduct-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #667eea;
  color: white !important;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.conduct-link:hover {
  background: #764ba2;
  text-decoration: none !important;
}

/* FAQ Section */
.faq-section {
  background: var(--soft-white);
}

.faq-item {
  margin: 30px 0;
  padding: 25px;
  background: var(--light-cream);
  border-radius: 12px;
  border-left: 5px solid var(--primary-red);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: var(--primary-red);
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 15px;
}

.faq-item p {
  margin-bottom: 10px;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.faq-item strong {
  color: var(--primary-red);
  font-weight: 700;
}

.faq-item a {
  color: var(--primary-green);
  text-decoration: none;
  border-bottom: 2px solid var(--primary-green);
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-item a:hover {
  color: var(--primary-red);
  border-bottom-color: var(--primary-red);
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

/* Code of Conduct Section */
.conduct-section {
  background: var(--light-cream);
  border-left: 6px solid var(--primary-red);
  border-right: 6px solid var(--primary-green);
}

.conduct-section ul {
  list-style: none;
  margin: 20px 0;
}

.conduct-section li {
  margin: 12px 0;
  padding-left: 35px;
  position: relative;
}

.conduct-section li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 900;
  font-size: 1.3rem;
}

.conduct-section a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--primary-red);
  transition: all 0.3s ease;
}

.conduct-section a:hover {
  color: var(--primary-green);
  border-bottom-color: var(--primary-green);
}

.conduct-link {
  display: inline-block;
  margin-top: 25px;
  padding: 15px 40px;
  background: var(--primary-red);
  color: white !important;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 3px solid var(--primary-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.conduct-link:hover {
  background: var(--primary-green);
  border-color: var(--primary-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none !important;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px;
  background: var(--soft-white);
  border-radius: 20px;
  color: var(--text-dark);
  margin-top: 40px;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }

  section {
    padding: 25px;
  }

  section h2 {
    font-size: 1.5rem;
  }

  .countdown {
    gap: 15px;
  }

  .countdown-item {
    padding: 15px 20px;
    min-width: 80px;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-label {
    font-size: 0.8rem;
  }

  .cta-button {
    padding: 15px 35px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2rem;
  }

  .countdown-item {
    padding: 10px 15px;
    min-width: 70px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }
}
