:root {
    /* Variables de colores */
    --color-line: #f18718;
    --color-hoteles: #928c8c;
    --color-header-bg: white;
    --color-header-text: white;
    --color-cta-bg: var(--color-line);
    --color-cta-bg-hover: #e07610;
    --color-footer-bg: #333;
    --color-footer-text: white;
}
#contact h2 {
    margin-bottom: 50px;
}
.menu-item {
    padding: 10px;
}
.thanks {
    padding: 10px;
    border: solid 1px;
    margin-bottom: 25px;
    margin-top: 25px;
    background: #b4fcb4;
    color: green;
}
.logo {
    max-width: 200px;
    width: 100%;
}
/* Estilos Generales */
body {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

header {
    background: var(--color-header-bg);
    color: var(--color-header-text);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0; /* Fijar header en la parte superior */
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black;
    padding: 25px;
}

.hero {
    background-image: url('/image/hotelesline-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 70px;
    position: relative;
}
.hero.bg-fixed {
    background-attachment: fixed;
}

.hero h1 {
    font-size: 4rem;
    color: var(--color-line);
}

.hero-captions {
    left: 0px;
    top: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0) 0, rgba(0, 0, 0,0.7) 60%, rgba(0, 0, 0,0.9) 100%);
}
.hero .text {
    position: relative;
}

section {
    padding: 60px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0px;
    text-align: center;
    color: var(--color-line);
}
h2 span {
    display: block;
    font-size: 1.2rem;
    font-style: italic;
    color: #928c8c;
    font-weight: normal;
}
.line-in-text {
    background-color: var(--color-cta-bg);
    width: 100px;
    height: 2px;
    margin-top: 5px;
    margin-bottom: 70px;
}

.cta-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--color-cta-bg);
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--color-cta-bg-hover);
}

footer {
    background-color: var(--color-footer-bg);
    color: var(--color-footer-text);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Estilos del footer */
.social-icons a {
    margin: 0 10px;
    display: inline-block;
    filter: grayscale(100%);
    transition: filter 0.3s;
    font-size: 36px;
}
.social-icons a:hover {
    filter: none;
}
footer p {
    margin: 0;
}

/* Transición visual al hacer scroll */
html {
    scroll-behavior: smooth;
}

/* Ajustes para formularios y botones */
form input, form textarea {
    margin-bottom: 20px;
}
.nav-link {
    color: var(--color-line);
    opacity: 0.8;
}
.nav-link:hover {
    color: var(--color-line);
    opacity: 1;
}
/* Estilos de Testimonios */
.testimonial-content {
    max-width: 600px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-style: italic;
    color: #555;
}

.testimonial-content h5 {
    margin-top: 20px;
    font-weight: bold;
    color: var(--color-line);
}

.testimonial-content p {
    color: var(--color-hoteles);
}
.carousel-control-prev,
.carousel-control-next {
    /*background-color: #928c8c;*/
}
/* Estilos del botón flotante de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn img {
    width: 50px;
    height: 50px;
}
.nav-bar {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0px;
    background: #ffffff;
    display: none;
}
.nav-bar .button-menu-close {
    float: right;
    width: 50px;
    height: 50px;
    background: red;
    padding: 13px;
    color: white;
    display: block;
    cursor: pointer;
    background-color: var(--color-line);
    margin-top: 10px;
    margin-right: 15px;
}
.nav-bar ul {
    margin-top: 100px;
    list-style: none;
    padding-left: 0px;
}
.nav-bar ul {
}
.nav-bar ul li a {
    text-decoration: none;
    font-size: 1.3rem;
}
.navShow {
    display: block;
}
.button-menu-open {
    display: none;
}
#hotelLogosCarousel img {
    margin-bottom: 50px;
}
.profile-img img {
    max-height: 100px;
    border-radius: 100px;
    border: solid 10px white;
}
@media (max-width: 995px) { 
    #nav-desktop {
        display: none;
    }
    .button-menu-open {
        display: block;
        color: var(--color-line);
        margin: 0px;
        padding: 0px;
        width: 50px;
        font-size: 36px;
        padding-top: 2px;
        cursor: pointer;
    }
    .hero h1 {
        font-size: 3rem;
    }
    #hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
