/*
Theme Name: REYIUM Sanctuary
Theme URI: https://reyium.com
Description: Tema personalizado para REYIUM - Sanctuary de retiros espirituales
Version: 1.0.0
Author: REYIUM
Author URI: https://reyium.com
Text Domain: reyium
*/

/* Reset y estilos base */
@font-face {
  font-family: 'Overpass';
  src: url('assets/fonts/Overpass-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Overpass-Light';
    src: url('assets/fonts/Overpass-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Overpass-Light', 'Lato', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.second-color{
    color: #903c02;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #F5F5F2;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #333;
    text-decoration: none;
    vertical-align: middle;
    display: inline-flex;
}

.main-navigation{
    width: 40%;
    text-align: left;
    transition: all 0.3s;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: #262B18;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #903c02;
}

.sub-menu{
    display: none !important;
}

.site-logo-container{
    width: 20%;
    text-align: center;
}

.logo-image{
    width: 150px;
}

.footer-content .logo-image{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7486%) hue-rotate(202deg) brightness(101%) contrast(106%);
}

.book-btn {
    background: transparent;
    color: #262B18 !important;
    padding: 10px 25px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    width: 40%;
    text-align: right;
}

.book-btn:hover {
    color: #903c02 !important;
}

/* Menu Toggle - Hamburger (X) */
.menu-toggle, .mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: fixed;
    width: 30px;
    height: 20px;
    left: 20px;
    top: 24px;
}

.mobile-menu-toggle{
    display: none;
}

.hamburger-line, .mobile-hamburger-line {
    width: 30px;
    height: 1px;
    background: #262B18;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.hamburger-line:first-child {
    /*top: 0;*/

    top: 10px;
    transform: rotate(45deg);
}

.hamburger-line:last-child {
    /*bottom: 0;*/

    bottom: 9px;
    transform: rotate(-45deg);
}

/* Animación X cuando está activo */
.menu-toggle.active .hamburger-line:first-child {
    /*top: 11px;
    transform: rotate(45deg);*/

    top: 0;
    transform: rotate(0);
    background: white;
}

.menu-toggle.active .hamburger-line:last-child {
    /*bottom: 11px;
    transform: rotate(-45deg);*/

    bottom: 0;
    transform: rotate(0);
    background: white;
    width: 15px;
}

.mobile-hamburger-line:first-child {
    top: 0;
}

.mobile-hamburger-line:last-child {
    bottom: 0;
    width: 15px;
}

.mobile-menu-toggle.active .mobile-hamburger-line:first-child {
    top: 10px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .mobile-hamburger-line:last-child {
    bottom: 10px;
    transform: rotate(-45deg);
    width: 30px;
}

/* Hero Section */
.hero-section {
    height: 715px;
    min-height: 680px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    /*margin-top: 80px;*/
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

#main-retreats, #main-accomodations, #main-faqs{
    height: 400px;
    min-height: 400px;
    position: relative;
}

#main-retreats .hero-content, #main-accomodations .hero-content, #main-faqs .hero-content{
    position: absolute;
    bottom: 30px;
}

#main-retreats .hero-content h1, #main-accomodations .hero-content h1, #main-faqs .hero-content h1{
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: 'Overpass';
}

/* Content Sections */
.content-section {
    max-width: 1100px;
    /*margin: 80px auto;*/
    margin: 40px auto 80px auto;
    padding: 0 20px;
    text-align: center;
}

.content-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #242222;
    font-family: 'Overpass';
}

#accommodations-intro.content-section h2 {
    text-transform: initial;
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: normal;
    font-family: 'Overpass';
}

.content-section h2 span{
    font-size: 18px;
    margin-bottom: 0;
    text-transform: initial;
    letter-spacing: normal;
}

.content-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #242222;
    margin-bottom: 20px;
}

/* About Section with Image */
#founders{
    width: 100%;
    height: 480px;
    overflow: hidden;
}

