/* Base Overrides for First Time Page */
.first-time-page {
  padding: 2rem;
  color: #fff;
  background-color: #111;
  font-family: 'Anton', sans-serif;
}

/* Import Open Sans to improve readability for body copy */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

.first-time-page h1,
.first-time-page h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  color: #e53935; /* Red accent for tactical intensity */
  margin-bottom: 1rem;
}

.first-time-page h1 {
  font-size: 3rem;
  text-align: center;
}

.first-time-page h2 {
  font-size: 2rem;
  margin-top: 3rem;
}

.first-time-page p,
.first-time-page li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  /* Use a more legible font for paragraphs and list items */
  font-family: 'Open Sans', sans-serif;
}

.first-time-page a {
  color: #3399ff;
  text-decoration: underline;
}

.first-time-page a:hover {
  color: #66ccff;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/images/hero-first-time.jpg') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 3rem;
}

/* Adjust hero padding for small screens */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
  }
}

.hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #f2f2f2;
}

/* Expectation Blocks */
.what-to-expect .expect-block {
  background-color: #1a1a1a;
  padding: 1.5rem;
  border-left: 4px solid #3399ff;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.what-to-expect .expect-block:hover {
  transform: translateY(-2px);
  background-color: #222;
}

.expect-block h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.expect-block p {
  margin: 0;
}

/* Style for icons displayed in the expectation blocks */
.expect-block .expect-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #3399ff;
}

/* Tips Section */
.tips ul {
  padding-left: 1.5rem;
  list-style-type: square;
}

.tips li {
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-book {
  text-align: center;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #1e1e1e;
  border-radius: 8px;
}

.cta-book .book-online-btn {
  display: inline-block;
  /* Base colour switched to blue to match the brand palette */
  background-color: #3399ff;
  color: #fff;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-book .book-online-btn:hover {
  /* On hover the button turns red to stand out */
  background-color: #e53935;
  transform: scale(1.05);
}

/* Footer logo sizing: ensure the logo in the footer is smaller and consistent */
.footer-logo img {
  /* Make the footer logo smaller across pages */
  max-width: 35px;
  width: 100%;
  height: auto;
}
