* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "arial, helvetica";
  background-color: #cfe6ef;
  color: #0b2a33;
}

.container {
  position: relative;
  min-height: 100vh;
  padding: 40px 20px 60px;
  text-align: center;
  overflow: hidden;
  background-color: #cfe6ef;
}

.container::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../splashassets/salty-background2.png");
  background-repeat: no-repeat;
  background-position: -200px bottom;
  background-size: contain;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
 top: 300px;
 left:10px;
}


.container > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .container::before {
    background-position: bottom;
    background-size: 80%;
  }
}


.headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 4px 0 #000;
  margin-bottom: 32px;
}

.logo {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 28px;
  display: block;
}

.menu-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: all 0.25s ease;
}

.btn.primary {
  background: #0e6f8f;
  color: #ffffff;
}

.btn.secondary {
  background: #ffd200;
  color: #000000;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.details {
  margin-bottom: 40px;
}

.address {
  font-size: 0.95rem;
  margin-bottom: 22px;
  line-height: 1.5;
}

.hours {
  list-style: none;
  font-size: 0.95rem;
  line-height: 1.65;
}

.hours li span {
  display: inline-block;
  width: 100px;
  text-align: right;
  margin-right: 15px;
}

.facebook {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.facebook img {
  width: 140px;
}

@media (max-width: 768px) {
  .container {
    background-position: center top;
    background-size: 120%;
  }

  .hours li span {
    width: auto;
    text-align: left;
    margin-right: 6px;
  }
}

.mainphone {text-decoration:none; color:black;}
.mainphone:hover {color:#0e6f8f}

.hours-title {
  font-size: 1.0rem;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hours {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  list-style: none;
  font-size: 0.95rem;
  line-height: 1.7;
}

.hours-column {
  min-width: 220px;
}

.hours-column strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.hours-column div {
  display: flex;
}

.hours-column span {
  display: inline-block;
  width: 100px;
  text-align: right;
  margin-right: 12px;
}

.divider {
  width: 1px;
  background: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .hours {
    flex-direction: column;
    align-items: center;
  }

  .divider {
    width: 100%;
    height: 2px;
    margin: 16px 0;
  }

  .hours-column span {
    width: auto;
    text-align: left;
    margin-right: 6px;
  }
}