#founders > div{
    float: left;
    width: calc(50% - 20px);
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#main-bold-text{
    font-size: 28px;
    font-weight: 500;
    color: #242222;
    margin-bottom: 15px;
    width: 80%;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
    font-family: 'Overpass';
}

.about-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

.about-content {
    text-align: left;
}

.about-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #d4a574;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* Accommodations Grid */
#accommodations-intro{
    width: 825px;
    margin-top: 80px;
}

.accommodations-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;*/
    /*margin-top: 60px;*/
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0 40px 00px;
}

.accommodation-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 30px 0;
}

.card-1{
    background-color: #F5F5F2;
    border-radius: initial;
    box-shadow: none;
    width: 100%;
    padding: 80px 10%;
}

.card-2, .card-3, .card-4{
    background-color: white;
    border-radius: initial;
    box-shadow: none;
    width: 100%;
    padding: 40px 10%;
}

.card-2 .accommodation-carousel, .card-3 .accommodation-carousel{
    height: 100%;
}

.card-1 .accommodation-description {
    clear: both;
    width: 60%;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
}

.card-4 .accommodation-info{
    text-align: center;
    width: 100%;
}

.card-4 .accomodation-images{
    text-align: center;
}

.card-4 .accommodation-carousel{
    display: none;
}

.card-4 .accomodation-images img{
    display: inline-block;
    width: 30%;
    margin: 1%;
    height: auto;
}

.card-4 .accomodation-info-4 > div{ 
    float: left;
    width: 40%;
    margin: 30px 5%;
}

.card-4 .accommodation-info p:nth-of-type(2), .card-4 .accomodation-info-4 div:nth-of-type(1) p:nth-of-type(1) {
    display: none;
}

.card-4 .check-availability-btn{
    margin: 0 auto;
    display: block;
    clear: both;
    width: 235px;
}

.accommodation-card:hover {
    transform: translateY(-5px);
    /*box-shadow: 0 6px 20px rgba(0,0,0,0.15);*/
}

/* ============================================
   ESTILOS DEL CARRUSEL DE IMÁGENES
   ============================================ */

/* Contenedor principal del carrusel */
.accommodation-carousel {
    position: relative;
    width: 50%;
    height: 83%;
    overflow: hidden;
    background: #f0f0f0;
    float: left;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Imagen única (sin carrusel) */
.accommodation-single-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.accommodation-single-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botones de navegación del carrusel */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    line-height: 1;
}

.accommodation-carousel:hover .carousel-prev,
.accommodation-carousel:hover .carousel-next {
    opacity: 1;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Puntos indicadores del carrusel */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ============================================
   FIN ESTILOS DEL CARRUSEL
   ============================================ */

.accommodation-info {
    /*padding-left: 30px;*/
    padding: 0 30px;
    text-align: left;
    float: left;
    width: 50%;
}

.accommodation-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #903c02;
}

.accommodation-info p {
    font-size: 16px;
    color: #242222;
    margin-bottom: 10px;
    line-height: 1.6;
}

.accommodation-info h4 {
    font-size: 16px;
    margin: 20px 0 10px;
    color: #242222;
}

.accommodation-info ul {
    list-style: none;
    /* margin: 20px 0; */
}

.accommodation-info li {
    font-size: 16px;
    color: #242222;
    /* padding: 5px 0; */
    padding-left: 20px;
    position: relative;
}

.accommodation-info li::before {
    content: "•";
    color: #903c02;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.check-availability-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #242222;
    color: #242222;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 20px;
}

.check-availability-btn:hover {
    background: #903c02;
    color: #fff;
    border-color: #903c02;
}

/* Testimonials */
.testimonials-section {
    background: #f8f8f8;
    padding: 50px 20px;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    color: #903c02;
    font-size: 28px;
    font-family: 'Overpass';
}

/* ============================================
   CARRUSEL DE TESTIMONIOS (MÓVIL)
   ============================================ */

.testimonials-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Carrusel - oculto en desktop, visible en móvil */
.testimonials-carousel {
    display: none;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 20px;
}

