/* Heart of Adventure - Main Styles */

:root {
  --color-primary: #D4A840;  /* Gold */
  --color-dark: #1a1a1a;     /* Dark */
  --color-text: #333;
  --color-bg: #fff;
  --color-light: #f5f5f5;
  --max-width: 1200px;
  --overlay-dark: rgba(26, 26, 26, 0.65); /* 65% dark overlay */
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
}

/* Header */
.site-header {
  background: var(--color-dark);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.site-logo img {
  height: 60px;
  width: auto;
}

.site-logo .logo-desktop {
  display: block;
}

.site-logo .logo-mobile {
  display: none;
}

.site-contact {
  margin-left: auto;
}

.phone-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.phone-link:hover {
  color: #fff;
  transition: color 0.3s;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Navigation */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
}

.site-nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 10rem 2rem;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-camo {
  background-image: url('/assets/images/Cammo.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  font-weight: 900;
}

.hero-tagline {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  font-weight: 400;
  text-transform: none;
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-light {
  background: var(--color-light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-dark);
  font-weight: 900;
}

/* Layout */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

/* Cards */
.card {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: var(--color-dark);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.875rem 2.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border: 2px solid var(--color-primary);
}

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

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* Lists */
.list-styled {
  list-style: none;
  padding-left: 0;
}

.list-styled li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.list-styled li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Event Meta */
.event-meta {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--color-light);
  border-radius: 4px;
}

.event-meta-item {
  text-align: center;
}

.event-meta-label {
  display: block;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.event-meta-value {
  display: block;
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.footer-contact h3,
.footer-message p {
  color: var(--color-primary);
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-weight: 800;
}

.site-footer a {
  color: white;
  text-decoration: none;
  display: block;
  margin: 0.5rem 0;
  transition: color 0.3s;
}

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

.footer-message {
  font-style: italic;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 168, 64, 0.3);
  opacity: 0.9;
  font-size: 0.9rem;
}
/* Facility Images */
.facility-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.facility-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* RegFox Container */
.regfox-container {
  background: var(--color-light);
  padding: 5rem 0;
}

.regfox-placeholder {
  background: white;
  padding: 3rem;
  border-radius: 4px;
  text-align: center;
  border: 3px dashed #ccc;
  max-width: 800px;
  margin: 0 auto;
}

.regfox-placeholder h3 {
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.regfox-iframe-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 4px;
  overflow: hidden;
}

.regfox-iframe {
  width: 100%;
  min-height: 1300px;
  border: none;
  display: block;
}

/* Registration Closed */
.registration-closed-badge {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.875rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
}

.registration-closed-notice {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.registration-closed-notice h3 {
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .hero {
    padding: 6rem 1.5rem;
    min-height: 400px;
  }

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

  .hero-tagline {
    font-size: 1.25rem;
  }

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  /* Mobile Menu */
  .mobile-menu-toggle {
    display: flex;
  }

  .header-content {
    flex-wrap: wrap;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 4;
  }

  .site-nav.active {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .site-nav li {
    border-top: 1px solid rgba(212, 168, 64, 0.2);
    padding: 1rem 0;
  }

  .site-logo .logo-desktop {
    display: none;
  }

  .site-logo .logo-mobile {
    display: block;
  }

  .site-contact {
    order: 2;
  }

  .mobile-menu-toggle {
    order: 3;
  }

  .event-meta {
    gap: 2rem;
  }

  .two-col {
    gap: 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }
}

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

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

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

  .site-logo img {
    height: 45px;
  }

  .phone-link {
    font-size: 1rem;
  }
}

/* Header Centered (for MVP mode) */
.header-centered {
  justify-content: center;
}

.header-content.header-centered {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Facility Images */
.facility-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.facility-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .facility-images {
    grid-template-columns: 1fr;
  }
}