@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@400;500;600&display=swap');

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

html {
  font-size: 10px;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  background-color: #f0f0f0;
  color: #333;
  line-height: 1.5;
}

/* ── Outer wrapper ── */
.page-wrapper {
  max-width: 1020px;
  margin: 50px auto;
  background-color: #ffffff;
}

/* ── Header ── */
header {
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .site-title {
  /* no visible title on this site */
  display: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  text-decoration: none;
  color: #333;
}

nav ul li a:hover {
  text-decoration: underline;
}

nav ul li.active a {
  font-weight: 600;
}

/* ── Main content ── */
main {
  padding: 5px 98px 5px 0;
  min-height: 300px;
}

/* ── Home page: penguin image ── */
.penguin-wrap {
  text-align: center;
  padding: 5px;
}

.penguin-wrap img {
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── Contact page ── */
.contact-wrap {
  padding: 5px;
}

.contact-wrap h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333;
}

.yola-form-field {
  margin-bottom: 14px;
}

.yola-form-field .label {
  margin-bottom: 4px;
}

.yola-form-field label {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  color: #333;
  display: block;
}

.yola-form-field input[type="text"],
.yola-form-field input[type="email"],
.yola-form-field input[type="tel"],
.yola-form-field textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  width: 100%;
  max-width: 400px;
  padding: 6px 8px;
  border: 1px solid #ccc;
  color: #333;
  background: #fff;
  outline: none;
}

.yola-form-field input[type="text"]:focus,
.yola-form-field input[type="email"]:focus,
.yola-form-field input[type="tel"]:focus,
.yola-form-field textarea:focus {
  border-color: #888;
}

.yola-form-field textarea {
  height: 100px;
  resize: vertical;
}

.form-submit {
  margin-top: 12px;
}

.form-submit input[type="submit"] {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2rem;
  padding: 6px 20px;
  background: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  color: #333;
}

.form-submit input[type="submit"]:hover {
  background: #f0f0f0;
}

.form-success {
  display: none;
  padding: 10px 0;
  color: #333;
  font-size: 1.2rem;
}

/* ── Footer ── */
footer {
  background-color: #333333;
  /* matches original — hidden/empty */
  min-height: 0;
}

/* ── Mobile ── */
@media only screen and (max-width: 736px) {
  html {
    font-size: 80%;
  }

  .page-wrapper {
    margin: 0;
  }

  header {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  main {
    padding: 5px;
  }

  .mob-toggle {
    display: flex;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  nav {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 8px;
  }

  nav ul.hidden {
    display: none;
  }
}

@media only screen and (min-width: 737px) {
  .mob-toggle {
    display: none;
  }
}
