@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --primary-color: #ff6b6b;
  --secondary-color: #227093;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Utility styles */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--secondary-color);
  font-size: 24px;
  overflow-x: hidden;
  background-color: var(--secondary-color);
}

a {
  text-decoration: none;
  color: #fff;
}

/* Navigation */
#mainNav {
  color: #fff;
  background-color: var(--secondary-color);
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  border-bottom: 4px solid rgba(204, 204, 204, 0.4);
}

#mainNav #branding {
  margin-left: 3rem;
}

#mainNav #branding .fa-envelope {
  color: var(--primary-color);
}

#mainNav #branding span {
  color: var(--primary-color);
}

#mainNav #menuBtn .fa-compass {
  font-size: 2.8rem;
  color: #ccc;
  margin-right: 3rem;
  transition: 0.3s;
}

#mainNav #menuBtn .fa-compass:hover {
  color: #a6a6a6;
  transform: scale(0.95);
}

#mainNav #menuModal {
  display: flex;
  align-items: center;
}

#menu {
  background: rgba(14, 47, 62, 0.7) center center/cover no-repeat;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  font-size: 2rem;
  display: none;
  animation-name: modalOpen;
  animation-duration: 1s;
}

#menu #closeDiv {
  text-align: right;
  margin: 2rem 2rem 0 0;
}

#menu a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

#menu a:hover {
  color: #ccc;
}

#menu #menu-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20vh;
}

#menu #menu-list a {
  padding-bottom: 1rem;
}

/* Showcase */
#showcase {
  height: 600px;
  width: 100%;
  display: flex;
}

#showcase #showcase-left {
  color: #fff;
  font-size: 400px;
  width: 40%;
  height: 100%;
  display: flex;
  align-items: center;
}

#showcase #showcase-left i {
  color: #f4f4f4;
}

#showcase #showcase-right {
  color: var(--primary-color);
  height: 100%;
  width: 60%;
  margin-right: 5rem;
  margin-top: 10vh;
  text-align: center;
}

#showcase #showcase-right h1 {
  font-size: 4rem;
  padding-bottom: 4rem;
  text-align: center;
}

#showcase #showcase-right p {
  font-size: 2.2rem;
  color: #fff;
}

#showcase #showcase-right p i {
  color: #05c46b;
  padding: 0 1rem 1rem 2rem;
}

/* Home Page Call To Action */
#callToAction {
  color: #fff;
  background-color: #ff4d4d;
  height: 80px;
  width: 100%;
}

#callToAction a {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  font-weight: 500;
  color: #f4f4f4;
}

#callToAction a:hover {
  background-color: #ff3333;
}

/* Newsletter Sign Up */
#newsletter {
  height: 120px;
  background-color: var(--secondary-color);
  color: white;
  font-weight: 500;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#newsletter form {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

#newsletter form #newsInput {
  height: 40px;
  font-size: 26px;
  border-radius: 20px;
  width: 70%;
  outline: none;
  border: none;
  margin-right: 2rem;
}

#newsletter form #newsInput:focus {
  transform: scale(1.1);
}

#newsletter form #submitBtn {
  padding: 12px;
  font-size: 18px;
  border: 2px solid #ccc;
  border-radius: 10px;
  color: white;
  background: var(--secondary-color);
  cursor: pointer;
  transition: 0.4s;
}

#newsletter form #submitBtn:hover {
  background-color: #fff;
  color: var(--secondary-color);
}

/* Find Us Info */
#location {
  width: 100%;
  height: 600px;
  background-color: #f4f4f4;
  font-weight: 500;
  display: flex;
}

#details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 50%;
  margin-left: 2rem;
  color: #333;
}

#details h2 {
  margin-bottom: 2rem;
  width: 60%;
  color: var(--primary-color);
}

#details hr {
  width: 50%;
  height: 5px;
  margin-bottom: 2rem;
}

#details p {
  padding-bottom: 2rem;
  font-size: 1.5rem;
}

#details i {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

#mapid { 
  height: 100%;
  width: 50%;
}

/* Main Footer Area */
#footer-main {
  color: #f4f4f4;
  height: 230px;
  display: flex;
  justify-content: space-around;
  border-top: 4px solid rgba(204, 204, 204, 0.4);
  background-color: #184e67;
}

