:root {
  --purple: #800080;
  --brick-red: #AA4A44;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Montserrat", sans-serif;
  background-color: black;
  color: white;
  overflow-x: hidden;
  width: 100%;
}

/* text "Montserrat", sans-serif; headings "Libre Baskerville", serif; */

h1, h2, h3 {
  font-family: "Libre Baskerville", serif;
  text-decoration: underline;
  text-underline-offset: 20%;
  text-decoration-color: var(--brick-red);
}

a {
  text-decoration: none;
}



/*      ---     HEADER      ---     */


header {
  width: 100%;
  height: 15vh;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  min-height: 100px;
  position: sticky;
  top: 0;
  background-color: black;
  z-index: 2;
}

.header-left {
  height: 100%;
  width: 33%;
}

.logo-img {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img img {
  height: 14vh;
  min-height: 100px;
  border-radius: 50%;
  object-fit: contain;
}

.head-book-div {
  height: 100%;
  width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.head-book-div > .book-link {
  display: none;
}

.head-book-div a {
  display: none;
}

.menu-container {
  position: relative;
  z-index: 1000;
}


.hamburger {
  width: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  position: fixed;
  top: 5vh;
  left: 5vh;
  z-index: 1100;
}



.hamburger:active {
  background-color: var(--brick-red);
}

.hamburger div {
  height: 4px;
  background-color: white;
  border-radius: 2px;
}


.dropdown-menu {
  position: fixed;
  top: 2.5vh;
  left: 2.5vh;
  background-color: var(--brick-red);
  border: 1px solid var(--brick-red);
  flex-direction: column;
  padding: 2vh;
  display: flex; 
  z-index: 1090;
  overflow-y: auto;
  padding-top: 6vh;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border-radius: 5px;
  font-size: 1.3em;
}

.dropdown-menu a {
  color: white;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background-color: black;
  padding: 1em;
}

.dropdown-menu a:hover {
  opacity: 0.8;
}

.dropdown-menu a:active {
  background-color: var(--brick-red);
}

.dropdown-menu a:nth-child(3) {
  background-color: var(--brick-red);
  text-shadow: 0px 0px 12px var(--purple);
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  font-weight: bold;
}


.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.section-divider {
  width: 75%;
  height: 2px;
  background: linear-gradient(to right, white, var(--brick-red) 20% 80%, white);
  margin: 0px auto;
  opacity: 0.6;
  border-radius: 30px;
  z-index: -1;
  position: relative;
}

.section-divider-purple {
  width: 75%;
  height: 2px;
  background: var(--purple);
  margin: 0px auto;
  opacity: 0.6;
  border-radius: 100px;
  box-shadow: 0px 0px 2px 2px var(--purple);
  position: relative;
  z-index: 1;
} 

.sticky-divider {
  position: fixed;
  left: 12.5%;
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

  .hamburger {
    width: 60px;
    height: 40px;
  }

  .hamburger div {
    height: 6px;
  }
  
  .dropdown-menu {
    font-size: 1.75em;
    padding-top: 8vh;
  }
}

@media (min-width: 1025px) {

  header {
    position: static;
  }

  .sticky-divider {
    position: static;
  }

  .head-book-div > .book-link {
    display: block;
    position: fixed;
    right: 8.5vh;
    top: 5vh;
    z-index: 20;
    background-color: black;
  }

  .head-book-div a {
    display: inline-block;
    position: fixed;
    right: 8.5vh;
    top: 5vh;
    z-index: 20;
    background-color: black;
    border-radius: 30px;
  }

  .hamburger {
    top: 6.5vh;
    left: 8.5vh;
    width: 40px;
    height: 30px;
  }

  .hamburger div {
    height: 6px;

  }

  .dropdown-menu {
    top: 5vh;
    left: 6.5vh;
  }
}



/*      ---     MAIN      SECTION     ---     */


.serv-cost-sec {
  height: 85vh;
  min-height: 566px;
  width: 100%;
  text-align: center;
  padding-top: 40px;
  padding-left: 10px;
  padding-right: 10px;
}


.flex-service {
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  align-items: center;
  height: 75%;
}

.serv-cost-sec h1 {
  font-size: 1.5em;
}


.serv-cost-sec h2 {
  color: var(--brick-red);
  text-decoration: none;
  font-size: 1.25em;
  margin-top: 20px;
}

.serv-cost-sec p {
  padding: 10px;
  margin-bottom: 15px;
  font-style: italic;
  font-size: 1em;
}

.price {
  font-style: italic;
}

.book-link {
  color: var(--brick-red);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 24px;
  border: 2px solid var(--brick-red);
  border-radius: 30px;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  text-align: center;
  width: fit-content;
  max-width: 90vw;
}

.book-link:active {
  opacity: 0.75;
}

.book-link:hover {
  background-color: var(--brick-red);
  color: white;
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(139, 46, 46, 0.5);
  cursor: pointer;
}

.serv-book-div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  text-align: center;
}
.gallery-sec h1 {
  font-size: 1.5em;
  margin-bottom: 40px;
  margin-top: 4vh;
}

.grid-gallery {
  display: flex;
  flex-direction: column;
}

.gallery-item img {
  height: 200px;
  width: 200px;
  margin: 40px;
  border-radius: 10px;
  object-fit: cover;
  transition: 0.5s;
  border: 4px solid white;
}

.gallery-sec img:hover {
  transform: scale(1.03);
  cursor: pointer;
}

.gallery-sec img:active {
  transform: scale(0.97);
}



.insta-link {
  color: white;
  display: inline-block;
  transition: 0.3s;
  margin-bottom: 4vh;
  margin-top: 4vh;
  font-size: 0.8em;
  text-decoration: underline;
}


.insta-link:hover {
  transform: scale(1.03);
}

.insta-link:active {
  color: var(--brick-red);
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 25vh; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

.modal-content {
  margin: auto;
  display: block;
  width: 95%;
  height: 95vw;
  max-height: 380px;
  max-width: 380px;
  border-radius: 5px;
}

#img01 {
  object-fit: cover;
}

#img01:hover {
  transform: scale(1);
  cursor: auto;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

  .serv-cost-sec {
    padding: 60px;
  }

  .serv-cost-sec h1 {
    font-size: 2.5em;
  }

  .serv-cost-sec h2 {
    font-size: 2em;
  }

  .serv-cost-sec p {
    font-size: 1.5em;
  }

  .gallery-sec h1 {
    font-size: 2.5em;
    margin-bottom: 60px;
  }

  .gallery-sec h2 {
    font-size: 2em;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-sec img {
    height: 280px;
    width: 280px;
  }

  .modal-content {
    min-height: 520px;
    min-width: 520px;
  }

  .close {
    font-size: 100px;
  }

  .gallery-div a.insta-link {
    font-size: 1.15em;
    margin-top: 60px;
  }
}



@media (min-width: 1024px) {

  .serv-cost-sec h1 {
    margin-top: 20px;
  }

  .gallery-div {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  h1 {
    font-size: 2em;
  }

  h2 {
    font-size: 2.5em;
  }

  p {
    font-size: 1.65em;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .gallery-sec img {
    margin-top: 60px;
    margin-right: 5vw;
    margin-left: 5vw;
    height: 250px;
    width: 250px;
  }

  .gallery-sec a.insta-link {
    font-size: 0.45em;
    margin-top: 60px;
  }

  .modal-content {
    display: inline-block;
    min-height: 420px;
    min-width: 420px;
  }

}



/*         ---          FOOTER            ---          */


footer {
  height: 45vh;
  width: 100%;
  min-height: 265px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  width: 100%;
}

.footer-logo {
  height: 34%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  height: 10vh;
  min-height: 65px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-contact {
  height: 29%;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.footer-contact i {
  color: white;
  text-decoration: underline;
  text-decoration-color: var(--brick-red);
  font-size: 1.25em;
  margin: 5px;
}

footer h3:hover {
  transform: scale(1.03);
}

footer h3{
  transition: 0.5s;
}

.footer-book {
  height: 29%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  margin: 10px auto;
  font-size: 0.5em;
}

.footer-copyright p {
  margin: 5px;
  font-size: 1.25em;
}

.footer-copyright a {
  color: white;
  font-size: 1.25em;
  text-decoration: underline;
}

.footer-copyright a:active {
  color: var(--brick-red);
}




@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

  .book-link {
    font-size: 1.75em;
    padding: 20px 36px;
    border-radius: 50px;
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .footer-contact h3 {
    font-size: 2.25em;
  }

  .footer-copyright {
    font-size: 0.75em;
  }
}

@media (min-width: 1025px) {

  footer {
    height: 15vh;
    min-height: 100px;
    padding: 0;
    margin: 0;
  }

  .footer-content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .footer-contact {
    font-size: 1.15em;
    display: flex; 
    justify-content: center;
  }

  .footer-contact h3:last-of-type {
    margin-top: 10px;
  }
}

