@import url("https://fonts.googleapis.com/css2?family=Poiret+One:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: Poiret One, Futura, Arial, sans-serif;
  box-sizing: border-box;
  font-weight: bold;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--body-background-color);
  color: var(--font-color);
  transition: background 0.5s, color 0.5s;
}

.home-logo {
  display: flex;
  width: 60%;
}

.home-logo img:nth-child(1) {
  width: 70px;
  height: 40px;
}

nav {
  display: none;
}

nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 5px;
}

nav ul li a {
  color: #000;
  text-decoration: none;
  font-size: 1.8rem;
  position: relative;
  padding: 10px;
}

.fa-bars {
  margin-right: 0.5rem;
}

.fa-bars:hover {
  cursor: pointer;
}

nav .fa-solid {
  display: none;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #fff;
  padding: .5rem 0;
}

.desktop-nav a {
  text-decoration: none;
  color: #000;
  font-size: 1.8rem;
  transition: color 0.3s ease-in-out;
}

.desktop-nav a:hover {
  color: rgb(0, 135, 253);
}

.logo-container {
  width: 10%;
  text-align: center;
}

.logo-container p {
  font-size: 1.4rem;
}

.logo-container img {
  width: 60%;
}

#header-section {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.front {
  flex: 1;
  width: 100%;
  min-height: 0;
      background-color: rgb(245, 245, 245);
}

.front img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills space without squishing */
  display: block; /* removes bottom inline gap */
    padding-left: 0;
  padding-right: 0;
  transition: padding 0.2s ease-out; /* smooth transition */
}

#about-section {
  width: 100%;
  height: 100vh;
  display: flex;
  padding: 2rem;
  gap: 2rem;
    background-color: rgb(245, 245, 245);
}

.about-section-inner {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-section-inner img {
  width: 100%;
  height: 100%;
  /* border-radius: 50%; */
  /* box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px,
    rgba(0, 0, 0, 0.19) 0px 6px 20px 0px; */
}

.about-section-inner.left {
  padding: 2rem;
}

.about-section-inner.left h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.about-section-inner.left p {
  font-size: 1.9rem;
  line-height: 1.7;
}

.about-middle {
  margin: 2rem 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 1rem 0;
}

#name-section {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 2.3rem;
  padding: 6rem 2rem;
  position: relative;
  background-color: rgb(255, 255, 255);
  color: #000000;
}

#menu-section {
  width: 100%;
  background-color: rgb(245, 245, 245);
  /* background-image: url("plaid-bkgd.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  display: flex;
  justify-content: center;
  /* padding: 4rem; */
  text-align: center;
    margin: 4rem 0;
}

/* Pics Slide Scroll */
/*** LOGO SCROLL ***/
@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.pics {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 2rem;
  display: flex;
  gap: 2rem;
}

.pics:hover .pics-slide {
  animation-play-state: paused;
}

.pics-slide {
 display: flex;
 gap: 4rem;
 justify-content: center;
  animation: 35s slide infinite linear;
}

.pics-slide div {
    vertical-align: middle; 
}

.pics-slide img {
  width: 40px;
}

.francais {
  font-size: 1.7rem;
  color: rgb(0, 135, 253);
}

.anglais {
    font-size: 1.4rem;
    font-style: italic;
    text-align: center;
}

.menu-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 2rem;
  width: 80%;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px,
    rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;
}

.menu-container h2 {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.menu-contents {
  display: flex;
}

.menu-col {
  flex: 1 1 33%;
}

.menu-item {
  margin-bottom: 2rem;
}

.menu-item h3 {
  color: rgb(0, 135, 253);
  font-weight: bold;
  font-size: 1.9rem;
}

.menu-item p {
  font-size: 1.4rem;
  font-weight: bold;
}

.gallery-container {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gallery-container h2 {
  font-size: 4rem;
}

.gallery-wrapper {
  display: flex;
  gap: 1rem;
}

.gallery-wrapper div {
  flex: 1 1 33%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-wrapper div img {
  width: 100%;
  /* border-radius: 50%; */
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px,
    rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;
}

.gallery-container-center img {
  height: 50%;
}

@media (max-width: 768px) {
  .gallery-wrapper {
    flex-direction: column;
  }

  .showcase-wrapper {
    padding: 1rem;
  }
}

footer {
  background-color: rgb(255, 171,32);
  transition: background-color .7s ease-in-out;
  width: 100%;
  display: flex;
  color: #fff;
}

footer.in-view {
  background-color: rgb(24, 75, 156);
}

footer h3 {
  font-size: 1.6rem;
}

footer p {
  font-size: 1.2rem;
  margin: 6px 0;
}

.footer-left,
.footer-right {
  flex: 1 1 50%;
}

.footer-left,
.footer-right {
  padding: 2rem;
}

.fa-brands {
  font-size: 1.7rem;
  margin-right: 8px;
  color: rgb(255, 171,32);
}

footer a {
  text-decoration: none;
  font-size: 1.4rem;
  color: #fff;
  transition: color 0.2s ease-in-out;
}

footer a:hover {
  color: rgb(255, 171,32);
}

.footer-logo {
  width: 30%;
  margin-bottom: 2rem !important;
}

.footer-right iframe {
  width: 100%;
}

.copyright {
  font-size: 0.8rem;
}

.credit,
.credit a {
  font-size: 0.5rem;
}

@media only screen and (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px;
    background-color: rgb(255, 255, 255);
  }

  nav .fa-solid {
    display: block;
    font-size: 25px;
  }

  nav ul {
    /* -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px); */
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    padding-top: 50px;
    z-index: 2;
    transition: right 0.5s;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px 0px,
      rgba(0, 0, 0, 0.19) 0px 6px 20px 0px;
  }

  nav ul li {
    display: block;
    margin: 25px;
  }

  nav ul .fa-solid {
    position: absolute;
    top: 25px;
    left: 25px;
    cursor: pointer;
  }

  nav ul li a {
    padding: 0px;
  }

  nav ul li a:hover {
    background-color: transparent;
    color: #f7f7f7;
  }

    .front img {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #about-section {
    height: 100%;
    flex-direction: column;
    padding: 0;
  }

  .about-section-inner.left p,
  #name-section {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  /* .about-section-inner img {
    width: 90%;
    margin-bottom: 2rem;
  } */

  #name-section {
    padding: 2rem;
    text-align: center;
  }

  #name-section img {
    width: 100%;
  }

  #menu-section {
    height: 100%;
    padding: 1rem;
  }

  .menu-container {
    width: 100%;
  }

  .menu-contents {
    flex-direction: column;
  }

  .gallery-container {
    height: 100%;
    padding: 1rem;
  }

  footer {
    flex-direction: column-reverse;
  }

  footer p {
    font-size: 1.1rem;
  }

  .footer-right {
    padding: 1rem;
  }

  .footer-left img {
    display: block;
    margin: 0 auto;
    width: 50%;
  }

  .copyright,
  .credit,
  .credit a {
    text-align: center;
  }
}
