/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo general del body */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F6F4F3;
    margin: 5px 10px 10px 10px;
}

/* Estilo del encabezado */
header {
    padding-bottom: 20px;
}

.logo-menu-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.logo-container {
    padding: 10px;
    margin-right: 20px;
}

.logo {
    width: 100%;
    max-width: 240px;
    height: auto;
}

nav.desktop-menu {
    display: flex;
    flex-grow: 1;
    background-color: #F6F4F3;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.menu-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    border-radius: 20px;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

    .menu-item.active, .menu-item:hover {
        color: #B44E89;
        font-weight: bold;
    }

/* Language selector */
.language-selector {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
    order: 3; /* Asegura que los idiomas estén a la derecha */
}

/* Ajustes para vista de escritorio */
@media (min-width: 769px) {
    .logo-menu-container {
        justify-content: space-between; /* Distribuye el logo, menú y banderas correctamente */
    }

    .desktop-menu {
        order: 2; /* Asegura que el menú esté en el centro */
    }

    .logo-container {
        order: 1; /* Asegura que el logo esté a la izquierda */
    }
}

.flag {
    width: 24px;
    height: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .flag:hover {
        transform: scale(1.2);
    }

/* Separator line */
.separator {
    width: 100%;
    height: 2px;
    background-color: #31241E;
    margin-top: 2px;
}

/* Mobile Menu */
nav.mobile-menu {
    display: none; /* Hidden by default */
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #F6F4F3;
    padding: 10px;
    border: 2px solid #ccc;
    z-index: 1000;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.mobile-menu-item {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    color: black; /* Ensure the text color is visible */
    background-color: white; /* Background color for better visibility */
    text-align: left; /* Align text to the left */
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    display: block; /* Ensure the item takes up the full width */
}

    .mobile-menu-item:hover {
        background-color: #f0f0f0; /* Visual feedback on hover */
    }

.hamburger-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav.desktop-menu {
        display: none; /* Hide desktop menu on mobile */
    }

    .hamburger-menu {
        display: block; /* Show hamburger icon on mobile */
    }

    nav.mobile-menu {
        display: none; /* Hidden by default, toggled by JavaScript */
    }
}

/* About Page */
.about-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.about-image-column {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.about-text-column {
    flex: 2;
    padding: 20px;
}

.meet-me {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #B44E89;
    margin-bottom: 10px;
    text-align: left;
}

.about-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.about-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.book-now-btn {
    display: block;
    margin-top: 10px;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #B44E89;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
}

    .book-now-btn:hover {
        background-color: #9f3f74;
    }

/* Media queries for mobile */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image-column, .about-text-column {
        padding: 10px;
    }

    .about-image {
        max-width: 100%;
    }

    .about-name {
        font-size: 20px;
    }
}

/* Services Page */
.services-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.services-column {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.services-image {
    width: 100%; /* Ensure the image fills the entire width of the column */
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.services-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}

.services-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: left;
}

.services-paragraph {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.read-more-btn {
    display: block;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #B44E89;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

    .read-more-btn:hover {
        background-color: #9f3f74;
    }

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }

    .services-column {
        padding: 10px;
    }
}

/* Promotions Page */
.promotions-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.promotions-column {
    flex: 1;
    padding: 20px;
}

.promotions-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
}

.promotions-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: left;
}

#loading-message {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #555;
    text-align: center;
    margin-top: 20px;
}

.promotion-cell {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    background-color: #D1C8C1; /* Example background color */
    margin-bottom: 10px;
    border-radius: 10px;
}

.promotion-title {
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
}

.promotion-cell p {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    margin: 0;
}

.promotions-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.promotion-invite {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-align: left;
    margin-bottom: 20px;
}

.promotion-highlight {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
}

.contact-us-btn {
    display: block;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #B44E89;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

    .contact-us-btn:hover {
        background-color: #9f3f74;
    }

@media (max-width: 768px) {
    .promotions-container {
        flex-direction: column;
    }

    .promotions-column {
        padding: 10px;
    }
}

/* Additional styles for content */
.content-section {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.text-section {
    flex: 2;
    padding-right: 20px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.images-section {
    flex: 3;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.content-image {
    flex: 1;
    width: 100%;
    height: auto;
    padding: 0 10px;
    margin-bottom: 20px;
}

/* "Book Now" button */
.book-now-btn {
    align-self: flex-end; /* Align the button to the right */
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #B44E89;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
}

    .book-now-btn:hover {
        background-color: #9f3f74;
    }

.main-image-container {
    width: 100%;
}

.main-image {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 24px;
}

footer {
    padding: 20px;
    background-color: #31241E;
    color: white;
    text-align: center;
}

    footer a {
        color: #B44E89;
        text-decoration: none;
        font-weight: bold;
    }

        footer a:hover {
            text-decoration: underline;
        }

/* Media queries for other devices */
@media (max-width: 480px) {
    .logo {
        max-width: 180px; /* Adjust the logo size on smaller screens */
    }

    .book-now-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .content-title {
        font-size: 16px;
    }

    .content-paragraph {
        font-size: 12px;
    }
}

.promotion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.promotion-title {
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0;
}

.promotion-price {
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0;
    text-align: right;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-column,
.form-column {
    flex: 1;
    padding: 20px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-column,
    .form-column {
        padding: 10px;
    }
}

.form-column {
    flex: 1;
    padding: 20px;
    background-color: #D1C8C1; /* Same as promotions background color */
    border-radius: 10px;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        font-family: 'Poppins', sans-serif;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 10px;
        font-family: 'Poppins', sans-serif;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

.submit-btn {
    display: block;
    margin-top: 10px;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #B44E89;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    align-self: flex-end;
}

    .submit-btn:hover {
        background-color: #9f3f74;
    }
