:root {
  --primary-green: #2d5f3f;
  --primary-red: #c41e3a;
  --primary-gold: #d4af37;
  --safe-blue: #1e5a7d;
  --safe-orange: #ff8c42;
  --light-bg: #f8f9fa;
  --dark-text: #2c3e50;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  overflow-x: hidden;
}

.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--safe-blue) 100%
  );
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "🎄";
  position: absolute;
  font-size: 200px;
  opacity: 0.1;
  right: -50px;
  top: -50px;
  animation: float 6s ease-in-out infinite;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary-custom {
  background: var(--primary-gold);
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  color: var(--dark-text);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary-custom:hover {
  background: #bf9b30;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
  color: var(--dark-text);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-green);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(to right, var(--primary-gold), transparent);
}

.card-custom {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--safe-orange),
    var(--primary-gold)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: -30px;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--primary-green),
    var(--safe-blue)
  );
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--primary-green) 100%
  );
  color: white;
  padding: 80px 0;
  position: relative;
}

.cta-section::before {
  content: "✨";
  position: absolute;
  font-size: 150px;
  opacity: 0.1;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.footer {
  background: var(--dark-text);
  color: white;
  padding: 40px 0;
}

.badge-custom {
  background: var(--primary-gold);
  color: var(--dark-text);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.mosaic-item img {
  max-width: 10rem;
  max-height: 10rem;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.photo-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 3rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.social-icons {
  font-size: 1.8rem;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  margin: 0 15px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary-gold);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}

