/* HEADER */
header {
  background-color: #2b2b2b;
  padding: 10px 0;
  color: white;
  position: relative;
}

/* Main header area */
.header-container {
  position: relative;
  height: 140px; /* keeps header from being huge */
}

/* Site title centred (desktop) */
.site-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 2.2em;
  text-align: center;
}

.header-container h1 {
  margin: 0;
  color: #ffffff;
}

/* Contact info – LEFT, same line as logo/title (desktop) */
.contact-info {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  font-size: 1em;
  line-height: 1.4;
  color: white;
}

/* TripAdvisor link – RIGHT, vertically centred (desktop) */
.tripadvisor-link {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  transition: transform 0.2s ease;
}

.tripadvisor-logo {
  height: 80px !important;
  width: auto;
}

.tripadvisor-link:hover .tripadvisor-logo {
  opacity: 0.7;
}

/* Facebook link if you’re using it – just left of Tripadvisor */
.Facebook-link {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}

.Facebook-logo {
  height: 24px;
  width: auto;
  transition: opacity 0.3s ease;
}
.Facebook-link:hover .Facebook-logo {
  opacity: 0.7;
}

/* Main site logo image (if used separately) */
.logo {
  height: 80px;
  width: auto;
}

/* Contact links */
.contact-info a {
  color: white;
}

.contact-info a:hover {
  color: #cccccc;
}

.opening-times {
  max-width: 600px;
  margin: 40px auto;
  background: rgba(0, 0, 0, 0.75);
  padding: 25px 30px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.opening-times h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.opening-times p.opening-note {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.0em;
  color: #cccccc;
}

.opening-times-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 10px;
  column-gap: 20px;
  font-size: 1.4em;
}

.opening-times-day {
  text-align: left;
  font-weight: 600;
}

.opening-times-hours {
  text-align: right;
  font-family: "Georgia", serif;
}

.opening-times-hours.closed {
  color: #ff6961;
  font-style: italic;
}

/* Stack columns on small screens */
@media (max-width: 500px) {
  .opening-times-list {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .opening-times-day,
  .opening-times-hours {
    text-align: center;
  }
}


/* FOOTER (unchanged) */
footer {
  background-color: #2b2b2b;
  text-align: center;
  padding: 20px;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 0.9em;
}

/* ----------------------- */
/* MOBILE TWEAKS           */
/* ----------------------- */
@media (max-width: 768px) {

  .header-container {
    padding: 10px;
    height: auto;              /* let it shrink to content */
  }

  /* Let everything stack nicely */
  .contact-info {
    position: static;
    transform: none;
    text-align: left;
    width: 100%;
    font-size: 0.9em;
    margin-bottom: 6px;
  }

  .site-title {
    position: static;
    transform: none;
    text-align: center;
    margin: 4px 0;
    font-size: 1.8em;
  }

  .logo {
    max-width: 180px;
    height: auto;
    display: block;
    margin: 4px auto;
  }

  /* Tripadvisor: top-right, but small */
  .tripadvisor-link {
    position: absolute;
    top: 8px;
    right: 8px;
    transform: none;
  }

  .tripadvisor-logo {
    height: 40px;  /* smaller on mobile */
  }
}