.testimonials-track {
    display: flex;
    position: relative;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

/* Botones de navegación del carrusel */
.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-prev {
    left: 10px;
}

.testimonial-next {
    right: 10px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Dots indicadores */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(144, 60, 2, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #903c02;
    width: 24px;
    border-radius: 4px;
}

/* Grid de testimonios - visible en desktop, oculto en móvil */
.testimonials-grid {
    /*display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;*/
    max-width: 1200px;
    margin: 0px auto 0;
    text-align: center;
}

.testimonial-card {
    background: transparent;
    padding: 30px 20px;
    border-radius: 5px;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
    transition: transform 0.3s;
    width: 30%;
    display: inline-block;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #242222;
    margin-bottom: 20px;
    /*font-style: italic;*/
    min-height: 240px;
}

.testimonial-author {
    /*font-weight: 700;*/
    color: #242222;
    margin-bottom: 5px;
    font-size: 21px;
    font-family: 'Overpass';
}

.testimonial-rating {
    color: #903c02;
    font-size: 20px;
}

/* Retreat Form */
.retreat-form-section {
    background: white;
    padding: 0px 20px 60px 20px;
    max-width: 100%;
    width: 1100px;
    margin: 0 auto;
}

.retreat-form-section > div{
    float: left;
    /*width: 50%;*/
    box-sizing: border-box;
    padding: 10px 20px 30px 20px;
}

#retreat-info{
    width: 52%;
}

#retreat-info p{
    margin: 20px 0;
    font-size: 18px;
}

#retreat-info .second-color{
    font-size: 21px;
    font-family: 'Overpass';
    margin-top: 0;
}

.retreat-form {
    max-width: 488px;
    margin: 0 auto;
    background: #f8f8f8;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-left: 6%;
}

.retreat-form h3 {
    font-size: 21px;
    margin-top: 20px;
    color: #242222;
    text-align: center;
}

.retreat-form > p {
    color: #242222;
    margin-bottom: 30px;
    font-size: 18px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #242222;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a574;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

.submit-btn {
    background: transparent;
    color: #242222;
    padding: 15px 40px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    width: 150px;
    border: 2px solid #242222;
    margin: 0 auto;
    display: block;
}

.submit-btn:hover {
    background: #903c02;
    border-color: #903c02;
    color: white;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.ceremony-center-section{
    background: #f8f8f8;
    padding: 50px 20px;
    clear: both;
}

.ceremony-center-section h2{
    text-align: center;
    margin-bottom: 20px;
    font-weight: 500;
    color: #903c02;
    font-size: 28px;
    text-transform: uppercase;
    font-family: 'Overpass';
}

#ceremony-center-content{
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.ceremony-image{
    display: inline-block;
    vertical-align: top;
    margin: 10px;
}

/* FAQs */
.faq-section {
    max-width: 800px;
    margin: 80px auto;
    /*padding: 0 20px;*/
}

.faq-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 25px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #242222;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #903c02;
}

.faq-toggle {
    font-size: 24px;
    color: #903c02;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0;
    color: #242222;
    line-height: 1.6;
    font-size: 18px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 0 10px;
}

/* Ceremony Center */
.ceremony-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.ceremony-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4a574;
}

