/* =====================
   Global
===================== */

/* Visually hidden (SEO + accessibility) */
.visually-hidden {
  position: absolute;
  left: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background-color: #0f0f0f; /* fallback */
  background: url("assets/hero.jpeg") center 4% / cover no-repeat fixed;
  font-family: "Libre Baskerville", serif;
  color: #f5f5f5;
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Dark overlay for readability */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

/* =====================
   Content Layout
===================== */

.content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  max-width: 900px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}

/* HERO — breathing room added */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem; /* tune this once */
  transform: translateY(2rem);
}


/* FOOTER */
.footer {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
}

/* Booking email */
.booking {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  opacity: 0.6;
}

.booking a {
  color: #f5f5f5;
  text-decoration: none;
}

.booking a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* =====================
   Typography
===================== */

.top-quote {
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: normal;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* Descriptor — calmer, narrower */
.descriptor {
  max-width: 680px;         /* calmer reading width */
  font-size: 0.95rem;
  line-height: 1.8;         /* slower pace */
  opacity: 0.9;
  transform: translateY(-0.1rem);
}

/* =====================
   Logo
===================== */

.logo {
  width: 440px;
  max-width: 85%;
  height: auto;
  transform: translateY(0.55rem);
}

/* =====================
   Singles Grid
===================== */

.singles {
  display: flex;
  gap: 1.5rem;             /* more air */
  justify-content: center;
  transform: translateX(-0.08rem); /* intentional optical centering */
  transform: translateY(0.3rem);
}

.single {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #f5f5f5;
  font-size: 0.75rem;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.single:hover,
.single:focus-visible {
  opacity: 0.7;
}

.single img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.35rem;

  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.single span {
  text-align: center;
  line-height: 1.2;
}

@media (hover: hover) {
  .single:hover img {
    transform: translateY(-2px);
  }
}

/* =====================
   Mailing List
===================== */

.mailing-list {
  margin-top: 0.8rem;
}

.mailing-list p {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  opacity: 0.85;
}

.mailing-list input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #f5f5f5;

  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  font-family: "Libre Baskerville", serif;

  outline: none;
}

.mailing-list input[type="email"] {
  padding: 0.45rem 0.6rem;
  font-size: 0.85rem;
  width: 220px;
  max-width: 100%;
}

.mailing-list input[type="submit"] {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #f5f5f5;

  font-family: "Libre Baskerville", serif;
  font-size: 0.8rem;

  padding: 0.45rem 0.9rem;
  margin-left: 0.4rem;

  border-radius: 4px;
  cursor: pointer;

  transition: background 0.2s ease, opacity 0.2s ease;
}

.mailing-list input[type="submit"]:hover {
  background: rgba(255, 255, 255, 0.28);
  opacity: 0.9;
}

.mailing-list input::placeholder {
  color: rgba(245, 245, 245, 0.7);
}

.mailing-list input:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
}

.mailing-list form {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================
   Social Links
===================== */

.links {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.6rem;
  margin-bottom: 0.2rem;
  white-space: nowrap;
}

.links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.links a:hover {
  opacity: 0.7;
}

/* =====================
   Focus visibility
===================== */

a:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}

/* =====================
   Mobile Tweaks
===================== */

@media (max-width: 600px) {

  .content {
    min-height: 100svh;
    padding: 7.5rem 1.25rem 2rem;
    flex-direction: column;
    justify-content: center;
  }

  .hero {
    gap: 1.25rem;          /* calmer but tighter */
  }

  .descriptor {
    max-width: 100%;
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }

  .logo {
    width: 320px;
  }

  .singles {
    gap: 0.9rem;
    margin-top: 0.8rem;
    transform: none;
  }

  .single img {
    width: 65px;
    height: 65px;
  }

  .single span {
    font-size: 0.7rem;
  }

  .links {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .booking {
    font-size: 0.7rem;
    opacity: 0.5;
  }

  .footer {
    position: static;
    transform: none;
    margin-top: 6rem;
  }
}
