@import url('https://fonts.googleapis.com/css2?family=Bellota+Text:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Dancing+Script:wght@400..700&family=Dosis:wght@200..800&family=Playwrite+AU+SA:wght@100..400&family=Tulpen+One&family=Varela+Round&display=swap');

:root{
  --font-footer: "Dosis", sans-serif;
}

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

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #FFFFFF;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: #000000;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
}
a:hover {
  color: #DAA520;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  background-color: #000000;
  color: #FFFFFF;
}
.btn.primary-btn {
  background-color: #333;
  color: #FFFFFF;
}
.btn.primary-btn:hover {
  background-color: #222222;
  color: #DAA520;
}
.btn.secondary-btn {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
}
.btn.secondary-btn:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.btn.gold-btn {
  background-color: #DAA520;
  color: #FFFFFF;
}
.btn.gold-btn:hover {
  background-color: #ae8319;
}
.btn.btn-sm {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

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

.white-text {
  color: #FFFFFF !important;
}

.black-bg {
  background-color: #000000 !important;
  color: #FFFFFF;
}

.white-bg {
  background-color: #FFFFFF !important;
  color: #000000;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.section-title .divider {
  width: 60px;
  height: 3px;
  background-color: #000000;
  margin: 10px auto 30px auto;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}
.section-title .divider.gold-divider {
  background-color: #DAA520;
}
.section-title.gold-text {
  color: #DAA520;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  font-size: 1.2rem;
  color: #222222;
}

.no-records {
  padding: 2rem;
  background-color: #F5F5F5;
  color: #222222;
  border-radius: 5px;
  text-align: center;
}

.message-box {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  display: none;
}

.success-message {
  background-color: #28a745;
  color: #FFFFFF;
}

.error-message {
  background-color: #dc3545;
  color: #FFFFFF;
}

header {
  background-color: #FFFFFF;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #DAA520;
}
header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
header .logo .logo-img {
  height: 50px;
  margin-right: 0.5rem;
}
header .logo .logo-text {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
}
header .logo .logo-text:hover {
  color: #DAA520;
}
header .main-nav .menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #000000;
  cursor: pointer;
}
.text-cultos p{
  font-size: .875rem!important;
}
@media (max-width: 768px) {
  header .main-nav .menu-toggle {
    display: block;
  }
}
header .main-nav .nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  header .main-nav .nav-links {
    flex-direction: column;
    width: 100%;
    background-color: #000000;
    position: absolute;
    left: 0;
    top: 80px;
    padding: 1rem;
    border-top: 1px solid #DAA520;
    display: none;
  }
}
header .main-nav .nav-links li {
  margin: 0 0.8rem;
}
@media (max-width: 768px) {
  header .main-nav .nav-links li {
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
  }
}
header .main-nav .nav-links li .nav-item {
  color: #000000;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 5px;
}
header .main-nav .nav-links li .nav-item:hover {
  color: #DAA520;
}
header .main-nav .nav-links li .nav-item:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #DAA520;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
header .main-nav .nav-links li .nav-item:hover:after {
  width: 100%;
}
@media (max-width: 768px) {
  header .main-nav .nav-links li .nav-item {
    color: #FFFFFF;
    display: block;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  header .main-nav .nav-links li .nav-item:hover {
    background-color: #222222;
    color: #DAA520;
  }
  header .main-nav .nav-links li .nav-item:after {
    display: none;
  }
}

.carousel-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background-color: #000000;
}
.carousel-section .carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.carousel-section .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*opacity: 0;
  transition: opacity 1s ease-in-out;*/
}
.carousel-section .carousel-item.active {
  opacity: 1;
}
.carousel-section .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /*filter: brightness(60%);*/
}
.carousel-section .carousel-item .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 8px;
  max-width: 80%;
}
.carousel-section .carousel-item .carousel-caption h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #DAA520;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.carousel-section .carousel-item .carousel-caption p {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.carousel-section .carousel-item .carousel-caption .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  background-color: #DAA520;
  color: #FFFFFF;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
}
.carousel-section .carousel-item .carousel-caption .btn:hover {
  background-color: #ae8319;
}
.carousel-section .carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 2rem;
  z-index: 10;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.carousel-section .carousel-control:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.carousel-section .carousel-control.prev {
  left: 1rem;
}
.carousel-section .carousel-control.next {
  right: 1rem;
}

@media (max-width: 768px) {
  .carousel-section {
    height: 400px;
  }
  .carousel-section .carousel-item .carousel-caption h2 {
    font-size: 2.5rem;
  }
  .carousel-section .carousel-item .carousel-caption p {
    font-size: 1.1rem;
  }
  .carousel-section .carousel-item .carousel-caption .btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }
  .carousel-section .carousel-control {
    font-size: 1.5rem;
    padding: 0.7rem;
  }
}
@media (max-width: 480px) {
  .carousel-section {
    height: 300px;
  }
  .carousel-section .carousel-item .carousel-caption {
    padding: 1rem;
  }
  .carousel-section .carousel-item .carousel-caption h2 {
    font-size: 1.8rem;
  }
  .carousel-section .carousel-item .carousel-caption p {
    font-size: 0.9rem;
  }
  .carousel-section .carousel-item .carousel-caption .btn {
    font-size: 0.9rem;
  }
}
.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.section-title .divider {
  width: 60px;
  height: 3px;
  background-color: #000000;
  margin: 10px auto 30px auto;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}