.ceremony-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ceremony-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ceremony-card p {
    margin-top: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px 30px;
    clear: both;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section{
    float: left;
    width: 50%;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Overpass';
}

.footer-section p,
.footer-section a {
    color: #F5F5F2;
    text-decoration: none;
    font-size: 16px;
    line-height: 2;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #F5F5F2;
    font-size: 16px;
}

.footer-bottom a {
    color: #F5F5F2;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}


/* ============================================
   ESTILOS PARA ABOUT US PAGE
   ============================================ */

/* Hero de About Us - más pequeño */
.about-hero {
    height: 400px;
    min-height: 300px;
}

.about-hero .hero-content {
    display: none; /* Sin contenido en el hero */
}

/* Contenido principal de About */
.about-main-content {
    max-width: 770px;
    margin: 0 auto;
    padding: 80px 4px;
}

.about-text-center {
    text-align: center;
    margin-bottom: 60px;
}

.about-text-center h1 {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #242222;
    font-family: 'Overpass';
    width: 100%;
}

.about-paragraphs {
    text-align: center;
    line-height: 1.9;
}

.about-paragraphs p {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Grid de imágenes de About */
.about-images-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
    flex-wrap: wrap;
    width: 140%;
    margin-left: -20%;
}

.about-image-item {
    flex: 0 0 auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 30%;
}

.about-image-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/*.about-image-item:first-child,
.about-image-item:last-child {
    width: 220px;
}*/

.about-image-item.about-image-center {
    /* width: 350px; */
    position: relative;
    top: 30px;
}

/* Segunda sección de texto */
.about-story {
    margin-top: 90px;
}

.about-story p {
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
}

/* WhatsApp buttons flotantes en About */
.about-main-content .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

/* Responsive para About Us */
@media (max-width: 768px) {
    .about-hero {
        height: 250px;
        min-height: 250px;
    }
    
    .about-main-content {
        padding: 60px 20px;
    }
    
    .about-text-center h1 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .about-paragraphs p,
    .about-story p {
        font-size: 14px;
        text-align: left;
    }
    
    .about-images-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-image-item,
    .about-image-item:first-child,
    .about-image-item:last-child,
    .about-image-item.about-image-center {
        width: 100% !important;
        max-width: 400px;
        top: 0;
        margin: 5px 0;
        position: relative;
    }

    .about-image-item:first-child, .about-image-item:last-child{
        right: 20px;
    }

    .about-image-item.about-image-center{
        left: 20px;
    }
    
    .about-image-item img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 443px !important;
        min-height: 200px;
    }
    
    .about-main-content {
        padding: 40px 20px;
    }
    
    .about-text-center h1 {
        font-size: 34pt;
        line-height: 50px;
    }
    
    .about-paragraphs p,
    .about-story p {
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .about-image-item img {
        height: 266px;
    }

    .about-images-grid{
        width: 100%;
        margin-left: 0;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .mobile-menu-toggle{
        display: block;
    }

    .site-header{
        background-color: white;
    }

    .header-container {
        height: 40px;
    }

    .site-logo-container {
        width: 116px;
        text-align: center;
        /*position: absolute;
        left: calc(50% - 58px);*/
    }

    #main-retreats, #main-accomodations, #main-faqs{
        height: 443px;
    }

    #main-retreats .hero-content h1, #main-accomodations .hero-content h1, #main-faqs .hero-content h1{
        font-size: 31px;
        margin-bottom: 10px;
    }

    .header-container .site-logo-container{
        position: absolute;
        left: calc(50% - 58px);
    }

    .book-btn {
        width: 75px;
        position: absolute;
        right: 20px;
        top: 12px;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        width: 100%;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .main-navigation li {
        width: 100%;
        text-align: left;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .sub-menu{
        display: block !important;
    }

    .sub-menu > li{
        border-bottom: none;
    }

    .main-navigation a{
        font-size: 16px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .accommodations-grid,
    .testimonials-grid,
    .ceremony-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ajuste del carrusel en móvil */
    .accommodation-carousel {
        height: 250px;
    }
    
    .accommodation-single-image {
        height: 250px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .content-section h2 {
        font-size: 40px;
        line-height: 45px;
    }
    
    .retreat-form {
        padding: 30px 20px;
    }

    .footer-bottom{
        font-size: 12px;
    }

    .footer-section:first-child{
        width: 100%;
        margin: 0 0 35px 0;
    }


    .hero-section{
        height: 600px;
        min-height: 400px;
    }

    .content-section p{
        font-size: 18px;
    }

    #founders{
        height: auto;
    }

    #founders > div{
        float: initial;
        width: 100%;
        display: initial;
        height: auto;
    }

    #main-bold-text{
        font-size: 22pt;
        margin-bottom: 0;
        margin-top: 0;
        line-height: 35px;
    }

    .testimonial-card{
        width: 100%;
    }

    #retreat-info {
        width: 100%;
        float: initial;
    }

    .retreat-form{
        float: initial;
        width: 100%;
        margin-left: 0;
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .site-logo {
        font-size: 18px;
    }
    
    /* Carrusel más compacto en pantallas pequeñas */
    .accommodation-carousel {
        height: 400px !important;
        width: 100%;
    }
    
    .accommodation-single-image {
        height: 200px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    
    .carousel-dots {
        bottom: 10px;
    }
    
    .carousel-dot {
        width: 6px;
        height: 6px;
    }
    
    .carousel-dot.active {
        width: 18px;
    }
}

/* ============================================
   RESPONSIVE - ACTIVAR CARRUSEL EN MÓVIL
   ============================================ */

@media (max-width: 768px) {
    /* Ocultar grid en móvil */
    .testimonials-grid {
        display: none;
    }
    
    /* Mostrar carrusel en móvil */
    .testimonials-carousel {
        display: block;
    }
    
    .testimonial-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel {
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
    
    .testimonial-prev {
        left: 5px;
    }
    
    .testimonial-next {
        right: 5px;
    }
}

/* ============================================
   ESTILOS PARA TABS DE RETREATS
   ============================================ */

/* Contenedor de tabs */
.retreats-tabs-container {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 70px;
    z-index: 100;
}

.retreats-tabs {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
}

.retreat-tab {
    background: transparent;
    border: none;
    padding: 20px 40px;
    font-size: 18px;
    /*text-transform: uppercase;*/
    letter-spacing: 1px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    /*font-weight: 500;*/
    font-family: 'Overpass';
}

.retreat-tab:hover {
    color: #903c02;
}

.retreat-tab.active {
    color: #903c02;
    border-bottom-color: #903c02;
}

/* Contenido de tabs */
.retreat-tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.retreat-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ESTILOS PARA TIERRA MEDICINA
   ============================================ */

.tierra-medicina-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 0px;
}

.tierra-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.tierra-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.tierra-announcement {
    background: #f8f8f8;
    padding: 80px 20px 40px 20px;
    border-radius: 5px;
    text-align: center;
    margin: 50px 0 0 0;
}

.tierra-announcement h3 {
    font-size: 21px;
    font-family: 'Overpass';
    letter-spacing: 1px;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 20px;
    color: #242222;
}

.tierra-announcement p {
    font-size: 18px;
    line-height: 1.6;
    color: #242222;
    max-width: 900px;
    margin: 0 auto;
}

/* Lista de retiros de Tierra Medicina */
.tierra-retreats-list {
    padding-top: 20px;
    width: 100%;
    background-color: #f8f8f8;
}

.tierra-retreat-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
    width: 80%;
    margin-left: -10%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.tierra-retreat-image {
    flex: 0 0 350px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.tierra-retreat-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.tierra-retreat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 30px 20px 20px;
}

.tierra-retreat-overlay h4 {
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    margin: 0;
    display: none;
}

.tierra-retreat-info {
    flex: 1;
    padding-top: 10px;
}

.tierra-retreat-info h3 {
    font-size: 28px;
    margin-bottom: 0px;
    font-weight: 600;
}

.tierra-dates {
    font-size: 13px;
    color: #242222;
    font-style: italic;
    margin-bottom: 20px;
}

.tierra-retreat-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #242222;
    margin-bottom: 25px;
}

.tierra-learn-more {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #242222;
    color: #242222;
    text-decoration: none;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 600;
}

.tierra-learn-more:hover {
    background: #903c02;
    color: #fff;
    border-color: #903c02;
}

/* Responsive para Tierra Medicina */
@media (max-width: 768px) {
    .retreats-tabs-container {
        top: 70px;
    }
    
    .retreat-tab {
        padding: 15px 20px;
        font-size: 12px;
    }
    
    .tierra-medicina-content {
        padding: 40px 20px;
    }
    
    .tierra-intro p {
        font-size: 18px;
        text-align: left;
    }
    
    .tierra-announcement {
        padding: 30px 20px;
    }
    
    .tierra-announcement h3 {
        font-size: 21px;
    }
    
    .tierra-retreat-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .tierra-retreat-image {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .tierra-retreat-image img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .retreat-tab {
        padding: 12px 15px;
        font-size: 18px;
    }
    
    .tierra-retreat-overlay h4 {
        font-size: 24px;
    }
    
    .tierra-retreat-info h3 {
        font-size: 20px;
    }
    
    .tierra-retreat-image img {
        height: 300px;
    }
}

/* ============================================
   ESTILOS PARA SINGLE TIERRA MEDICINA RETREAT
   ============================================ */

/* Hero de retiro individual - más compacto */
.single-retreat-hero {
    position: relative;
    height: 35vh;
    min-height: 300px;
    max-height: 400px;
    overflow: hidden;
    margin-top: 80px;
    display: none;
}

.single-retreat-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-retreat-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 40px 40px 30px;
}

.single-retreat-hero-overlay h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 300;
    margin: 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* Contenido del retiro */
.single-retreat-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 40px;
    margin-top: 50px;
}

/* Header con layout de 2 columnas */
.single-retreat-header {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.retreat-header-image {
    width: 100%;
}

.retreat-header-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.retreat-header-content {
    padding-top: 10px;
}

.retreat-header-content h2 {
    font-size: 28px;
    font-weight: 600;
    /*margin-bottom: 8px;*/
}

.retreat-dates {
    font-size: 21px;
    color: #262B18;
    font-style: italic;
    margin-bottom: 25px;
}

.retreat-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #262B18;
}

.retreat-intro p {
    margin-bottom: 15px;
}

/* Subtítulo destacado - más pequeño y compacto */
.retreat-subtitle-section {
    background: #fff;
    padding: 0;
    border-radius: 0;
    text-align: center;
    margin: 40px 0;
}

.retreat-subtitle-section p {
    font-size: 21px;
    line-height: 1.6;
    color: #242222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: 'Overpass';
}

/* Galería de 3 imágenes */
.retreat-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.retreat-gallery-item {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.retreat-gallery-item:nth-child(2) {
    margin-top: 20px;
    display: block;
}   

.retreat-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.retreat-gallery-item:hover img {
    transform: scale(1.05);
}

/* Descripción del retiro */
.retreat-description {
    font-size: 14px;
    line-height: 1.8;
    color: #262B18;
    margin: 80px 0 40px 0;
    text-align: center;
}

.retreat-description p {
    margin-bottom: 15px;
    font-size: 18px;
}

/* Nota de acceso - más compacta */
.retreat-access-note {
    background: #F5F5F2;
    padding: 40px 0;
    border-radius: 0;
    text-align: center;
    margin: 50px 0 0;
    height: 250px;
}

.retreat-access-note > div{
    float: left;
    width: 50%;
    align-items: center;
    justify-content: center;
    height: 100%;
    display: grid;
}

#retreat-access-text{
    text-align: left;
    justify-content: end;
}

.retreat-access-note h3 {
    font-size: 21px;
    font-weight: 100;
    letter-spacing: 0.5px;
    /*margin-bottom: 12px;*/
    color: #242222;
    line-height: 1.6;
}

.access-note-text {
    font-size: 18px;
    /*margin-bottom: 25px;*/
    font-style: italic;
}

.request-private-access-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #EBEBE8;
    background-color: #EBEBE8;
    color: #242222;
    text-decoration: none;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 100;
    opacity: 0.16;
}

