/* Lou-natics Landing — Multi-page Website */
/* Navy #1e3a5f, Gold #d4a843, Light Gray #f5f5f5, White #ffffff */

:root {
  --navy: #1e3a5f;
  --gold: #d4a843;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-light: #555555;
  --border: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background-color: var(--navy);
  color: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--gold);
}

nav a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.25rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== MAIN CONTAINER ========== */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  min-height: calc(100vh - 200px);
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2940 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 4px solid var(--gold);
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero .subtitle {
  font-size: 24px;
  margin-bottom: 2rem;
  color: #ccc;
  font-weight: 300;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem;
  background-color: rgba(212, 168, 67, 0.1);
  border-radius: 8px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 14px;
  color: #ddd;
  font-weight: 500;
}

.hero-cta {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
}

.hero-cta:hover {
  background-color: transparent;
  color: var(--gold);
}

/* ========== MISSION SECTION ========== */
.mission {
  background-color: var(--light-gray);
  padding: 3rem 2rem;
  border-radius: 8px;
  margin: 3rem 0;
  text-align: center;
}

.mission h2 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 1rem;
}

.mission p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========== CARDS SECTION ========== */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.card .address {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.card .price {
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
  margin: 1rem 0;
}

.card .rating {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 1rem;
}

.card .highlights {
  font-size: 14px;
  color: var(--text-light);
  text-align: left;
  margin: 1rem 0;
  line-height: 1.6;
}

.card .highlights ul {
  list-style-position: inside;
  margin: 0.5rem 0;
}

.card .cta {
  display: inline-block;
  margin-top: 1rem;
  background-color: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--navy);
}

.card .cta:hover {
  background-color: transparent;
  color: var(--navy);
}

/* ========== QUICK-LINK CARDS ========== */
.quick-links-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.quick-link {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2940 100%);
  color: var(--white);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--navy);
}

.quick-link:hover {
  background: linear-gradient(135deg, var(--gold) 0%, #c9932a 100%);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.quick-link h3 {
  font-size: 20px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.quick-link p {
  font-size: 14px;
  opacity: 0.9;
}

/* ========== TABLES ========== */
.table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 8px;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

thead {
  background-color: var(--navy);
  color: var(--white);
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

tbody tr:hover {
  background-color: var(--light-gray);
}

tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.highlight-row {
  background-color: #fff9e6 !important;
}

/* ========== TOWN CARDS ========== */
.town-card {
  background-color: var(--light-gray);
  border-left: 4px solid var(--gold);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.town-card h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.town-card .drive-time {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.town-card .description {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.town-card .day-in-life {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 4px;
  margin-top: 1rem;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  border-left: 3px solid var(--navy);
}

/* ========== TIMELINE ========== */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--gold);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
  width: 48%;
  text-align: right;
  padding-right: 2rem;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  width: 48%;
  text-align: left;
  padding-left: 2rem;
}

.timeline-item::after {
  content: '';
  position: absolute;
  top: 1rem;
  width: 16px;
  height: 16px;
  background-color: var(--gold);
  border: 3px solid var(--navy);
  border-radius: 50%;
  right: -12px;
  z-index: 1;
}

.timeline-item:nth-child(even)::after {
  right: auto;
  left: -12px;
}

.timeline-content {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 4px solid var(--gold);
}

.timeline-content h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
  font-size: 15px;
}

/* ========== ACCORDION ========== */
.accordion {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin: 1rem 0;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

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

.accordion-header {
  background-color: var(--light-gray);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: #efefef;
  color: var(--gold);
}

.accordion-header.active {
  background-color: var(--navy);
  color: var(--gold);
}

.accordion-toggle {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-toggle.active {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 1.5rem;
  background-color: var(--white);
  color: var(--text-light);
}

.accordion-content.active {
  display: block;
}

.accordion-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.accordion-content ul,
.accordion-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.accordion-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ========== GAUNTLET TABLE ========== */
.gauntlet-table {
  background-color: #fff3cd;
}

.gauntlet-table tbody tr:hover {
  background-color: #ffe8a1;
}

.gauntlet-warning {
  color: #856404;
  font-weight: 500;
}

/* ========== PRINT STYLES ========== */
@media print {
  header,
  footer,
  .quick-links-container {
    display: none;
  }

  body {
    background-color: var(--white);
  }

  .table-container {
    page-break-inside: avoid;
  }

  table {
    font-size: 12px;
  }

  .accordion-content {
    display: block !important;
  }

  .accordion-header {
    background-color: var(--light-gray) !important;
    color: var(--navy) !important;
    cursor: default;
  }

  .accordion-toggle {
    display: none;
  }
}

/* ========== FOOTER ========== */
footer {
  background-color: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  margin-top: 3rem;
  border-top: 4px solid var(--gold);
  font-size: 14px;
}

footer p {
  margin: 0.5rem 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }

  nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--navy);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    width: 100%;
    z-index: 99;
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  nav a {
    display: block;
    padding: 0.75rem;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero .subtitle {
    font-size: 18px;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  main {
    padding: 0 1rem;
  }

  .cards-container,
  .quick-links-container {
    grid-template-columns: 1fr;
  }

  table {
    font-size: 13px;
  }

  th,
  td {
    padding: 0.75rem 0.5rem;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    margin: 0;
    padding-left: 50px;
    text-align: left;
  }

  .timeline-item::after,
  .timeline-item:nth-child(even)::after {
    left: 4px;
    right: auto;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .mission {
    padding: 2rem 1rem;
  }

  .mission h2 {
    font-size: 24px;
  }

  .mission p {
    font-size: 16px;
  }

  .town-card {
    padding: 1.5rem;
  }

  .town-card h3 {
    font-size: 20px;
  }

  .town-card .day-in-life {
    padding: 1rem;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero .subtitle {
    font-size: 16px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mission h2 {
    font-size: 20px;
  }

  .mission p {
    font-size: 14px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card .price {
    font-size: 18px;
  }

  .logo {
    font-size: 18px;
  }

  nav {
    top: 50px;
  }

  table {
    font-size: 12px;
  }

  th,
  td {
    padding: 0.5rem 0.25rem;
  }

  .accordion-header {
    padding: 1rem;
    font-size: 14px;
  }

  .accordion-content {
    padding: 1rem;
  }

  footer {
    padding: 1rem;
    font-size: 12px;
  }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 2rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 32px;
  color: var(--navy);
  margin: 2rem 0 1rem;
  font-weight: 700;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-weight: 400;
}

.note {
  background-color: #e7f3ff;
  border-left: 4px solid var(--navy);
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 4px;
  font-size: 15px;
  color: var(--text-light);
}

.note strong {
  color: var(--navy);
}

.cta-button {
  display: inline-block;
  background-color: var(--gold);
  color: var(--navy);
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--gold);
}

.cta-button:hover {
  background-color: transparent;
  color: var(--gold);
}
