/**
 * @author Steve Stackle 
 * Updated Jan 16, 2026

 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Header with full-width logo */
.header-logo {
  width: 100%;
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-logo img {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
nav {
  background: linear-gradient(135deg, #c41e3a 0%, #8b1528 100%);
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  padding: 5px 10px;
}

nav a:hover {
  color: #000;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
}

/* Hero Section */
.hero {
  background:
    linear-gradient(
      135deg,
      rgba(196, 30, 58, 0.95) 0%,
      rgba(139, 21, 40, 0.95) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23222" width="1200" height="400"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  background-color: #000;
  color: white;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid white;
  transition: all 0.3s;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: white;
  color: #c41e3a;
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.mission-box,
.vision-box {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #c41e3a;
}

.mission-box h2,
.vision-box h2 {
  color: #c41e3a;
  font-size: 32px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-box p,
.vision-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

/* Logo Badge Section */
.badge-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.badge-section img {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

/* Tournament Header */
.tournament-header {
  background: linear-gradient(
    135deg,
    rgba(196, 30, 58, 0.95) 0%,
    rgba(139, 21, 40, 0.95) 100%
  );
  color: white;
  text-align: center;
  padding: 60px 20px 40px;
  position: relative;
}

.tournament-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
}

.tournament-header-content {
  position: relative;
  z-index: 1;
}

.tournament-header h1 {
  font-size: 48px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tournament-header .subtitle {
  font-size: 24px;
  margin-bottom: 5px;
  font-style: italic;
}

.tournament-header .date {
  font-size: 36px;
  font-weight: bold;
  margin: 20px 0 10px;
}

.tournament-header .time {
  font-size: 20px;
  margin-bottom: 5px;
}

.tournament-header .age-note {
  font-size: 16px;
  font-style: italic;
  opacity: 0.9;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.location-banner {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 50px;
  border-left: 5px solid #c41e3a;
  border-right: 5px solid #c41e3a;
}

.location-banner h2 {
  color: #c41e3a;
  font-size: 28px;
  margin-bottom: 10px;
}

.location-banner p {
  font-size: 20px;
  color: #333;
  font-weight: 500;
}

/* Tournament Details Grid */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.detail-box {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #c41e3a;
}

.detail-box h2 {
  color: #c41e3a;
  font-size: 32px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.detail-box ul {
  list-style: none;
  padding: 0;
}

.detail-box li {
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: #555;
}

.detail-box li:last-child {
  border-bottom: none;
}

.detail-box li::before {
  content: "▸ ";
  color: #c41e3a;
  font-weight: bold;
  margin-right: 10px;
}

.detail-box .note {
  font-size: 15px;
  font-style: italic;
  color: #666;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #eee;
}

/* Entry Fee Section */
.entry-fee-section {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: white;
  padding: 50px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.entry-fee-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.entry-fee-section .price {
  font-size: 56px;
  font-weight: bold;
  color: #c41e3a;
  margin: 20px 0;
}

.entry-fee-section .price-detail {
  font-size: 18px;
  margin-bottom: 10px;
}

.entry-fee-section .extra-fee {
  font-size: 16px;
  opacity: 0.9;
  margin-top: 15px;
}

.entry-fee-section .proceeds {
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.entry-fee-section .proceeds span {
  color: #c41e3a;
}

/* Registration Form Section */
.registration-section {
  background-color: #f9f9f9;
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 3px solid #c41e3a;
}

.registration-section h2 {
  color: #c41e3a;
  font-size: 42px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.registration-section .instructions {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
}

.registration-section .email-info {
  background-color: white;
  padding: 25px;
  border-radius: 5px;
  margin-bottom: 30px;
  text-align: center;
  border-left: 4px solid #c41e3a;
}

.registration-section .email-info strong {
  color: #c41e3a;
  font-size: 20px;
}

.registration-section .email-info p {
  margin: 10px 0 5px;
  color: #333;
}

.registration-section .email-info ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.registration-section .email-info li {
  color: #555;
  padding: 5px 0;
}

/* Form Embed Container */
.form-embed {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  min-height: 400px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: #999;
  font-style: italic;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  color: white;
  text-align: center;
  padding: 30px 20px;
}

footer p {
  margin: 5px 0;
}

/* Responsive */
@media (max-width: 968px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .tournament-header h1 {
    font-size: 36px;
  }

  .tournament-header .date {
    font-size: 28px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .entry-fee-section {
    padding: 30px 20px;
  }

  .registration-section {
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .mission-vision {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }
}