.request-access-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #242222;
    color: #242222;
    text-decoration: none;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s;
    font-weight: 100;
}

.request-access-btn:hover {
    background: #903c02;
    border-color: #903c02;
    color: #fff;
}

/* Responsive para single retreat */
@media (max-width: 768px) {
    .single-retreat-hero {
        height: 30vh;
        min-height: 250px;
        margin-top: 70px;
    }
    
    .single-retreat-hero-overlay {
        padding: 30px 20px 20px;
    }
    
    .single-retreat-hero-overlay h1 {
        font-size: 28px;
    }
    
    .single-retreat-content {
        /*padding: 40px 20px;*/
        padding: 0;
    }
    
    .single-retreat-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .retreat-header-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .retreat-header-image img{
        border-radius: 0;
    }

    .retreat-header-content {
        padding-top: 10px;
        width: 85%;
        margin: 0 auto;
    }
    
    .retreat-header-content h2 {
        font-size: 24px;
    }

    .retreat-intro{
        font-size: 18px;
    }

    .retreat-dates{
        font-size: 16px;
    }
    
    .retreat-subtitle-section {
        padding: 0;
        width: 85%;
        margin: 0 auto;
    }
    
    .retreat-subtitle-section p {
        font-size: 22px;
    }
    
    .retreat-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .retreat-gallery-item {
        height: 200px;
    }
    
    .retreat-description {
        width: 85%;
        margin: 0 auto;
        text-align: center;
    }
    
    .retreat-access-note {
        padding: 30px 0;
    }
    
    .retreat-access-note h3 {
        font-size: 21px;
        margin-bottom: 15px;
    }

    .retreat-access-note{
        height: auto;
    }

    .retreat-access-note > div{
        float: initial;
        width: 85%;
        margin: 0 auto;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .single-retreat-hero-overlay h1 {
        font-size: 24px;
    }
    
    .retreat-gallery-item {
        height: 263px;
        width: 90%;
    }

    .retreat-gallery-item:nth-child(2){
        margin-top: 0;
        left: 10%;
        position: relative;
    }
    
    .request-access-btn {
        /*font-size: 10px;*/
        padding: 10px 30px;
    }

    .request-private-access-btn, .request-access-btn{
        margin: 20px 0;
    }

    .faq-item{
        width: 85%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    #accommodations-intro {
        width: 85%;
        margin: 0 auto;
        margin-top: 80px;
    }

    #accommodations-intro.content-section h2{
        font-size: 22px;
        line-height: 30px;
    }

    .card-1, .card-2, .card-3, .card-4{
        padding: 0 0 50px 0;
    }

    .card-3{
        display: flex;
        flex-direction: column-reverse;
    }

    .accommodation-info{
        width: 100%;
    }

    .accommodation-info h3{
        margin-top: 15px;
    }

    .accommodation-info p{
        font-size: 18px;
    }

    .accommodation-info li{
        font-size: 18px;
    }

    .accommodation-info h4{
        font-size: 18px;
    }

    .check-availability-btn{
        display: block;
        margin: 0 auto;
        width: fit-content;
        margin-top: 30px;
    }

    .card-1 .accommodation-description{
        width: 85%;
        font-size: 18px;
    }

    .card-4 .accomodation-info-4 > div{
        float: initial;
        width: 85%;
        font-size: 18px;
        margin: 0 auto;
        margin-top: 30px;
    }

    .card-4 .check-availability-btn{
        margin-top: 30px;
    }

    .card-4 .accomodation-images{
        display: none;
    }

    .card-4 .accomodation-images img{
        width: 80%;
    }

    .card-4 .accommodation-carousel{
        display: block;
        margin-bottom: 30px;
    }
}

#social-buttons{
    position: fixed;
    right: 0;
    top: 50%;
    width: 70px;
    height: auto;
    background-color: #242222;
    z-index: 1000;
    border-top-left-radius: 20px;
}

#whatsapp-button{
    width: 90%;
    height: 40px;
    text-align: center;
}

#whatsapp-button img{
    height: 60%;
    width: auto;
    margin: 15%;
    filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(0%) hue-rotate(261deg) brightness(110%) contrast(101%);
}
