@import url('https://fonts.cdnfonts.com/css/leelawadee');
@import url('https://fonts.cdnfonts.com/css/edmundsbury-serif');

body {
    font-family: 'Leelawadee', sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Keyframes for animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sticky Header - Desktop only */
@media (min-width: 769px) {
    .sticky-header {
        position: sticky;
        top: 0;
        background-color: transparent;
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 50px;
    }

    .sticky-header .logo {
        margin: 0;
        text-align: left;
        animation: slideInLeft 0.8s ease-out;
    }

    .sticky-header .logo img {
        max-width: 150px;
    }

    .sticky-header .card-section {
        margin: 0;
        width: auto;
        animation: fadeInRight 0.8s ease-out;
    }

    .sticky-header .content-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: auto;
    }

    .sticky-header .text-content {
        text-align: left;
        padding-right: 20px;
    }
}

/* Mobile - Normal flow without sticky */
@media (max-width: 768px) {
    .sticky-header {
        display: block;
    }
}

.logo {
    text-align: center;
    margin: 50px 0;
    margin-top: 80px;
}

.logo img {
    max-width: 250px;
    height: auto;
}

.image-gallery {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    

}
.general
{
    overflow-x: hidden;
    box-sizing: border-box;
}
.image-gallery img {
    width: 100%;
    max-width: 300px;
    height: auto;

}
.card-section {
    margin: 30px auto;
    padding: 10px 40px;
    border-radius: 20px;
    background-color: #F5F5F5;
    width: 90%;
    max-width: 600px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65%;
    flex-wrap: wrap;
}

.text-content {
    flex: 1;
    text-align: left;
    padding-right: 0px;
}

.card-section h2 {
    font-family: 'Edmundsbury Serif', sans-serif;
    color: #000;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 5px;
}

.card-section p {
    font-family: 'Leelawadee', sans-serif;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
}

.btn-reserva {
    background-color: #A78036;
    color: #fff;
    border: none;
    padding: 5px 30px;
    border-radius: 20px;
    font-family: 'Leelawadee', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    text-decoration: none;
}

.btn-reserva:hover {
    background-color: #a0844b;
}
@media (min-width: 769px) and (max-width: 1024px) {
    .image-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
        justify-items: center; 
        margin: 30px 70px;
 
    }

    .image-gallery img {
        
        max-width: 100%; 
        width: auto;
    }
}
@media (max-width: 768px) {
  
    .image-gallery {
        display: grid;
        grid-template-columns: 1fr; 
        gap: 15px;
        padding: 20px;

       
    }

    .image-gallery img {
        max-width: 100%; 
        margin: 0 auto; 
       
    
    }
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        width: 100%;
        
        text-align: center;
        margin-bottom: 0px;
    }
    .card-section {
        padding: 20px;
        width: 80%;
    }

    .text-content {
      text-align: center;
        margin-bottom: 10px;
        margin: 0 auto;
    }
    .text-content h2 {
        font-size: 24px;
    }

    .btn-reserva {
        margin-top: 10px;
    }
}

/* General Section Styling */
.location-section {
    margin: 80px auto;
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    margin-top: 20px;
}

.section-title {
    font-family:'Edmundsbury Serif', sans-serif;
    font-size: 50px;
    font-weight: 400;
    text-align: center;
    margin-bottom:50px;
    color: #000;
}

.content-wrapper-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    align-items: stretch;
    width: 100%;
    height: 302px;
}

/* Map Image */
.map-link {
    flex: 1;
    display: flex;
}

.map-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 0; 
    object-fit: cover;
}

/* Card */
.card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #F5F5F5;
    border-radius: 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border: transparent;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-family:'Edmundsbury Serif', sans-serif;
    font-size: 32px;
    color: #000;
    
    margin-bottom: 20px;
}

.card p {
    font-family: 'Leelawadee', sans-serif;
    font-size: 12px;
    color: #000;
    font-weight: 400;
    max-width: 380px;
    margin-bottom: 20px;
}

.icons {
    display: flex;
    gap: 10px;
    margin-bottom: -60px;
    margin-top: -70px;
}

.icons img {
    width: 180px;
    height: 180px;
}

.sustainability-text {
    font-family: 'Leelawadee', sans-serif;
    font-size: 14px;
    color: #A78036 !important;
    margin-bottom: 20px;
}

.ratings {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
}

.rating {
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Leelawadee', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #A78036;
    text-align: center;
    display: flex;
    align-items: center; 
    justify-content: center; 
}

.rating span {
    font-weight: 700 !important; 
    color: #A78036;
    margin-right: 5px; 
    display: inline;
    font-family: "Leelawadee Bold V1";
}


