/* Background with dark overlay */
body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  text-align: center;
  overflow-x: hidden;
}

/* Background image using pseudo-element for iOS compatibility */
body::before {
  content: "";
  position: fixed; /* fixed for parallax effect */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("swansea-yacht-club-bg.webp") no-repeat center center;
  background-size: cover;
  z-index: -2; /* behind overlay and content */
}

/* Dark overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* 60% black tint */
  z-index: -1; /* above background but below content */
}

.container {
  margin-top: 10vh;
}

.logo {
  width: 200px;
  max-width: 80%;
  margin-bottom: 12px;
}

.club-name {
  font-size: 35px;
  font-weight: 400;
  margin: 10px 0;
}

.construction {
  font-size: 26px;
  font-weight: 600;
  color: #e4cf9d;
  margin: 120px 0 60px 0;
}

.btn {
  background-color: #670f00;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #4a0b00;
}

footer {
  padding: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* Telephone links styling */
.tel-link {
  color: #e4cf9d;
  text-decoration: none;
}

.tel-link:hover {
  color: #fff;
}
