/* base.html template content */
/* Apply the custom font only to the main header title */

/* 
---CLASS LIST---
main-header - the main header nav bar (responsive)
main-logo - the logo on the navbar
 */

/* 
---REWORKED---
h1.main-title {
font-family: "Abhaya Libre", serif;
}
 */


@import url('https://fonts.googleapis.com/css2?family=Andada+Pro:ital,wght@0,400..840;1,400..840&display=swap');


/* defining custom colors */
:root {
  --green: #024f04;
  --darker-green: #013703; 
  --gold: #D6aD60;
  --cream: #fffeda;
  --dark: rgb(33, 37, 41);
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Andada Pro", serif;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.header-logo {
  max-height: 60px;
  max-width: 60%;
  min-height: 40px;
  margin: 15px;
  cursor: pointer;
  /*padding: 7px;*/
  /* TODO make the logo unselectable */
}

/* TODO .header-nav (the navigation bar by the logo at the top - also set it to 60px max height (the same height))*/

.header-nav {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.header-nav * {
}

.main-header {
  background-color: var(--green);
  opacity: 1;
  width: 100%;
}

.stuck {
  position: fixed !important;
  z-index: 10;
}


/*CAUTION: SKETCHY MARGIN*/
.header-nav ul { 
  /* height: 60px; */
  height: 90px;
}

/* CENTERING TEXT IN <li>s HERE! DO NOT TOUCH ANYTHING BELOW*/
.header-nav ul li {
  display: grid;
  align-items: center; 
}

/* TESTING THE HOVER OPTION */ 
.header-nav ul li:hover a {
/*   color: red; */
}

/*
.header-nav ul li:after {
  position: absolute;
  content: '';
  background-color: red;
  height: 100px;
  width: 100%;
  top: 100%;
}
*/

/* CENTERING TEXT IN <li>s HERE! DO NOT TOUCH ANYTHING ABOVE*/

#main-header-container {
  padding-bottom: 60px; /* TODO CHANGE 60px IF NEEDED */
}

/* TODO EXPERIMENTAL - ERASE BELOW IF NEEDED */
/* TODO EXPERIMENTAL - ERASE ABOVE IF NEEDED */


.nav .nav-item a {
  font-family: "Andada Pro", serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--cream);
}

.nav-item a {
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  padding: 0 5px 0 5px !important;
}

.nav-item a:hover {
  color: var(--gold);
}

.services-item {
  text-decoration: none;
}

.services-item a {
  color: black;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
}

.services-item a:hover {
  color: var(--gold);
  margin-left: 10px;
}

.services-list {
  line-height: 2;
}

.offcanvas {
  background-color: var(--green);
}

.offcanvas .offcanvas-header .offcanvas-title {
  font-family: "Andada Pro", serif;
  font-weight: bold;
  color: var(--cream);
  font-size: 18px;
} 

.footer-icon {
  max-height: 30px;
}


/* the header-image-container ID is for the header container that will be adapted with JS */
#header-image-container {
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#header-image-container::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
  display: block;
  padding-top: 56.25%; /* Same as the container to maintain aspect ratio */
}

#header-image-container div {
  position: absolute;
  /* top: 50%; */
  /* top: 25%; */ /* Set it to the height as requested */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 10px;
  /*            background: rgba(0, 0, 0, 0.5); /* Optional: Add a semi-transparent background for better readability */*/
  border-radius: 10px;
  width: 100%;
}


/* some magic happened here, do not touch anything below */
/*
.header-image-container {
  width: 100%;
  background-image: url("../test/massage.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.header-image-container::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.5;
  display: block;
  padding-top: 56.25%;
}

*/

 /* the padding-top ^ is the same as the container to maintain aspect ratio */


/* do not touch anything above*/



.header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 10px;
  /*            background: rgba(0, 0, 0, 0.5); /* Optional: Add a semi-transparent background for better readability */*/
  border-radius: 10px;
  width: 100%;
}

/*
.header-content h1 {
  margin: 0;
  font-size: 2em;
}

.header-content p {
  margin: 0;
  font-size: 1.2em;
}
*/

/* language select */
.language-select {
  color: white;
  background: transparent;
  outline: none;
  max-width: 150px;
}

.language-select option {
  background-color: var(--dark);
  color: white;
}

.language-select:focus {
  outline: none;
}


.menu_dropdown {
  background-color: var(--darker-green);
/*  height: 100px; */
  position: absolute;
  width: 250%;
  left: -75%;
  top: 100%;
  display: none;
  color: var(--dark);
  margin: 3px;
  margin-top: 0;
  padding: 10px;
}

.menu_dropdown a, .offcanvas_service_ul li a {
  text-decoration: none;
  display: block;
  /* color: yellow; */
  margin-left: 0px;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  scale: 1;
}


.menu_dropdown a:hover, .offcanvas_service_ul li a:hover {
  text-decoration: underline;
  margin-left: 10px;
  scale: 1.05; /* this scale pushes some elements so i had to disable it */
  color: var(--gold);
}


.offcanvas_service_ul li::marker {
  color: var(--cream);
}

.offcanvas_service_ul {
/*  list-style-type: " • ";*/
  list-style-type: " ‣ ";
}


/* languge switcher in the corner of the upper menu */

#corner-language-switcher {
  color: var(--cream);
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 10px;
  margin-right: 10px;
  transition-duration: 0.2s;
  transition-timing-function: ease-out;
  font-size: 18px;
}
@media (max-width: 600px) {
  #corner-language-switcher {
    font-size: 14px;
  }
}


/*
#corner-language-switcher a:hover {
  color: var(--gold);
}
*/

.green-gold-btn {
  background-color: var(--green);
  color: var(--cream);
  border: 1px solid var(--cream);
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  box-shadow: none;
}

.green-gold-btn:hover { 
  background-color: var(--green);
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: var(--gold) 0px 0px 10px;
}

.cream-black-btn {
  background-color: var(--cream);
  color: black;
  border: 1px solid var(--gold);
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}

.cream-black-btn:hover {
  box-shadow: var(--gold) 0px 0px 10px;
  background-color: var(--cream);
  color: black;
  border: 1px solid var(--gold);
}

#footer-logo {
  max-width: 90%;
  max-height: 65px;
  padding: 10px 0 10px 0;
}

header div {
  padding: 0 100px 0 100px;
}

@media (max-width: 870px) {
  header div {
    padding: 0 50px 0 50px;
  }
}

.check-unordered-list li {
  list-style-type: "✓ "
}

.arrow-unordered-list li {
  list-style-type: "‣ ";
}

.arrow-before {
  color: red;
}

td {
  vertical-align: top !important;
}

td p {
  margin-bottom: 10px !important;
}

tr td:first-child {
/*  background-color: yellow;*/
  padding-right: 30px !important;
}

tr td:first-child::before {
  content: "‣ ";
}

.spaced-out-list li {
  margin: 12px 0 12px 0;
}


#google-review-image {
  max-height: 50px;
}