@media (max-width: 568px) {
    .location-section {
        margin: 0 auto;

        padding: 20px;


    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1;
    }

    .content-wrapper-2 {
        flex-direction: column;
        height: auto;
    }

    .map-link {
        order: 1;
        width: 100%;
    }

    .card {
        order: 2;
        margin-top: 20px;
        text-align: center;
    }
    .card h3 {
        font-size: 24px;
    }

    .ratings {
        flex-direction: column;
        gap: 10px;
    }
    .icons{
        margin: 0 auto;
        margin-top: -30px;
        margin-bottom: -30px;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    .location-section {
        margin: 60px auto; 
        padding: 15px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .content-wrapper-2 {
        gap: 10px; 
    }

    .map-image {
        max-width: 100%; 
    }

    .card {
        padding: 15px;
    }

    .ratings {
        gap: 15px; 
    }
    .rating {
        padding: 20px;
    }

}


/* TARJETAS PROMOCIONES */


.promotions-section {

    background-color: #F5F5F5;
    padding: 20px;
  
    text-align: center;
}

.section-title-promo{
    font-family:'Edmundsbury Serif', sans-serif;
    font-size: 50px;
    color: #000;
    margin-bottom: 30px; 
    text-align: center;
     position: relative;
    display: inline-block; 
}
.section-title-promo::before,
.section-title-promo::after {
    content: "";
    width: 16px; 
    height: 16px;
    background-color: #A78036;
    border-radius: 50%;
    position: absolute;
    top:75%;
    transform: translateY(-50%);
}

.section-title-promo::before {
    left: -40px;
}

.section-title-promo::after {
    right: -40px; 
}

.promotion-container {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    max-height: 500px;
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.promotion-image {
    flex: 1;
    max-width: 400px;

    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    object-fit: cover;
    padding: 0;

}

.promotion-content {
    flex: 2;
    text-align: left;

}

.promotion-content h3 {
    font-family:'Edmundsbury Serif', sans-serif;
    font-size: 32px;
    color: #A78036;
    font-weight: lighter;
    margin-bottom: 10px;
}

.promotion-content p {
    font-family: 'Leelawadee', sans-serif;
    font-size: 12px;
    color: #000;
    margin-bottom: 0px;
}

.promotion-content ul {
    
    padding: 0px 15px;
    margin-bottom: 30px;
}
 .large {
    margin-bottom: 5px !important;
}
.promotion-content ul li {
    font-family: 'Leelawadee', sans-serif;
    font-size: 12px;
    margin-bottom: 1px;
}
.promotion-content li span {
    font-family: "Leelawadee Bold V1";
   ;
}
.promotion-button {
    background-color: #A78036;
    color: #fff;
    padding: 5px 10px;
    width: 337px;
    border: none;
    border-radius: 20px;
    font-family: "Leelawadee Bold V1";
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.promotion-button:hover {
    background-color: #8F6D2B;
}

.promotion-button:hover .whatsapp-icon-btn {
    filter: brightness(0.9);
}

.whatsapp-icon-btn {
    width: 25px;
    height: 25px;
    mix-blend-mode: lighten;
    opacity: 0.9;
    transition: filter 0.3s ease;
    margin-top: 5px;
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
 

    .promotion-image {
        max-width: 100%;
        
    }

 
}

/* Mobile Styles */
@media (max-width: 768px) {
    .promotion-container {
        flex-direction: column;
        align-items: center;
       max-height: 700px;
        margin-bottom:  30px;
        overflow-x: hidden !important;
       
    
    }

    .promotion-image {
        max-width: 100%;
        margin-bottom: 1px;
        border-radius: 20px;
    }

    .promotion-content {
   text-align: center;
    }
    .promotion-content h3 {
        margin-bottom: 5px;
    }

    .promotion-content ul {
    list-style: none;
    }
    .section-title-promo{
        font-size: 24px;
    }
    .section-title-promo::before,
    .section-title-promo::after {
        content: "";
        width: 12px; 
        height: 12px;
   
    } 
    .section-title-promo::before {
        left: -20px;
    }
    
    .section-title-promo::after {
        right: -20px; 
    }

    .promotion-content h3 {
        font-size: 24px;
    }
    .promotion-button {
        font-size: 12px;
        width: 300px;
    }
    .whatsapp-icon-btn {
        width: 18px;
        height: 18px;
    }
}

/* Contenedor Especial para la Promoción de Verano */
.summer-promo-container {
    background-color: #F5F5F5; /* Fondo claro */
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto 50px;
    max-width: 600px; /* Ancho máximo */
    text-align: center;
}

/* Estilo del Título */
.summer-promo-title {
    font-family: 'Edmundsbury-serif', serif;
    font-size: 36px;
    color: #A78036; /* Color dorado */
    margin: 10px 0;
}

/* Estilo del Descuento */
.summer-promo-discount {
    font-family: 'Leelawadee', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #A78036; /* Color dorado */
    margin: 5px 0 15px;
}

/* Nota en Tamaño Pequeño */
.summer-promo-note {
    font-family: 'Leelawadee', sans-serif;
    font-size: 12px;
    color: #000;
    margin-bottom: 20px;
}

/* Botón de Reservar */
.summer-promo-button {
    display: inline-block;
    background-color: #A78036; /* Fondo dorado */
    color: #fff;
    font-family: 'Leelawadee', sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 30px;
    border-radius: 20px;
    text-decoration: none;
    margin-bottom: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s ease;
}

.summer-promo-button:hover {
    background-color: #8F6D2B;
}

/* Imagen Centrada */
.summer-promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .summer-promo-container {
        padding: 20px;
    }

    .summer-promo-title {
        font-size: 28px;
    }

    .summer-promo-discount {
        font-size: 22px;
    }

    .summer-promo-note {
        font-size: 10px;
    }
}



/* Section Styling */
.services-section {
    margin: 20px auto;
    padding: 10px;
    max-width: 700px;
    text-align: center;

}


/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    margin-bottom: 60px;
    justify-items: center;
}

.service-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f5f5f5;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    width: 100%;
    max-width: 400px; 
 
}

.service-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-button img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 20px;

}
.wifi-icon {
    width: 40px !important; 
    height: 40px !important;
}
.service-button span {
    font-family: "Leelawadee Bold V1"; 
    font-size: 12px;
    color: #A78036;
    font-weight: 600;
    text-align: left;
}


