/* Base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #4a4a4a;
    background-color: #f8f8f8;
    line-height: 1.6;
}

/* Container for centered content */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and slider */
header {
    width: 100%;
    position: relative;
}

.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

h1 {
    text-align: center;
    color: #00bcd4;
    /* Turquoise blue similar to the image */
    font-size: 2.2rem;
    font-weight: 600;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}
/* Centrar todos los h3 */
h3 {
    text-align: center;
    color: #00bcd4;
    margin: 20px 0 15px;
}

/* Intro section */
.intro {
    padding: 30px 0;
}

.intro h2 {
    color: #00bcd4;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
}


.intro p {
    text-align: justify;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro h3 {
    color: #00bcd4;
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.intro ul {
    max-width: 800px;
    margin: 0 auto 20px;
    padding-left: 30px;
}

.intro ul li {
    margin-bottom: 8px;
}

.official {
    font-style: italic;
    color: #888;
    max-width: 800px;
    margin: 25px auto;
    text-align: right;
    font-size: 0.9rem;
}

/* Features section */
.features {
    padding: 30px 20px;
    background-color: #f9f9f9;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.feature-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    color: #00bcd4;
}

.features h2 {
    text-align: center;
    color: #00bcd4;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    min-width: 140px;
    background-color: white;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature-item img {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
}

.feature-item p {
    margin: 0;
    font-weight: 500;
}

/* Description section */
.description {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.description h2 {
    text-align: center;
    color: #00bcd4;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.description p {
    text-align: justify;
    line-height: 1.7;
}

/* Gallery section */
.gallery {
    padding: 30px 0;
}

.gallery h2 {
    text-align: center;
    color: #00bcd4;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    display: block;
    margin: 10% auto;
    max-width: 80%;
    max-height: 80%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: #00bcd4;
}

/* Responsive design */
@media (max-width: 768px) {
    .feature-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .feature-item {
        width: 80%;
    }

    h1 {
        font-size: 1.8rem;
    }

    .slider {
        height: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .slider {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Slider styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
}

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

/* Slider Navigation Buttons */
.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.slider-nav button:hover {
    background-color: rgba(0, 188, 212, 0.7);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

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

.dot.active {
    background-color: #00bcd4;
}

/* Container to center content */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Keep header h1 styles but add these modifications */
h1 {
    text-align: center;
    color: #00bcd4;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* Airbnb Link Styles */
.booking-link {
    text-align: center;
    margin: 20px 0;
}

.booking-link h2 a,
.airbnb-link h3 a,
.booking-options h3 a,
footer h2 a {
    display: inline-block;
    color: white;
    background-color: #FF5A5F;
    /* Color oficial de Airbnb */
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.booking-link h2 a:hover,
.airbnb-link h3 a:hover,
.booking-options h3 a:hover,
footer h2 a:hover {
    background-color: #FF3A3F;
    transform: translateY(-3px);
}

.airbnb-link {
    text-align: center;
    margin: 30px 0;
}

.booking-options {
    margin: 30px 0;
    text-align: center;
}

/* Footer Styles */
footer {
    background-color: #f0f0f0;
    padding: 30px 0;
    margin-top: 40px;
}

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

.footer-content p {
    margin-top: 20px;
    color: #777;
}
/* Navigation Styles */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background-color: white;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    color: #00bcd4;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.logo a:hover {
    color: #008ba3;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #00bcd4;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00bcd4;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #4a4a4a;
    transition: all 0.3s ease;
}

/* Header padding to account for fixed nav */
header {
    padding-top: 70px;
}

/* Contact Section Styles */
.contact {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    color: #00bcd4;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: #00bcd4;
    margin-bottom: 15px;
    display: inline-block;
}

.contact-item h3 {
    color: #00bcd4;
    margin-bottom: 10px;
}

.contact-item a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #00bcd4;
}

/* Icons for the contact section */
.icon-email::before {
    content: "✉";
}

.icon-airbnb::before {
    content: "🏠";
}

.icon-location::before {
    content: "📍";
}

/* Responsive menu */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links li {
        margin: 0;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Mapa de Google */
.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Item de ubicación más ancho */
.location-item {
    max-width: 400px;
}

/* Enlace de texto para Airbnb */
.airbnb-text-link {
    color: #FF5A5F;
    font-weight: 600;
    text-decoration: underline;
}

.airbnb-text-link:hover {
    color: #FF3A3F;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.amenity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.amenity img {
    width: 24px;
    height: 24px;
 }

 .amenities-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     gap: 1rem;
     margin-top: 1rem;
 }

 .amenity {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     font-weight: 500;
 }

 .amenity img {
     width: 24px;
     height: 24px; }

    