/* Estilos generales */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #2c3e50;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
}
.navbar {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ADFF2F; /* Verde lima brillante para el subrayado */
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Estilos para los íconos sociales */
.social-icons {
    display: flex;
    margin-left: 15px;
}

.social-icons a {
    color: white;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Colores específicos para cada red social */
.social-icons .whatsapp {
    background-color: #25D366;
}

.social-icons .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons .email {
    background-color: #D44638;
}

.social-icons a:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
    .social-icons {
        margin-top: 15px;
        justify-content: center;
        text-white:25px;
    }
}


/* Carrusel */
.carousel {
    z-index: 1; /* Asegura que el carrusel esté por debajo del navbar */
}

.carousel-item {
    height: 100vh;
    min-height: 300px;
    background: no-repeat center center scroll;
    background-size: cover;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2; /* Asegura que el contenido del banner esté por encima del carrusel */
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.info-box {
    background-color: rgba(255, 255, 255, 0.2); /* Fondo semitransparente */
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(5px);
    width: fit-content;
    margin: 0 auto; /* Centrar horizontalmente */
}

.disponibilidad {
    background-color: #ffcc00; /* Color llamativo */
    color: #333;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.btn-reservar {
    background-color: #ff5733;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-reservar:hover {
    background-color: #e64a19;
}

/* Sección de bienvenida */
#bienvenida {
    padding: 100px 0;
    background: linear-gradient(rgba(40, 60, 50, 0.9), rgba(40, 60, 50, 0.9)), url('assets/imagen/fami2.png');
    background-size: cover;
    background-position: center;
    color: #fff;
}

#bienvenida h2 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#bienvenida p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

#bienvenida .rounded {
    border-radius: 15px !important;
}

#bienvenida .col-md-6 {
    padding: 20px;
}

/* Sección de servicios */
#servicios {
    padding: 100px 0;
    background-color: #f8f9fa;
}

#servicios h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 70vh;
    width: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card-img-top:hover {
    transform: scale(1.07); /* Efecto de zoom suave */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: brightness(1.1) contrast(1.2);
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

/* Sección de testimonios */
#testimonios {
    padding: 100px 0;
    background-color: #f8f9fa;
}

#testimonios h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
}

#testimonios .card {
    border: none;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#testimonios .card:hover {
    transform: translateY(-10px);
}

#testimonios .card-body {
    padding: 20px;
}

#testimonios .card-text {
    font-size: 1rem;
    color: #555;
}

#testimonios .text-muted {
    font-size: 0.9rem;
    color: #777;
}

/* Sección de contacto */
#contacto {
    padding: 100px 0;
    background-color: #2c3e50;
    color: #fff;
}

#contacto h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 50px;
}

#contacto .form-control {
    background-color: #34495e;
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

#contacto .form-control::placeholder {
    color: #bdc3c7;
}

#contacto .btn-primary {
    background-color: #18bc9c;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

#contacto .btn-primary:hover {
    background-color: #128f76;
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Formas decorativas */
.shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.shape-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: -20px;
    left: -20px;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid rgba(255, 255, 255, 0.1);
    bottom: -20px;
    right: -20px;
}