@charset "utf-8";
/* CSS Document */

/* ====== CARD GRID STYLES ====== */

/* Visit Stats Section */
.visit-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0;
}

.visit-stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.25rem 0.25rem;
  background: rgba(0,51,102,0.3);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 51, 102, 0.3);
}

.visit-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.05rem;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.visit-label {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}


/* Tablet Styles */
@media (min-width: 481px) {
  .visit-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    justify-items: center;
  }
  
  .visit-number {
    font-size: 0.9rem;
  }
  
  .visit-label {
    font-size: 0.75rem;
  }
}

/* Desktop Styles */
@media (min-width: 769px) {
  .visit-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    justify-items: center;
  }
  
  .visit-stats-item {
    padding: 1.25rem 1rem;
  }
  
  .visit-number {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .visit-label {
    font-size: 0.8rem;
  }
}

/* Large Desktop Styles */
@media (min-width: 1025px) {
  .visit-number {
    font-size: 1.1rem;
  }
  
  .visit-label {
    font-size: 0.85rem;
  }
}

/* Content Section */
.content-section {
  margin-top: 0px;
  position: relative;
  padding: 40 0 0;
  z-index: 2;
}

/* ====== SUB INFO GRID ====== */
.sub-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.sub-info-card {
  background: rgba(0, 0, 128, 0.94);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 330px;
  margin: 0 auto;
}

.sub-info-card:hover {
  transform: translateY(-5px);
}

.sub-card-content {
  padding: 20px;
  text-align: center;
}

.sub-card-content h2 {
  color: white;
  font-size: 2.5em;
  margin-bottom: 15px;
}

.sub-card-content h3 {
  color: white;
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 10px;
}

.sub-card-content p {
  color: white;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 15px;
}

.sub-card-content a,
.sub-info-card a {
  text-decoration: none;
}

/* ====== EASY SECTION ====== */
.easy-section {
  position: relative;
  margin-top: -100px;
  padding: 0 20px;
  z-index: 2;
}