.services-section a {
    background-color: #A78036;
    color: #fff;
    padding: 5px 20px;
    
    border: none;
    border-radius: 20px;
    font-family: "Leelawadee";
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}



.services-section:hover a {
    background-color: #8F6D2B;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


.main-button {
    background-color: #A78036;
    color: #fff;
    padding: 5px 20px;
    
    border: none;
    border-radius: 20px;
    font-family: "Leelawadee";
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);}



.main-button:hover  {
    background-color: #8F6D2B;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


.span-mainbutton {
    font-weight: bold !important;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }


    .services-section {
        margin: 20px auto;
        padding: 30px;
        max-width: 700px;
        text-align: center;
    
    }
}

@media (max-width: 368px) {
    .services-section a {
        font-size: 12px;
    }

    .services-section {
        padding: 10px;
    }
}

a {
    color: #A78036;

}
a:hover {
    font-weight: bold;
}
/* Footer Styles */
.footer {
    background-color: #A78036; /* Color dorado */
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    font-family: 'Leelawadee', sans-serif;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 255px;
    height: auto;
    margin-bottom: 10px;
}


.footer-logo p {
    font-size: 14px;
    margin: 0;
    letter-spacing: 2px;
}

.footer-info {
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 30px; 
    font-size: 14px;
    font-weight: lighter;
    color: #fff;
    flex-wrap: wrap; 
    margin-bottom: 20px;
}

.footer-info p {
    margin: 0;
    font-family: 'Leelawadee', sans-serif;
    font-weight: 400;
    white-space: nowrap;
}
.footer-info span {
    font-family: "Leelawadee Bold V1"; 
}

.footer-info p:nth-child(1) {
    font-weight: bold; 
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a img {
    width: 30px; /* Tamaño de los íconos */
    height: auto;
    transition: transform 0.2s ease;
}

.footer-social a img:hover {
    transform: scale(1.1); /* Efecto hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-logo img {
        width: 200px; /* Ajuste del logo para mobile */
    }

    .footer-social a img {
        width: 25px; /* Ajuste del tamaño de los íconos para mobile */
    }
}




.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;

  
    display: flex;
    justify-content: center;
    align-items: center;

}

.whatsapp-button img {
    width: 60px;
    height: 60px;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  width: 800px;
  max-width: 90%;
    background: rgba(255, 255, 255, 0.4);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 0px;
  right: 5px;
  font-size: 28px;
  font-weight: 500;
  cursor: pointer;
}

.slider-container img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 10px;
  object-fit: contain;
}

.slider-controls {
  margin-top: 15px;
}

.slider-controls button {
  background-color: transparent;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #333;
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 90%;
    padding: 15px;
  }

  .slider-container img {
    max-height: 300px;
  }

  .slider-controls button {
    font-size: 26px;
  }

  .close-btn {
    font-size: 24px;
    top: 0px;
    right: 1px;
  }
}
