@import url("https://fonts.cdnfonts.com/css/pp-neue-montreal");

:root
{
  --text: #595959;
  --accent: #595959;
  --bg: #f9f9f9;
  --white: #ffffff;
  --maxwidth: 1100px;
}

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

body
{
  font-family: "PP Neue Montreal", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 18px;
}

/* HERO SECTION */
.hero
{
  background: url("/images/attractions/mountainrange.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero::before
{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero h2,
.hero p
{
  position: relative;
  z-index: 2;
}

.hero h2
{
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero p
{
  font-size: 1.2rem;
}

/* CONTAINER */
.container
{
  max-width: var(--maxwidth);
  margin: 3rem auto;
  padding: 0 1rem;
}

/* SECTIONS */
.content
{
  background: var(--white);
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-header
{
  text-align: center;
  margin: 2.5rem 0;
}

.page-header h1
{
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.page-header p
{
  font-size: 1.1rem;
}

/* HEADINGS */
h3
{
  color: var(--accent);
  margin-top: 1.8rem;
  font-size: 1.3rem;
}

/* LISTS */
ul
{
  margin-top: 0.8rem;
  margin-left: 1.5rem;
}

/* STEPS */
.steps
{
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.step
{
  flex: 1 1 300px;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.step:hover
{
  transform: translateY(-5px);
}

/* FORMS */
.planner-form,
.booking-form
{
  display: grid;
  gap: 1.2rem;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

label
{
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
textarea,
select
{
  width: 100%;
  padding: 12px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus
{
  border-color: var(--accent);
  outline: none;
}

.btn
{
  display: inline-block;
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.25s;
}

.btn:hover
{
  background: #444;
}

/* MAP + BOOKING */
.map-section,
.booking
{
  margin-top: 2rem;
}

.success-message
{
  margin-top: 12px;
  color: var(--accent);
  font-weight: 600;
  background: #efefef;
  border-left: 5px solid var(--accent);
  padding: 10px;
  border-radius: 6px;
}

/* FOOTER */
footer
{
  background: #595959;
  color: white;
  text-align: center;
  padding: 25px 15px;
  margin-top: 60px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px)
{
  .hero
  {
    padding: 70px 20px;
  }

  .hero h2
  {
    font-size: 2.1rem;
  }

  .steps
  {
    flex-direction: column;
  }

  .content,
  .planner-form,
  .booking-form
  {
    padding: 1.2rem;
  }
}