*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #D3B7D8;
  background-image: url(../public/bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  color: #280E3B;
}

.section {
  margin: 10rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section .title {
  text-align: center;
}
.section .decoration-title {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  font-family: "Times New Roman", Times, serif;
  z-index: -1;
  color: #D3B7D8;
  opacity: 0.5;
}
.section .decoration {
  margin: 1rem 0;
  width: 50px;
  height: 50px;
}

a {
  cursor: pointer;
}

h1, h2, h3, h4, h5, p {
  letter-spacing: 0.1rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  h1, h2, h3, h4, h5, p {
    letter-spacing: 0.2rem;
  }
}

h1 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
}

h2 {
  color: #632A7E;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.8rem;
  }
}

h4 {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.4rem;
  }
}

h5 {
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.2rem;
  }
}

p {
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  p {
    font-size: 1rem;
  }
}

header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-inline: 20px;
  position: relative;
  text-align: center;
  background-image: url(../public/hero.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
header #title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 12rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media (min-width: 768px) {
  header #title {
    width: 18rem;
    height: 18rem;
  }
}
header #title p {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5c5c5c;
}
header nav {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  background-color: transparent;
  transition: 0.5s;
  z-index: 10;
}
header nav .title {
  all: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 1.5rem;
  padding: 0 1rem;
  color: #090a0d;
  cursor: pointer;
}
@media (max-width: 768px) {
  header nav .title {
    color: #f1f1f1;
  }
}
header nav .title:hover {
  background-color: #D3B7D8;
  color: #090a0d;
}
header nav .links {
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  flex-direction: column;
  width: 50vw;
  height: 100vh;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transform: translateX(100%);
  transition: 0.3s;
  cursor: pointer;
}
header nav .links.show {
  display: flex;
  transform: translateX(0);
  transition: 0.3s;
}
header nav .links :first-child {
  margin-top: 5rem;
}
header nav .links a {
  margin: 1rem 0;
  text-decoration: none;
  color: #f1f1f1;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  header nav .links {
    transform: translateX(0);
    width: 80%;
    height: 70px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: none;
  }
  header nav .links :first-child, header nav .links a {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    color: #090a0d;
    font-size: 0.6rem;
  }
}
@media (min-width: 768px) and (min-width: 425px) {
  header nav .links :first-child, header nav .links a {
    font-size: 1rem;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  header nav .links :first-child, header nav .links a {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  header nav .links :first-child:hover, header nav .links a:hover {
    background-color: #D3B7D8;
    color: #090a0d;
  }
}
header nav .hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 1rem;
  z-index: 20;
}
header nav .hamburger.hidden {
  visibility: hidden;
}
header nav .hamburger img {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  header nav .hamburger {
    display: none;
  }
}
header .sticky {
  position: fixed;
  top: 0;
  background-color: #280E3B;
  box-shadow: 0 0 20px rgba(255, 210, 210, 0.2);
  transition: 0.5s;
}
header .sticky .title {
  color: #f1f1f1;
}
header .sticky .links {
  top: 0;
  background-color: #280E3B;
}
header .sticky .links a {
  color: #f1f1f1;
}
header .sticky .hamburger img {
  filter: invert(100%);
}

#about .content-box {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
#about .content-box .img-box {
  padding: 2rem;
  width: 80%;
}
#about .content-box .img-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#about .content-box .text-box {
  background-color: rgba(99, 42, 126, 0.2);
  border-radius: 20px;
  width: 80%;
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#about .content-box .text-box p {
  color: #632A7E;
}
#about .content-box .text-box p b {
  font-weight: 900;
}
#about .content-box .text-box p a {
  all: unset;
  cursor: pointer;
}
#about .content-box .text-box p a:hover {
  color: #f1f1f1;
}
@media (min-width: 768px) {
  #about .content-box .img-box, #about .content-box .text-box {
    width: 40%;
  }
}

#menu .menu-collection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 600px;
}
#menu .menu-collection .menu-item {
  width: 100%;
  padding: 1rem;
}
#menu .menu-collection .menu-item img {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#gallery h5 {
  margin-top: 1rem;
  color: #d0ad00;
}
#gallery .tab-container {
  margin-top: 2rem;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#gallery .tab-container .tabs {
  width: 100%;
  max-width: 768px;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  background-color: #D3B7D8;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 425px) {
  #gallery .tab-container .tabs {
    flex-direction: row;
  }
}
#gallery .tab-container .tabs .tab {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  width: 100%;
  color: #280E3B;
  transition: 0.3s;
}
#gallery .tab-container .tabs .tab.active {
  background-color: #280E3B;
  color: #D3B7D8;
  transform: 0.3s;
}
#gallery .tab-container .tab-contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#gallery .tab-container .tab-contents .tab-content {
  display: none;
}
#gallery .tab-container .tab-contents .tab-content.active {
  width: 100%;
  max-width: 1024px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#gallery .tab-container .tab-contents .tab-content a {
  width: 100%;
  margin: 0.5rem;
  padding: 0.5rem;
  transition: 0.3s;
}
#gallery .tab-container .tab-contents .tab-content a:hover {
  transform: scale(1.1);
  transition: 0.3s;
}
@media (min-width: 425px) {
  #gallery .tab-container .tab-contents .tab-content a {
    width: 50%;
  }
}
@media (min-width: 768px) {
  #gallery .tab-container .tab-contents .tab-content a {
    width: 30%;
  }
}
#gallery .tab-container .tab-contents .tab-content a img {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#contact h5 {
  margin-top: 1rem;
  color: #d0ad00;
}
#contact .contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width: 100vw;
  margin-top: 3rem;
}
#contact .contact-container .info-collection {
  width: 80%;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
@media (min-width: 768px) {
  #contact .contact-container .info-collection {
    width: 30%;
  }
}
#contact .contact-container .info-collection .info-item {
  margin: 1rem 0;
}
#contact .contact-container .info-collection .info-item img {
  width: 25px;
  height: 25px;
  margin-right: 1.5rem;
}
#contact .contact-container .info-collection .info-item a {
  all: unset;
  cursor: pointer;
}
#contact .contact-container .info-collection .info-item a:hover {
  color: #ffd700;
}
#contact .contact-container .map-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  #contact .contact-container .map-box {
    width: 50%;
  }
}

footer {
  background-color: #280E3B;
}
footer p {
  padding: 0.5rem 0;
  color: #f1f1f1;
}
footer a {
  all: unset;
}/*# sourceMappingURL=style.css.map */