#footer-main span {
  color: var(--primary-color);
  font-weight: 500;
}

#footer-main #footerLogo {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#footer-main #footerLogo h3 .fa-envelope {
  color: var(--primary-color);
}

#footer-main #footerLogo h3 span {
  color: var(--primary-color);
}

#footer-main #footerSocial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 7%;
}

#footer-main #footerSocial #socialLogos {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 1rem;
  font-size: 2.5rem;
}

#footer-main #footerSocial #facebook,
#footer-main #footerSocial #twitter {
  color: #ccc;
  transition: 0.3s;
}

#footer-main #footerSocial #facebook:hover {
  color: #1877f2;
}

#footer-main #footerSocial #twitter:hover {
  color: #1da1f2;
}

#footer-main #siteLinks {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

#footer-main #siteLinks #left-links {
  display: flex;
}

#footer-main #siteLinks #right-links {
  display: flex;
}

#footer-main #siteLinks .footer-title {
  padding-bottom: 1rem;
}

#footer-main #siteLinks .pipe {
  padding: 0 5px 0 5px;
}

#footer-main #siteLinks a:hover {
  color: #ccc;
}

/* Footer bottom */
#footer-bottom {
  color: #f4f4f4;
  font-weight: 500;
  background-color: #133f53;
}

#footer-bottom p {
  text-align: center;
  padding: 10px 0 10px 0;
}

/* CONTACT PAGE */

/* Contact Form */
#contact-area {
  height: 800px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10rem;
}

#contact-area h1 {
  color: var(--primary-color);
  margin: 2rem 0 2rem 0;
}

#contact-area h1 span {
  color: #fff;
}

#contact-form {
  display: flex;
  flex-direction: column;
  border: 3px solid #ccc;
  border-radius: 8px;
}

#contact-form form {
  display: flex;
  flex-direction: column;
  padding: 50px;
  width: 50vw;
}

#contact-form label {
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: #f4f4f4;
}

#contact-form input {
  margin-bottom: 1.2rem;
  height: 40px;
  border-radius: 5px;
  font-size: 24px;
}

#contact-form input[type=text],
#contact-form input[type=email] {
  transition: 0.3s;
}

#contact-form input[type=text]:focus,
#contact-form input[type=email]:focus {
  outline: none;
  box-shadow: 2px 2px 5px 3px rgb(77, 77, 77, 0.4);
}

#contact-form input[type=submit] {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

#contact-form input[type=submit]:hover {
  background-color: #ff3333;
}

#contact-form textarea {
  font-size: 20px;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

/* SERVICES PAGE */
#services {
  margin: 3rem 4rem 3rem 4rem;
  color: #fff;
}

#services .service {
  margin-bottom: 2rem;
}

#services .service h1 {
  margin-bottom: 3rem;
}

#services .service h2 {
  color: #ccc;
}

#services .service i {
  color: var(--primary-color);
}

/* ABOUT PAGE */
#about {
  color: #fff;
  margin: 3rem 4rem 3rem 4rem;
}

#about h1 {
  margin-bottom: 3rem;
}

#about h1 span {
  color: var(--primary-color);
}

#about p {
  padding-bottom: 2rem;
}

/* Animation Keyframes */
@keyframes modalOpen {
  from {opacity: 0}
  to {opacity: 1}
}

@media (max-width: 500px) {
  #showcase #showcase-left {
    display: none;
  }

  #showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #showcase #showcase-right h1 {
    font-size: 3rem;
    text-align: center;
  }

  #showcase #showcase-right p {
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }

  #callToAction {
    font-size: 1rem;
  }

  #newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
  }

  #newsletter p {
    margin-bottom: .5rem;
    margin-top: .5rem;
  }

  #newsletter form {
    margin-bottom: 1rem;
  }

  #location {
    display: flex;
    flex-direction: column;
    height: 800px;
  }

  #location h2 {
    margin-top: 1rem;
  }

  #location #mapid {
    width: 100vw;
    height: 400px !important;
  }

  #footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
  }

  #footerLogo {
    margin: 1rem 0 2rem 0;
    text-align: center;
  }

  #footerSocial {
    text-align: center;
    margin-bottom: 2rem;
  }

  #contact-form form {
    width: 80vw;
  }
}