* {
  margin: 0;
  /* border: 1px solid orange; */
}
/* BODY */
body {
  background-color: rgb(255, 255, 255);
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: repeat(4, auto);
}

/* HEADER */
header {
  background-color: rgb(122, 93, 124);
  color: rgb(253, 243, 100);
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-rows: auto auto;
}

.header-logo-container {
  grid-column: 1/2;
  grid-row: 1/3;
}

.header-logo-image {
  display: block;
  width: 100%;
  max-height: 200px;
  max-width: 200px;
}

.header-text-container {
  grid-column: 2/3;
  grid-row: 2/3;
  align-self: flex-end;
  justify-self: flex-end;
}

.header-text {
  font-size: 2rem;
}

/* MAIN */

main {
  padding: 4rem;
  display: grid;
  gap: 4rem;
}
/* NAV */
.navigation-desktop {
  margin: 30px 4rem 0 4rem;
  padding: 30px 50px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.button-menu {
  background-color: rgb(92, 70, 94);
  border-radius: 8rem;
  border: 3px solid rgb(253, 243, 100);
  padding: 0.5rem 2rem;
  font-size: x-large;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgb(253, 243, 100);
}
/* SECTION-ONE */
.main-section-one {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 600px;
}
.main-side-img {
  background-image: url("/img/main-img.avif");
  background-repeat: no-repeat;
  background-size: 100%;
}

.main-side-container {
  background-color: rgb(92, 70, 94);
  color: rgb(253, 243, 100);
}

h1 {
  font-weight: bold;
  font-size: 60px;
  padding: 15px;
}

p {
  padding: 20px;
  font-size: 25px;
  line-height: 34px;
}
/* SECTION TWO */
.main-section-two {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: 300px;
  gap: 1rem;
}

.gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: hsla(180, 67%, 74%, 0.5);
}
/* FOOTER */
footer {
  padding-top: 40px;
  background-color: rgb(118, 90, 121);
  color: rgb(253, 243, 100);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-links-container {
  display: flex;
  gap: 20px;
}

@media (max-width: 600px) {
  body {
    /* background-color: aqua; */
  }

  span {
    border: 3.5px solid rgb(253, 243, 100);
    border-radius: 3rem;
    width: 30px;
  }
  .menu-mobile {
    display: flex;
    flex-direction: column;
    gap: 5.5px;
    grid-column: 2/3;
    grid-row: 1/2;
    align-items: flex-end;
    padding: 3rem;
  }

  .header-text {
    font-size: 1.1rem;
  }

  /* MAIN */

  main {
    padding: 0;
    display: grid;
    gap: 1.5rem;
  }

  .navigation-desktop {
    display: none;
  }

  /* SECTION-ONE */
  .main-section-one {
    grid-template-columns: 1fr;
  }
  .main-side-img {
    background-image: url("/img/main-img.avif");
    background-repeat: no-repeat;
    background-size: 100%;
  }

  p {
    padding: 20px;
    font-size: 20px;
  }

  /* SECTION TWO */
  .main-section-two {
    grid-template-columns: repeat(2, auto);
    gap: 0.5rem;
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links-container {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    gap: 20px;
  }

  .footer-paragraph {
    align-self: center;
  }

  .button-menu {
    border: 2px solid rgb(253, 243, 100);
    font-size: small;
  }
}
