*{margin:0;padding:0;box-sizing:border-box;font-family:Inter,Arial,sans-serif}
body{background:#1c1f26;color:#fff;line-height:1.5}

/* HEADER */
header{position:sticky;top:0;z-index:999;background:#12141b;box-shadow:0 6px 25px rgba(0,0,0,.4)}
.nav {
    margin: auto;
    display: flex;
    justify-content: center;
    padding: 16px 20px;
}
.logo{height:25px}


/* FOOTER */
footer{background:#12141b;padding:10px 20px;text-align:center}
footer img{height:44px;margin-bottom:10px}
.footer-links{list-style:none;display:flex;flex-wrap:wrap;justify-content:center;}

@media(max-width:900px){
.cards{grid-template-columns:1fr}
.stats{flex-direction:column;gap:40px}
.about,.visit-row{grid-template-columns:1fr}
.reverse{direction:ltr}
}
.locations-section {
  padding: 30px 20px;
  background: #23272f;
  text-align: center;
}

.section-title {
  color: #d14fd6;
    margin-bottom: 50px;
    letter-spacing: 1px;
    font-size: 42px;
    font-family: Inter, Arial, sans-serif;
    line-height: 1.2;
    font-weight: 800;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 auto;
  padding: 0px 40px;
  padding-bottom: 40px;
}

.location-card {
  position: relative;
  height: 300px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 3px solid rgba(180, 100, 255, 0.6);
  box-shadow: 0 0 25px rgba(180, 100, 255, 0.15);
}

.location-card h3 {
  color: #a56bff;
  margin-bottom: 10px;
}

.location-card p {
  color: #ffffff;
    font-size: 14px;
    margin-bottom: 20px;
    margin-top: 85px;
}

.btn-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.btn {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.primary {
  background: #d14fd6;
  color: #fff;
}

.btn.secondary {
  background: #8a4dff;
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}
.stats-section {
  background: #9bbc7a;
  padding: 55px 20px;
}

.stats-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 35px;
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #1f232a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  font-size: 24px;
  color: #d14fd6;
}

.stat-text h3 {
  margin: 0;
  font-size: 34px;
  color: #d14fd6;
}

.stat-text p {
  margin: 0;
  font-size: 14px;
  color: #ffffff;
}

/* Responsive */
/* =========================
   MOBILE VIEW – STATS
========================= */
@media (max-width: 768px) {

  .stats-section {
         padding: 40px 16px;
        display: flex;
  }

  .stats-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }

  .stat-item {
    width: 100%;
    gap: 50px;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
  }

  .icon {
    font-size: 20px;
  }

  .stat-text h3 {
    font-size: 26px;
    line-height: 1.2;
  }

  .stat-text p {
    font-size: 14px;
    line-height: 1.4;
  }

}


.visit-section { 
  background: #0f1220;
  padding: 80px 20px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.visit-container {
  max-width: 1200px;
  margin: 0 auto;
}

.visit-header {
  text-align: center;
  margin-bottom: 60px;
}

.visit-header h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #b14bbd;
  font-family: Inter, Arial, sans-serif;
}

.visit-header p {
  max-width: 900px;
  margin: 0 auto;
  color: #cfd2ff;
  font-size: 19px;
  line-height: 1.6;
}

/* ======================
   DESKTOP GRID
====================== */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.visit-text h3 {
  color: #9aa4ff;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.visit-text p {
  color: #e4e6ff;
  font-size: 19px;
  margin-bottom: 14px;
}

.visit-text ul {
  list-style: none;
  padding: 0;
}

.visit-text li {
  font-size: 19px;
  color: #e4e6ff;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.visit-text li::before {
  content: "•";
  color: #9aa4ff;
  position: absolute;
  left: 0;
}

.visit-image {
  border-radius: 14px;
  overflow: hidden;
}

.visit-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

/* =========================
   MOBILE CARD LAYOUT
========================= */
@media (max-width: 900px) {

  .visit-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* Escanaba */
  .visit-grid > :nth-child(2) { order: 1; } /* image */
  .visit-grid > :nth-child(1) { order: 2; } /* text */

  /* Republic */
  .visit-grid > :nth-child(3) { order: 3; } /* image */
  .visit-grid > :nth-child(4) { order: 4; } /* text */

  /* New Buffalo */
  .visit-grid > :nth-child(6) { order: 5; } /* image */
  .visit-grid > :nth-child(5) { order: 6; } /* text */

  /* Mobile card styling */
  .visit-text {
    background: #14172b;
    padding: 22px;
    border-radius: 16px;
  }

  .visit-image img {
    border-radius: 16px;
  }

  .visit-text h3 {
    font-size: 22px;
  }

  .visit-text p,
  .visit-text li {
    font-size: 16px;
  }
  .locations-grid {
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 30px;
    /* margin: 0 auto; */
    padding: 0px 10px;
}
}

