:root {
  --ac-red: #ed2639;
  --ac-blue: #23336d;
  --ac-red-hover: #d41f31;
  --ac-blue-hover: #1a2654;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-bg-image.active {
  opacity: 1;
}

/* Fallback background if video doesn't load */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--ac-blue) 0%, var(--ac-red) 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(35, 51, 109, 0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-logo {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
  background-color: white;
  border-radius: 50%;
  padding: 1.5rem;
}

@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
    min-height: 400px;
  }

  .hero-logo {
    max-width: 150px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* Golf Section */
.golf-section {
  background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

.golf-section h2 {
  color: var(--ac-blue);
}

.event-details {
  font-size: 1.1rem;
}

.detail-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #dee2e6;
}

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

.detail-icon {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.golf-cta-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-primary {
  background-color: var(--ac-red);
  border-color: var(--ac-red);
}

.btn-primary:hover {
  background-color: var(--ac-red-hover);
  border-color: var(--ac-red-hover);
}

.btn-outline-primary {
  color: var(--ac-red);
  border-color: var(--ac-red);
}

.btn-outline-primary:hover {
  background-color: var(--ac-red);
  border-color: var(--ac-red);
  color: white;
}

/* Sign Up Page */
.signup-step {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.player-form {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--ac-blue);
}

.player-form h5 {
  color: var(--ac-blue);
  margin-bottom: 1rem;
}

.navbar-brand img {
  max-height: 40px;
}

/* Footer */
footer {
  background-color: var(--ac-blue) !important;
}

/* Utility */
.text-ac-red {
  color: var(--ac-red);
}

.text-ac-blue {
  color: var(--ac-blue);
}

.bg-ac-red {
  background-color: var(--ac-red);
}

.bg-ac-blue {
  background-color: var(--ac-blue);
}
