@charset "utf-8";

html, body {
  font-family: "Roboto", sans-serif;
  background-color: #f4f3ee;
  color: #463f3a;
}

header {
  width: 100%;
}

h1 {
  font-size: xx-large;
  line-height: 1.2;
  margin-bottom: .35em;
}

p {
  font-size: medium;
  font-weight: normal;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 1em;
  text-align: justify;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f3ee;

  margin: 0px auto;
  padding: 30px 20px;
  box-sizing: border-box;
}

.logo {
  margin: 0;
  line-height: 0;
}

.logoimg {
  width: 150px;
}

.logo a {
  font: small Futura-pt;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.line {
  width: 30px;
  height: 1px;
  background-color: #463f3a;
  margin: 2px 0;
}

.nav-menu {
  display: flex;
  justify-content: space-evenly;
  align-items: start;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #f4f3ee;
  padding-top: 80px;
  transition: right 0.8s ease;
  z-index: 1;
}

.nav-menu ul {
  list-style-type: none;
  margin-right: 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-menu ul li {
  width: 100%;
  text-align: center;
  margin: 20px 10px;
}

.nav-menu a {
  color: #463f3a;
  text-decoration: none;
}

.nav-menu a:hover {
  opacity: 0.5;
}

.nav-menu.show {
  right: 0;
}

.social-icons {
  margin-left: 30px;
}

.icon img {
  height: 15px;
  margin-left: 10px;
}

.icon:hover {
  opacity: 0.5;
}

.hero {
  width: 94%;
  height: 450px;
  background-image: url(panorama.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-right: auto;
  margin-left: auto;
  border-radius: 10px;
  box-shadow: rgb(180, 180, 180) 5px 5px 25px,
              rgb(180, 180, 180) -5px -5px 25px;
}

.herooverly {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #e0afa034;
  padding: 0px 20px;
  border-radius: 10px;
}

.heromessage {
  max-width: 700px;
  color: #f4f3ee;
}

button {
  font-size: small;
  text-transform: capitalize;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 20px 30px;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: #f4f3ee;
  color: #463f3a;
  cursor: pointer;
}

/* Main Section Styles */

main {
  width: 100%;
  margin: 0px auto;
}

main > section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 4em;
  margin: 0px auto;
  padding: 80px 20px;
}

/* About Section Styles */

.aboutimage {
  background-image: url(jn.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 250px;
  border-radius: 10px;
  box-shadow: rgb(180, 180, 180) 5px 5px 25px,
              rgb(180, 180, 180) -5px -5px 25px;
}

.aboutinfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0px auto;
}

.aboutinfo p:last-of-type, .aboutinfo button {
  margin-bottom: 0px;
}

.aboutinfo p a {
  color: #463f3a;
  text-decoration: underline;
}

.aboutinfo button {
  background-color: #463f3a;
  color: #f4f3ee;
}

/* Meeting Section Styles */

.meetings {
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px 0px;
}

.meetings .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 94%;
  max-width: 1280px;
  background-color: #f4f3ee;
  padding: 10px 20px;
  border-radius: 10px;
}

.meetingsmessage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 500px;
}

.meetingsmessage button {
  width: 200px;
  background-color: #463f3a;
  color: #f4f3ee;
}

.meetingsinfo {
  width: 100%;
  max-width: 680px;
  height: 350px;
  overflow: auto;
}

.meetingsinfo div {
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
  outline: 3px solid rgba(0, 0, 0, 0.047);
  background-color: #bcb8b1;
  color: #463f3a;
}

.meetingsinfo div h3 {
  text-transform: uppercase;
}

.meetingsinfo div p:last-of-type {
  font-weight: 500;
}

/* Width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Podcasts Section Styles */

.podcasts .container {
  display: grid;
  width: 94%;
  max-width: 1280px;
  height: 300px;
  margin: 0px auto;
  padding: 0px 20px;
  box-shadow: rgb(180, 180, 180) 5px 5px 25px,
              rgb(180, 180, 180) -5px -5px 25px;
  border-radius: 10px;
  background-color: #463f3a;
}

.podcasts .container div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  background-color: transparent;
}

.podcastsmessage {
  color: #f4f3ee;
  grid-column: 1/2;
  grid-row: 1/2;
  z-index: 999;
}

.podcasts button {
  max-width: 200px;
  background-color: #f4f3ee;
  color: #463f3a;
}

.podcastsimage {
  grid-column: 1/2;
  grid-row: 1/2;
  background-image: url(mic.png);
  background-size: cover;
  background-position: center;
}

/* Footer Styles Section */

footer {
  padding-bottom: 80px;
}

.contactmessage {
  margin-bottom: 1em;
}

footer section {
  display: flex;
  flex-direction: column;
  width: 94%;
  max-width: 1280px;
  margin: 0px auto;
}

footer a {
  color: #f4f3ee;
}

footer p a {
  text-decoration: underline;
}

footer h3 {
  font-size: 21px;
  margin-bottom: 1em;
}

.Raleway-rsslogo {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

footer .wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  background-color: #463f3a;
  margin-top: 40px;
  padding: 40px 0px;
}

footer .container {
  display: flex;
  justify-content: space-between;
  width: 94%;
  max-width: 1280px;
}

footer .container div img {
  width: 150px;
  margin-bottom: 1em;
}

footer .container div h4 {
  margin-bottom: 1em;
}

footer .container div li {
  list-style: none;
  margin-bottom: 1em;
}

footer .container div li:last-of-type {
  margin-bottom: 0em;
}

@media only screen and (min-width: 769px) {

  .navbar {
    width: 94%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger-menu {
    display: none;
  }

  .logo a {
    font-size: large;
  }

  .nav-menu {
    justify-content: end;
    position: relative;
    top: 0;
    right: 0%;
    width: 50%;
    padding-top: 0px;
  }

  .nav-menu ul {
    list-style-type: none;
    margin-right: 0px;
    padding: 0;
    display: flex;
    flex-direction: row;
  }

  .nav-menu ul li {
    text-align: right;
    margin: 0px 10px;
  }

  .nav-menu ul li:last-of-type {
    margin-right: 0px;
  }

  .hero {
    height: 450px;
  }

  .about {
    width: 94%;
    padding-left: 0px;
    padding-right: 0px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .aboutimage li {
    font-size: 42px;
  }

  .aboutinfo {
    justify-content: center;

  }

  .podcasts button {
    max-width: 250px;
  }

  .podcastsmessage {
    width: 50%;
    grid-column: 1/2;
  }

  .podcastsimage {
    grid-column: 2/3;
  }
}

@media only screen and (min-width: 1025px) {

  h1 {
    font-size: xxx-large;
  }
  
  p {
    font-size: large;
  }

  .hero {
    height: 650px;
  }

  .about {
    width: 94%;
    max-width: 1280px;
    padding-left: 0px;
    padding-right: 0px;
    flex-wrap: nowrap;
  }

  button {
    font-size: medium;
  }

  .aboutimage {
    width: 50%;
    height: 300px;
    font-size: xx-large;
  }
  
  .aboutinfo {
    width: 50%;
    margin: 0px auto;
  }

  .podcastsmessage {
    width: 100%;
    grid-column: 1/2;
  }

  .podcasts button {
    max-width: 250px;
  }

  .podcastsimage {
    min-width: 300px;
    grid-column: 2/3;
  }

}
