@charset "utf-8";
/* CSS Document */

/* ====== MAIN CONTENT STYLES ====== */
.main-content {
  background: white;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
	.main-content{
		margin-top: 0vh;
		position:relative;
		z-index:5;
	}
}

.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;
  }
}