:root {
  --primary: #a33a27;
  --primary-light: #c44a37;
  --secondary: #8b2f1f;
  --light: #fef9e7;
  --dark: #2c2c2c;
  --white: #fff;
  --gray: #f8f8f8;
  --gold: #a33a27;
  --gold-dark: #8b2f1f;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
}

/* Base Styles */
body {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--secondary);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  text-decoration: none;
}

.logo {
  height: 50px;
}

.brand-text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.5rem;
}

.nav-link {
  color: var(--primary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: var(--primary);
  color: var(--white) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    #a33a27 0%,
    #c44a37 30%,
    #a33a27 70%,
    #8b2f1f 100%
  );
  color: var(--white);
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.highlight-text {
  background: linear-gradient(45deg, #a33a27, #c44a37, #a33a27, #8b2f1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(163, 58, 39, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  max-width: 300px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  color: var(--white);
  font-size: 2rem;
  animation: float 4s ease-in-out infinite;
  text-shadow: 2px 2px 4px rgba(163, 58, 39, 0.3);
}

.heart-icon {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cross-icon {
  top: 60%;
  right: 15%;
  animation-delay: 1s;
}

.dove-icon {
  top: 40%;
  right: 30%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Verses Section */
.verses-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #a33a27, #c44a37, #a33a27);
  margin: 1rem auto;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.verses-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 300px;
}

.verse-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.verse-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.verse-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.verse-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #a33a27, #c44a37, #a33a27);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(163, 58, 39, 0.3);
}

.verse-card blockquote {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--primary);
  margin: 0;
  line-height: 1.6;
}

.verse-reference {
  text-align: center;
  margin-top: 2rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

.verse-navigation {
  margin-top: 3rem;
}

.verse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  margin: 0 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.verse-dot.active {
  background: var(--primary);
}

.verse-dot:hover {
  background: var(--primary-light);
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--white);
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #a33a27, #c44a37, #a33a27);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(163, 58, 39, 0.3);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Event Section */
.event-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.event-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.event-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.event-details {
  margin-bottom: 2rem;
}

.event-detail {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--light);
  border-radius: 10px;
}

.event-detail i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 20px;
}

.event-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.event-price {
  text-align: center;
}

.price-card {
  background: linear-gradient(135deg, #a33a27, #c44a37, #a33a27);
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(163, 58, 39, 0.3);
}

.price-label {
  display: block;
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  display: block;
}

.price-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0.5rem 0 0 0;
}

/* Inscription Hero */
.inscription-hero {
  background: linear-gradient(
    135deg,
    #a33a27 0%,
    #c44a37 30%,
    #a33a27 70%,
    #8b2f1f 100%
  );
  color: var(--white);
  padding: 8rem 0 4rem;
}

.hero-verse {
  background: rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-verse blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

.hero-verse footer {
  text-align: right;
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Registration Section */
.registration-section {
  padding: 4rem 0;
}

.registration-form-container {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #666;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.gender-options {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-check-input {
  width: 1.2em;
  height: 1.2em;
}

.form-check-label {
  font-weight: 500;
  color: var(--primary);
}

.terms-link {
  color: var(--primary);
  text-decoration: underline;
}

/* Event Summary */
.event-summary-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.summary-header h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.event-details-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--light);
  border-radius: 10px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a33a27, #c44a37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-right: 1rem;
  box-shadow: 0 2px 10px rgba(163, 58, 39, 0.3);
}

.info-content h4 {
  font-size: 1rem;
  color: var(--primary);
  margin: 0 0 0.25rem 0;
}

.info-content p {
  margin: 0;
  font-weight: 500;
  color: var(--dark);
}

.pricing-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-header h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.price-breakdown {
  margin-bottom: 1rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.price-item:last-child {
  border-bottom: none;
}

.price {
  font-weight: 600;
  color: var(--primary);
}

.total-price {
  background: var(--light);
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.total-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-amount {
  font-size: 1.5rem;
  color: var(--primary);
}

.payment-info {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.payment-methods h5 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: var(--light);
  border-radius: 10px;
  text-align: center;
}

.payment-method i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(163, 58, 39, 0.3);
}

.payment-method span {
  font-size: 0.9rem;
  font-weight: 500;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--success);
  font-weight: 600;
  font-size: 0.9rem;
}

.bible-verse-card {
  background: linear-gradient(135deg, #a33a27, #c44a37, #a33a27);
  color: var(--white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(163, 58, 39, 0.3);
}

.bible-verse-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

.bible-verse-card footer {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #a33a27, #8b2f1f);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 40px;
}

.footer-brand h4 {
  color: var(--white);
  margin: 0 0 0.25rem 0;
  font-weight: 700;
}

.footer-brand p {
  margin: 0;
  opacity: 0.8;
  font-weight: 500;
}

.footer-contact h5,
.footer-social h5 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-contact p {
  margin: 0.5rem 0;
  opacity: 0.8;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.social-links a:hover {
  color: #c44a37;
  transform: translateY(-2px);
  text-shadow: 2px 2px 4px rgba(196, 74, 55, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0.5rem 0;
  opacity: 0.8;
}

.footer-verse {
  font-style: italic;
  color: #c44a37;
  text-shadow: 1px 1px 2px rgba(196, 74, 55, 0.3);
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #a33a27, #c44a37, #a33a27);
  color: var(--white);
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c44a37, #a33a27, #8b2f1f);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(163, 58, 39, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(163, 58, 39, 0.3);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .section-title {
    font-size: 2rem;
  }

  .verse-card blockquote {
    font-size: 1.2rem;
  }

  .feature-card {
    margin-bottom: 2rem;
  }

  .event-card {
    padding: 2rem;
  }

  .event-content h2 {
    font-size: 2rem;
  }

  .registration-form-container {
    padding: 2rem;
  }

  .gender-options {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

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

  .section-title {
    font-size: 1.75rem;
  }

  .registration-form-container,
  .event-details-card,
  .pricing-card,
  .payment-info {
    padding: 1.5rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }
}

/* Utility Classes */
.d-none {
  display: none !important;
}

.spinner-border {
  vertical-align: middle;
}

/* Loading States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
}
