@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --color-presentation: #e4dacc;
  --color-link-presentation: #915604;
  --color-white: #ffffff;
  --color-black-text: black;
  --color-grey: #606f7d;
}

* {
  box-sizing: border-box;
  font-family: "Cormorant Garamond", sans-serif;
  list-style: none;
  font-weight: 800;
}

.header-inner .col-md-12 {
  display: flex;
  justify-content: space-around;
}

.bg-light {
  --bs-bg-opacity: none;
  background-color: white;
}

.header-inner img {
  width: 250px;
  height: 42px;
}

.navbar {
  padding: 20px 0px;
}

.header .collapse {
  padding: 0px;
}

nav .navbar-nav {
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.dropdown-item {
  text-align: center;
}

.dropdown-item.active,
.dropdown-item:hover {
  color: var(--color-black-text);
  text-decoration: none;
  background-color: var(--color-presentation);
}

.carousel-image img {
  width: 100%;
  height: 100vh;
}

h1 {
  font-size: 2.5rem;
  text-align: center;
  padding: 90px 0px 30px;
}

.welcome {
  background-color: var(--color-presentation);
  margin: 0px 0px 100px;
}

.welcome h2,
.opening-hours h2 {
  font-size: 2.5rem;
  text-align: center;
  padding: 100px 0px 30px 0px;
}

.welcome p,
.opening-hours span {
  font-size: 1.25rem;
  text-align: center;
  padding: 0px 0px 100px;
}

.opening-hours .col-md-6 {
  font-size: 1.25rem;
  text-align: center;
}

.opening-hours {
  margin: 0px 0px 100px;
}

.presentation .card-one,
.presentation .card-two,
.presentation .card-three {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.presentation h3 {
  text-align: center;
  padding: 30px 0px 0px;
}

.presentation p {
  font-size: 1.125rem;
  text-align: center;
  padding: 30px 30px 0px;
}

.presentation a {
  text-decoration: none;
  color: var(--color-link-presentation);
}

.card-img-one {
  position: relative;
  width: 100%;
  height: 212px;
  background-image: url(../assets/pupto.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.card-img-two {
  position: relative;
  width: 100%;
  height: 212px;
  background-image: url(../assets/grupos\ de\ vida.jpg);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.card-img-three {
  position: relative;
  width: 100%;
  height: 212px;
  background-image: url(../assets/orando.jpg);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.card-img-one::after,
.card-img-two::after,
.card-img-three::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 212px;
  background-color: rgb(0, 0, 0, 0.5);
  z-index: -1;
}

.card-one,
.card-two,
.card-three {
  text-align: center;
  background-color: var(--color-presentation);
  padding: 0px 0px 20px;
  height: 100%;
}

.call-image .col-md-12,
.carousel-image .col-md-12 {
  padding: 0px;
}

.image-prominence {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url(../assets/freepik__expand__37589.png);
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.image-prominence::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background-color: rgb(0, 0, 0, 0.5);
  z-index: -1;
}

.text-prominence {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-prominence span {
  font-size: 3.75rem;
  color: var(--color-white);
}

.text-prominence a {
  color: var(--color-link-presentation);
  //background-color: var(--color-presentation);
  text-decoration: none;
}

.text-prominence button {
  padding: 10px;
  border: none;
  border-radius: 10px;
}

.footer {
  background-color: var(--color-presentation);
}

.border-footer {
  border: 1px solid var(--color-link-presentation);
  margin-bottom: 20px;
}

.footer-about-us,
.footer-address,
.footer-contact {
  padding: 100px 0px;
  text-align: center;
}

.footer-about-us h5,
.footer-address h5,
.footer-contact h5 {
  font-size: 1.87rem;
}

.footer p,
footer span {
  font-size: 1.25rem;
}

.footer-contact a {
  text-decoration: none;
  color: black;
}
.copyright {
  text-align: center;
  padding: 15px;
}

/* CSS media query dentro de um stylesheet */
@media (max-width: 1200px) {
  .carousel-image img {
    height: 80vh;
  }
}

@media (max-width: 992px) {
  .carousel-image img {
    height: 80vh;
  }
  .carousel-image {
    position: relative;
    top: 75px;
  }

  .navbar,
  .navbar-expand-lg,
  .bg-light {
    position: absolute;
    /* top: 0px; */
    z-index: 1;
  }

  .navbar .container {
    background-color: var(--color-white);
  }

  .text-prominence span {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-about-us,
  .footer-address,
  .footer-contact {
    padding: 7% 0%;
  }

  .carousel-image img {
    height: 50vh;
  }
}

@media (max-width: 500px) {
  .carousel-image img {
    height: 50vh;
  }
}

@media (max-width: 391px) {
  .carousel-image img {
    height: 30vh;
  }
}