.easy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.easy-card {
  background: rgba(0, 0, 128, 0.95);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.easy-card:hover {
  transform: translateY(-5px);
}

.easy-card h2 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.easy-card p {
  color: white;
  font-size: clamp(0.9rem, 2vw, 1rem);
  margin-bottom: 20px;
  line-height: 1.4;
}

/* ====== LEARN MORE SMALL BUTTON ====== */
.learn-more-sm {
  display: block;
  background: white;
  color: rgba(0, 0, 128, 0.95);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
}

.learn-more-sm:hover {
  background: rgba(202, 219, 251, 0.92);
  border-color: #da9434;
  transform: translateY(-2px);
}

.learn-more-sm i {
  transition: transform 0.3s ease;
}

.learn-more-sm:hover i {
  transform: translateX(5px);
}

/* ====== SECTION DIVIDER ====== */
.section-divider {
  height: 1.5px;
  background: linear-gradient(to right, transparent, #6a89ba, transparent);
  margin: 40px 0;
  width: 100%;
}

/* ====== ACCESSIBILITY ====== */
.learn-more-sm:focus {
  outline: 3px solid #da9434;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .learn-more-sm,
  .learn-more-sm i,
  .sub-info-card,
  .easy-card {
    transition: none;
    transform: none;
  }
  
  .sub-info-card:hover,
  .easy-card:hover,
  .learn-more-sm:hover {
    transform: none;
  }
}

/* ====== MOBILE STYLES ====== */
@media (max-width: 767px) {
  .content-section {
    margin-top: -100px;
    padding: 0 15px;
  }

  .sub-info-grid {
    gap: 20px;
    margin-bottom: 30px;
  }

  .sub-info-card {
    width: 100%;
    max-width: 350px;
  }

  .sub-card-content {
    padding: 15px;
  }

  .sub-card-content h2 {
    font-size: 2rem;
  }

  .sub-card-content h3 {
    font-size: 1.4rem;
  }

  .easy-section {
    margin-top: -80px;
    padding: 0 15px;
  }

  .easy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .easy-card {
    padding: 20px 15px;
    min-height: 180px;
  }

  .section-divider {
    margin: 30px 0;
  }
}

/* ====== TABLET STYLES ====== */
@media (min-width: 768px) and (max-width: 1023px) {
  .content-section {
    margin-top: -120px;
  }

  .sub-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .sub-info-card {
    width: 100%;
    max-width: none;
  }

  .easy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .easy-card {
    min-height: 220px;
  }
}

/* ====== DESKTOP STYLES ====== */
@media (min-width: 1024px) {
  .sub-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .sub-info-card {
    width: 100%;
    max-width: none;
  }

  .easy-grid {
    gap: 20px;
  }

  .easy-card {
    min-height: 240px;
    padding: 30px 20px;
  }
}

/* ====== LARGE DESKTOP STYLES ====== */
@media (min-width: 1200px) {
  .easy-grid {
    gap: 25px;
  }

  .easy-card {
    min-height: 260px;
    padding: 35px 25px;
  }

  .section-divider {
    margin: 50px 0;
  }
}

/* ====== MAIN CONTENT STYLES ====== */
.main-content {
  background: white;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.main-content h1 {
  font-size: 3em;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}

.main-content h2 {
  font-size: 2em;
  color: var(--navy);
  margin-bottom: 15px;
}

.main-content h3 {
  font-size: 1.5em;
  color: var(--navy);
  margin-bottom: 10px;
}

.main-content p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

/* ====== CONTENT BLOCKS ====== */
.content-block {
  max-width: 800px;
  margin: 0 auto 30px;
  padding-bottom: 20px;
}

.content-block:last-child {
  margin-bottom: 0;
}

/* ====== HOURS AND SCHEDULE STYLES ====== */
.hours-grid {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item .day {
  font-weight: 600;
  color: var(--navy);
}

.hours-item .time {
  color: #666;
}

/* ====== LOCATION INFO ====== */
.location-info {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #da9434;
  border-right: 4px solid #da9434;
  text-align:center;
}

.location-info h3 {
  margin-top: 0;
  color: var(--navy);
}

.location-info p {
  margin-bottom: 10px;
}

.location-info p:last-child {
  margin-bottom: 0;
}

/* ====== MAP CONTAINER ====== */
.map-container {
  height: 250px;
  background: #f5f5f5;
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ====== CONTAINER VARIATIONS ====== */
.container-b {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== EASY BUTTON GRID ====== */
.easy-button-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.easy-button {
  background: var(--navy);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.easy-button:hover {
  background: rgba(0, 51, 102, 0.9);
  border-color: #da9434;
  transform: translateY(-2px);
}

.easy-button:focus {
  outline: 3px solid #da9434;
  outline-offset: 2px;
}

/* ====== MOBILE STYLES ====== */
@media (max-width: 767px) {
  .main-content {
    padding: 40px 15px;
  }

  .main-content h1 {
    font-size: 2.2em;
  }

  .main-content h2 {
    font-size: 1.6em;
  }

  .main-content h3 {
    font-size: 1.3em;
  }

  .content-block {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .hours-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 12px 0;
  }

  .location-info {
    padding: 15px;
    margin-bottom: 25px;
  }

  .map-container {
    height: 200px;
    margin-bottom: 30px;
  }

  .container-b {
    padding: 0 15px;
  }
}

/* ====== TABLET STYLES ====== */
@media (min-width: 768px) and (max-width: 1023px) {
  .main-content {
    padding: 50px 20px;
  }

  .main-content h1 {
    font-size: 2.6em;
  }

  .main-content h2 {
    font-size: 1.8em;
  }

  .sub-info-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }

  .sub-info-card {
    width: 100%;
  }

  .easy-button-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }

  .easy-button {
    width: 100%;
    max-width: none;
  }

  .map-container {
    height: 300px;
  }
}

/* ====== DESKTOP STYLES ====== */
@media (min-width: 1024px) and (max-width: 1199px) {
  .sub-info-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1024px;
  }

  .sub-info-card {
    width: 315px;
  }

  .easy-button-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1023px;
  }

  .easy-button {
    width: 200px;
  }

  .map-container {
    height: 350px;
  }
}

/* ====== LARGE DESKTOP STYLES ====== */
@media (min-width: 1200px) {
  .main-content {
    padding: 80px 20px;
  }

  .sub-info-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }

  .sub-info-card {
    width: 400px;
  }

  .easy-button-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }

  .easy-button {
    width: 300px;
  }

  .content-block {
    max-width: 900px;
  }

  .map-container {
    height: 400px;
  }
}

/* ====== ACCESSIBILITY ====== */
@media (prefers-reduced-motion: reduce) {
  .easy-button {
    transition: none;
    transform: none;
  }
  
  .easy-button:hover {
    transform: none;
  }
}

/* ====== PRINT STYLES ====== */
@media print {
  .main-content {
    padding: 20px 0;
  }

  .map-container {
    display: none;
  }

  .easy-button-grid {
    display: none;
  }
}