body {
    font-family: Arial, sans-serif;
    background-color: transparent;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

header {
    background-color: rgba(0, 0, 0, 0.6); /* Fondo semitransparente para mejor contraste */
    position: absolute; /* Flotante sobre el contenido */
    top: 0;
    left: 0;
    width: 100%; /* Abarca todo el ancho */
    z-index: 10; /* Por encima del hero-container */
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Añade un sutil efecto de sombra */
    transition: background-color 0.5s ease, transform 0.3s ease;
}

header:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Cambia el fondo al pasar el mouse */
    transform: scale(1.02); /* Ligeramente más grande */
}

header nav a {
    font-size: 20px; /* Aumenta el tamaño del texto */
    color: #fff; /* Texto blanco para contraste */
    text-transform: uppercase; /* Convierte a mayúsculas */
    font-weight: bold; /* Más grueso */
    margin: 0 20px;
    text-decoration: none;
    letter-spacing: 1px; /* Espaciado entre letras */
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

header nav a:hover {
    color: #ffd700; /* Cambia a dorado al pasar el mouse */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8); /* Añade un brillo dorado */
}

header nav a::before {
    content: '';
    position: absolute;
    bottom: -5px; /* Debajo del texto */
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ffd700; /* Línea dorada */
    transition: width 0.4s ease, left 0.4s ease;
}

header nav a:hover::before {
    width: 100%; /* Línea completa al pasar el mouse */
    left: 0;
}

/* Hero Section */
.hero-container {
    background: url(../img/Nosotros.JPG) center/cover no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-body h1 {
    font-size: 50px;
    color: white;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-body span {
    font-size: 24px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nosotros .container > p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 4px solid #0056b3;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.actividades h2 {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.separator {
    width: 60%;
    border: none;
    border-top: 2px solid #ddd;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.card {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Capa negra semitransparente */
    z-index: 1; /* Debajo del contenido pero encima de la imagen */
    transition: background-color 0.3s ease;
}

.card:nth-child(1) { background-image: url('../img/Rodiles.jpg'); } /*Oscurecer imagen*/
.card:nth-child(2) { background-image: url('../img/RiaVillaviciosa.jpg'); }
.card:nth-child(3) { background-image: url('../img/Senderismo.jpg'); } /*Oscurecer/Cambiar Imagen*/
.card:nth-child(4) { background-image: url('../img/Actividades.jpg'); }
.card:nth-child(5) { background-image: url('../img/Pescar.jpg'); } /*Oscurecer/Cambiar imagen*/
.card:nth-child(6) { background-image: url('../img/GijonCard.jpg'); } /*Oscurecer imagen*/

.card:hover {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    color: white;
    z-index: 2; /* Asegura que el contenido esté por encima de la capa negra */
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.card h3 {
    font-size: 24px;
    margin: 0;
    transition: transform 0.3s ease;
}

.card p {
    font-size: 16px;
    opacity: 0; /* Inicialmente oculto */
    transform: translateY(10px); /* Lo mueve hacia abajo inicialmente */
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
}

.card:hover h3 {
    transform: translateY(-30px); /* Sube el título al hacer hover */
}

.card:hover::before {
    background-color: rgba(0, 0, 0, 0.7); /* Aumenta la opacidad al pasar el mouse */
}

.card:hover p {
    opacity: 1; /* Hace visible el texto al hacer hover */
    transform: translateY(0); /* Vuelve a la posición original */
}

.ubicacion {
    text-align: center;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
}

.ubicacion h2 {
    font-size: 28px;
    color: #2a2a2a;
    margin-bottom: 20px;
    font-weight: bold;
}

.ubicacion iframe {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    max-width: 100%;
    height: 450px;
}

.ubicacion iframe:hover {
    transform: scale(1.05);
}

/* Reservar Section */
.reservar-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
}

.reservar-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid #0056b3;
    display: inline-block;
    padding-bottom: 10px;
}

.reservar-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reservar-section a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.reservar-section a:hover {
    color: #003d80;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.reservar-section strong {
    font-size: 18px;
    color: #333;
}

.footer {
    background-color: #2c3e50; /* Fondo oscuro */
    color: #ecf0f1; /* Texto claro */
    padding: 40px 20px;
    margin-top: 30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffd700; /* Texto en dorado */
}

.footer-section p, .footer-section ul {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700; /* Cambia a dorado al pasar el mouse */
}

.footer-section .fas {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #34495e;
    padding-top: 15px;
    font-size: 14px;
}

.footer-bottom a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ecf0f1;
}

.footer-section .social-icons a {
    display: inline-block;
    margin-right: 15px;
    color: #f9f9f9; /* Color blanco */
    font-size: 24px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section .social-icons a:hover {
    color: #ffd700; /* Cambia a dorado al pasar el ratón */
    transform: scale(1.1); /* Aumenta ligeramente el tamaño */
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: repeat(1, 1fr); /* Una columna para las cards */
        gap: 15px; /* Reduce el espacio entre cards */
    }

    .card {
        height: 200px; /* Reduce la altura de las cards */
    }

    .card h3 {
        font-size: 20px; /* Ajusta el tamaño del título en las cards */
    }

    .card p {
        font-size: 14px; /* Ajusta el texto adicional */
    }

    .ubicacion h2 {
        font-size: 24px; /* Reduce el tamaño del título de la sección */
    }

    .ubicacion iframe {
        height: 300px; /* Reduce la altura del mapa */
    }

    .reservar-section {
        padding: 20px; /* Reduce el padding de la sección */
        margin: 15px auto;
    }

    .reservar-section h2 {
        font-size: 24px; /* Reduce el tamaño del título */
    }

    .reservar-section p {
        font-size: 16px; /* Ajusta el tamaño del texto */
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

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