/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');


body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #222;
}

/* Hero */

/* HERO SECTION */
.hero {
  min-height: 80vh;
  min-height: 80dvh; /* better on mobile */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* HERO CONTENT */
.hero-content {
  max-width: 90%;
}

/* TAGLINE */
.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #2ab2a0; /* or whatever brand colour */
}

/* Hero logo (large) */
.hero-logo img {
  width: 320px;       /* desktop size */
  max-width: 75%;     /* scales down */
  height: auto;
  margin-bottom: 20px;
}

/* Sections */
section {
    padding: 60px 0;
}



/* Make body full height and flex container */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Page container grows to fill space */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* full viewport height */
}

/* Main content grows to push footer down */
main {
    flex: 1;
}

/* Footer stays at bottom */
.footer {
    text-align: left;
    padding: 20px;
    background: #2ab2a0;
    color: #16395c;
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;  /* let content define height */
    padding: 60px 20px;
  }

  .hero-logo img {
    width: 180px;
  }

  .hero-tagline {
    font-size: 18px;
  }
}