* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #fcf4e9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.event-info p {
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.15);
  display: inline-block;
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.highlight {
  margin: 0 10px;
  font-weight: bold;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
}

.btn-primary {
  background: #28a745;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}

.btn-primary:hover {
  background: #218838;
}

.event-subtitle {
  font-size: 1.2rem;
  margin: 15px 0;
}

.event-description {
  font-size: 1.4rem;
  margin-top: 20px;
  font-weight: bold;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
}

/* Categories Section */
.categories {
  padding: 80px 0;
  background: #f8f9fa;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.category-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.category-content h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.category-content .price {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.btn-register {
  background: #e94032;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
  text-decoration: none;
}

.btn-register > a {
  text-decoration: none;
  color: white;
}

.category-content p {
  font-size: 1rem;
  margin-top: 5px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
}

.btn-register:hover {
  background: #c92e3e;
}

/* Event Info Section */
.event-info-section {
  padding: 80px 0;
  background: white;
}

.event-info-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000000;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.event-detail-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.1rem;
}

.map-container {
  margin-top: 40px;
}

.map-placeholder {
  background: #e9ecef;
  height: 300px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666;
}

/* Prizes Section */
.prizes-section {
  padding: 80px 0;
  color: rgb(0, 0, 0);
}

.prizes-banner {
  width: 100%;
  text-align: center;
}

.prizes-banner-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}
/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.gallery-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-placeholder > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 40px 0;
}
.sponsors-logos {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.sponsors-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .event-details {
    grid-template-columns: 1fr;
  }

  .prizes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .prizes-banner h2 {
    font-size: 2rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-content {
    padding: 30px 20px;
  }
}

/* Event Info Section */
.event-info-section {
  padding: 80px 0;
  background: white;
}

.event-info-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000000;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.event-detail-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.1rem;
  color: #000000;
}

.map-container {
  margin-top: 40px;
}

.map-placeholder {
  background: #e9ecef;
  height: 300px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666;
}

/* Prizes Section */
.prizes-section {
  padding: 80px 0;
}

.prizes-banner h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.prizes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.prize-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.prize-position {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.prize-amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffd700;
}

.prizes-note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 30px;
  opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.gallery-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 40px 0;
}

.sponsors-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sponsor-logo {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .event-details {
    grid-template-columns: 1fr;
  }

  .prizes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .prizes-banner h2 {
    font-size: 2rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .category-content {
    padding: 30px 20px;
  }
}

/* Responsive adjustments for prizes section */
@media (max-width: 768px) {
  .prizes-banner-img {
    border-radius: 20px;
  }

  .prizes-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .prizes-banner-img {
    border-radius: 15px;
  }

  .prizes-section {
    padding: 40px 0;
  }
}
