@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");

:root {
  --primary-color: #2f5249;
  --primary-color-dark: #2f5249;
  --secondary-color: #97b067;
  --tertiary-color: #e3de61;
  
  --text-color: #333333;
  --text-light: #555555;
  --text-dark: #111111;
  
  --bg-primary-color-light: #8bc34a;
  --background-dark: #2f5249;
  --background-light: #f7f7f7;

  --accent-color: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lora", serif;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-primary-color-light);
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header img {
  width: auto;
  border-radius: 50%;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 20px;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li a {
  text-decoration: none;
  color: var(--primary-color-dark);
  font-weight: bold;
  cursor: pointer;
}

.breadcrumb li a:hover {
  color: var(--secondary-color);
}

main {
  background-color: var(--primary-color-dark);
  min-height: 100vh;
  padding-bottom: 50px;
  padding-top: 60px;
}

/* home */

.banner-hero {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease-in-out;
  opacity: 0.9;
}

input[type="radio"] {
  display: none;
}

.radio-label {
  width: 20px;
  height: 20px;
  border: 2px solid var(--tertiary-color);
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  position: relative;
  top: 485px;
  left: 47%;
}

@media (max-width: 425px) {
  .radio-label {
    left: 35%;
  }
}

@media (min-width: 426px) and (max-width: 768px) {
  .radio-label {
    left: 45%;
  }
}

.radio-label:hover {
  background-color: var(--background-light);
}

#banner1:checked ~ .banner-hero {
  background-image: url("../img/BannerHero.jpg");
}

#banner2:checked ~ .banner-hero {
  background-image: url("../img/BannerHero2.jpg");
}

#banner3:checked ~ .banner-hero {
  background-image: url("../img/testimonialUser.jpg");
}

.text-hero {
  font-family: "montserrat", sans-serif;
  width: 0 auto;
  background-color: var(--primary-color);
  opacity: 0.8;
  position: absolute;
  top: 45%;
  color: var(--accent-color);
  padding: 10px;
  font-size: 20px;
}

@media (min-width: 768px) {
  .text-hero {
    border-radius: 0 8px 8px 0;
    width: 70%;
    top: 45%;
  }
}

@media (min-width: 1024px) {
  .text-hero {
    width: 50%;
    top: 40%;
  }
}

@media (min-width: 1440px) {
  .text-hero {
    width: 40%;
  }
}

@media (min-width: 1920px) {
  .text-hero {
    width: 30%;
    top: 10%;
  }
}

@media (min-width: 2560px) {
  .text-hero {
    width: 20%;
    top: 24%;
  }
}

.text-hero p {
  font-size: 16px;
  padding-bottom: 10px;
}

.services {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: var(--secondary-color);
  padding: 30px;
  width: 90%;
  margin: 60px auto;
  border-radius: 8px;
  color: var(--text-light);
}

.services h2 {
  font-family: "Playfair Display SC", serif;
  margin-bottom: 20px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.services-container div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  justify-content: space-evenly;
}

.services-container p {
  font-family: "Montserrat", sans-serif;
  text-align: justify;
}

.testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-primary-color-light);
  border: 1px solid var(--primary-color);
  padding: 30px;
  width: 80%;
  margin: 50px auto;
  border-radius: 8px;
}

.testimonials blockquote {
  font-size: 14px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 10px;
  max-width: 400px;
  text-align: center;
}

.testimonial-container {
  display: flex;
  gap: 50px;
}

.testimonial-container div {
  display: flex;
  flex-direction: column;
  align-content: center;

  margin: auto;
  align-items: center;
}

.testimonials img {
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .testimonials img {
    display: none;
  }
  .testimonials blockquote {
    max-width: 300px;
  }
}

@media (max-width: 1024px) {
  .testimonials hr {
    display: none;
  }
  .testimonials img {
    width: 10px;
    height: 100px;
    margin: auto 0;
  }
}

@media (min-width: 768px) {
  .testimonials img {
    width: 150px;
    height: 150px;
  }
  .testimonials blockquote {
    font-size: 16px;
  }
}

.testimonials hr {
  width: 2px;
  height: 150px;
  background-color: var(--primary-color);
  border: none;
  margin: 0 20px;
}

.testimonials span {
  font-weight: bold;
  color: var(--text-dark);
  margin-top: 10px;
}

footer {
  background-color: var(--secondary-color);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

footer img {
  border-radius: 50%;
  margin: 0 5px;
}

/* About Page */

#about-container {
  text-align: center;
  padding: 50px 0;
  font-family: "montserrat", sans-serif;
  color: var(--text-color);
  font-size: 20px;
  margin-top: 70px;
}

.ourPhilosophy {
  width: 80%;
  margin: 0 auto 40px;
  padding: 40px;
  background-color: var(--secondary-color);
  border-radius: 12px;
}

.ourPhilosophy h1 {
  margin-bottom: 20px;
  font-family: "Playfair Display SC", serif;
}

.ourAmbients {
  background-color: var(--bg-primary-color-light);
  padding: 20px 20px 60px;
  width: 90%;
  margin: 0 auto;
  border-radius: 12px;
}

.ourAmbients h2 {
  margin: 20px 0;
  font-family: "Playfair Display SC", serif;
}

.ambiental {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}

.ambiental h3 {
  font-family: "Playfair Display SC", serif;
}

.ambiental img {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  margin-top: 20px;
}

.ambiental li:first-child {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .ambiental img {
    width: 500px;
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .ambiental img {
    width: 700px;
    height: 600px;
  }
  .ambiental li:first-child {
    margin-bottom: 0px;
  }
}

.ambiental li {
  list-style-position: inside
}

button {
  padding: 10px;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

button img {
  margin-right: 5px;;
}

.prices {
  width: 70%;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  color: var(--text-dark);
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  border: 5px solid var(--tertiary-color);
  background-color: var(--bg-primary-color-light);
  justify-content: space-evenly;
}

.prices h2 {
  font-family: "Playfair Display SC", serif;
}

table {
  width: 40%;
  border-collapse: collapse;
  text-align: left;
}

th {
  padding-bottom: 10px;
  font-family: "Playfair Display SC", serif;
}

td {
  border-left: 4px solid var(--tertiary-color);
  padding: 10px;
}

/* contact page */

.contact-info {
  margin: 60px auto;
  max-width: 90%;
  padding: 20px;
  border-radius: 12px;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info h1 {
  text-align: center;
  font-family: "Playfair Display SC", serif;
}

.contact-info li {
  display: flex;
  align-items: center; 
  gap: 12px;

  margin-bottom: 15px; 
}

.contact-info li::before {
  content: ""; 
  background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTB-jV-Cfsna9l_YMwvCBlGlFlvoKANFB8oPw&s);
  width: 20px; 
  height: 20px; 
  background-size: contain;
  background-position: center;
  border-radius: 8px;
}

.location {
  text-align: center;
  background-color: var(--bg-primary-color-light);
  padding: 20px;
  margin: 0 auto;
  border-radius: 12px;
  max-width: 90%;
}

.location h2 {
  font-family: "Playfair Display SC", serif;
}

.location iframe {
  width: 90%;
  border-radius: 12px;
  margin-top: 20px;
}

@media (min-width: 1440px) {
  .contact-info {
    max-width: 60%;
  }

  .location {
    max-width: 50%;
  }
}