.section-title .divider.gold-divider {
  background-color: #DAA520;
}
.section-title.gold-text {
  color: #DAA520;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 2rem auto;
  font-size: 1.2rem;
  color: #222222;
}
.section-description.white-text {
  color: #FFFFFF;
}

.cult-times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.cult-times-grid .cult-item {
  background-color: #222222;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cult-times-grid .cult-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}
.cult-times-grid .cult-item h3 {
  color: #DAA520;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.cult-times-grid .cult-item p {
  color: #FFFFFF;
  font-size: 1.1rem;
}

.messages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.messages-grid .message-card {
  background-color: #222222;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.messages-grid .message-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}
.messages-grid .message-card h3 {
  color: #DAA520;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.messages-grid .message-card .message-meta {
  font-size: 0.9rem;
  color: #6f6f6f;
  margin-bottom: 1rem;
}
.messages-grid .message-card p {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.messages-grid .message-card .btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  background-color: #DAA520;
  color: #FFFFFF;
  font-size: 0.9rem;
}
.messages-grid .message-card .btn:hover {
  background-color: #ae8319;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery-tabs .tab-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 1px solid #000000;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  background-color: #FFFFFF;
  color: #000000;
  font-size: 1.1rem;
}
.gallery-tabs .tab-button:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.gallery-tabs .tab-button.active {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease-in-out, filter 0.5s ease-in-out;
}
.gallery-grid .gallery-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(80%);
}
.gallery-grid .gallery-item:hover .overlay {
  transform: translateY(0);
}

.gallery-item.hidden {
  display: none;
}

form .form-group {
  margin-bottom: 1.5rem;
}
form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #FFFFFF;
}
form .form-group input[type=text],
form .form-group input[type=email],
form .form-group input[type=tel],
form .form-group input[type=password],
form .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #222222;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #F5F5F5;
  color: #000000;
}
form .form-group input[type=text]:focus,
form .form-group input[type=email]:focus,
form .form-group input[type=tel]:focus,
form .form-group input[type=password]:focus,
form .form-group textarea:focus {
  border-color: #DAA520;
  outline: none;
  box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.3);
}
form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
form button[type=submit] {
  width: 100%;
  padding: 1rem;
  font-size: 1.2rem;
  border-radius: 5px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-grid .contact-info h3 {
  color: #DAA520;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.contact-grid .contact-info p {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.social-icons {
  margin-top: 1rem;
}
.social-icons a {
  display: inline-block;
  margin-right: 2.5rem;
  color: #fff!important;
  font-size: 2em;
}
.social-icons a:hover {
  color: #fff;
}
/*.contact-grid .social-icons a img {
  height: 30px;
  width: 30px;
  transition: transform 0.3s ease;
}
.contact-grid .social-icons a img:hover {
  transform: scale(1.1);
}*/
.contact-grid .contact-form-container h3 {
  color: #DAA520;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}
.newsletter-form input[type=email] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border: 1px solid #222222;
  flex-grow: 1;
  background-color: #FFFFFF;
  color: #000000;
}
.newsletter-form button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background-color: #DAA520;
  color: #FFFFFF;
}
.newsletter-form button:hover {
  background-color: #ae8319;
}

footer {
  background-color: #000000;
  color: #FFFFFF;
  padding: 3rem 0 1.5rem 0;
  border-top: 2px solid #DAA520;
  font-size: 0.95rem;
}
footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
footer .footer-section h3 {
  color: #DAA520;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  footer .footer-section h3 {
    margin-top: 2rem;
  }
}
footer .footer-section p {
  color: #b3b3b3;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
footer .footer-section ul {
  list-style: none;
  padding: 0;
}
footer .footer-section ul li {
  margin-bottom: 0.5rem;
}
footer .footer-section ul li a {
  color: #b3b3b3;
  transition: color 0.3s ease;
}
footer .footer-section ul li a:hover {
  color: #DAA520;
}
footer .social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  footer .social-icons {
    justify-content: center;
  }
}

footer .social-icons a {
  display: inline-block;
  margin-right: 0.8rem;
}

footer .social-icons a img {
  height: 28px;
  width: 28px;
  transition: transform 0.3s ease;
}

footer .social-icons a img:hover {
  transform: scale(1.15);
}

footer .newsletter-form {
  display: flex;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  footer .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
}

footer .newsletter-form input[type=email] {
  flex-grow: 1;
  border-radius: 5px 0 0 5px;
  padding: 0.8rem;
  border: 1px solid #222222;
  background-color: #FFFFFF;
  color: #000000;
}

@media (max-width: 768px) {
  footer .newsletter-form input[type=email] {
    border-radius: 5px;
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
  }
}

footer .newsletter-form button {
  border-radius: 0 5px 5px 0;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  background-color: #DAA520;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

footer .newsletter-form button:hover {
  background-color: #ae8319;
}

@media (max-width: 768px) {
  footer .newsletter-form button {
    border-radius: 5px;
    width: 80%;
  }
}

footer .footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  color: gray;
  font-size: 0.85rem;
}/*# sourceMappingURL=style.css.map */

.footer-bottom{
  font-family: var(--font-footer);
  font-size: 1.3em!important;
}

.footer-bottom a{
  color: #ae8319!important;
  font-family: var(--font-footer);
}

.footer-bottom a:hover{
  color: #DAA520;
}