@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main-text-color: rgb(98, 98, 98);
  --main-title-color: rgb(86, 86, 86);
  --main-button-color: rgb(148, 143, 143);
}

body {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  max-width: 65ch;
  margin: 0 auto;
  gap: 60px;
  color: var(--main-text-color);
  p{
    font-family: 'Lato', sans-serif;
  }
}

h3,
h4 {
  font-family: "Montserrat", sans-serif;
}

.logo-container {
  height: 100px;

  img {
    max-height: 100%;
  }
}

.story-section {
  text-align: justify;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  button {
    margin-top: 35px;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 10px;
    border: none;
    background-color: var(--main-button-color);
    color: white;
    cursor: pointer;
  }
}

.contact-section {
  width: 70%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 14px;
  > .banner-container {
    width: 100%;
    img {
      width: 70%;
    }
  }
  > .contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    h3 {
      font-weight: 600;
      font-size: 18px;
    }
    a {
      color: var(--main-title-color);
      font-weight: bold;
      text-decoration: none;
      font-size: 16px;
    }
    > .google-maps-link {
      text-decoration: none;
      color: var(--main-button-color);
      font-weight: bold;
      font-size: 16px;
    }
  }
  > .contact-details-container {
    display: flex;
    gap: 50px;

    > .contact-child-container {
      display: flex;
      flex-direction: column;
      gap: 5px;
      > .phone-number {
        text-decoration: none;
        color: var(--main-text-color);
        font-weight: 600;
      }
      > .email-address {
        text-decoration: none;
        color: var(--main-text-color);
        font-size: 16px;
        font-weight: 600;
      }
    }
  }
}

/* responsive */

@media screen and (max-width: 600px) {
  body {
    padding: 40px 20px;
  }

  .logo-container {
    height: 80px;
  
    img {
      max-height: 100%;
    }
  }

  .contact-section {
    > .banner-container {
      img {
        width: 100%;
      }
    }

    > .contact-details-container{
      flex-direction: column;
    }
  }
}
