/* General Body Styles */
body {
    font-family: Georgia, serif; /* You'd replace this with the actual font used in the design, e.g., 'Roboto', sans-serif; */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #6b3e26; /* Dark grey for general text */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Container for centering content (optional, but good practice) */
.container {
    max-width: 1200px; /* Or whatever width looks good for your content */
    margin: 0 auto;
    padding: 0 20px; /* Add some padding on the sides */
}

/* --- Header Section --- */
.main-header {
    background-color: #1a1a1a; /* Very dark grey/black */
    color: #ccc; /* Light grey text */
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping for responsiveness */
    gap: 10px;
}

.main-header .contact-info span {
    margin-right: 20px;
    font-size: 14px;
}

.main-header .social-media a {
    color: #ccc;
    text-decoration: none;
    margin-left: 15px;
    font-size: 18px; /* Assuming you'd use icon fonts or adjust image sizes */
}

.main-header .social-media img {
    height: 20px; /* Adjust as needed for social media icons */
    vertical-align: middle;
}


/* --- Navigation Bar --- */
.navbar {
    background-color: #a56a4b; /* Slightly lighter dark grey than header */
    padding: 15px 0;
    border-bottom: 3px solid #fdfdfc; /* Yellow border at the bottom */
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 150px; /* Adjust logo size */
}

.navbar .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px; /* Space between nav items */
}

.navbar .nav-links li a {
    color: #fff; /* White text for nav links */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.3s ease;
    position: relative; /* For the hover effect */
}

.navbar .nav-links li a:hover {
    color: #f75c0a; /* Yellow on hover */
}

/* Optional: Underline effect on hover */
.navbar .nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px; /* Adjust position */
    left: 0;
    background-color: #f75c0a;
    transition: width 0.3s ease;
}

.navbar .nav-links li a:hover::after {
    width: 100%;
}

/* --- Hero Section / Main Banner --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Ajusta la altura según necesites */
    background: url('img/1.jpg') no-repeat center center / cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

.hero-blur-box {
    background: rgba(0, 0, 0, 0.35); /* Fondo negro semitransparente */
    backdrop-filter: blur(10px); /* Difuminado del fondo */
    -webkit-backdrop-filter: blur(10px); /* Compatibilidad Safari */
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.hero-section::before { /* Optional: Dark overlay for better text readability */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
    max-width: 800px;
}

.hero-content h1 {
    font-size: 60px; /* Large heading */
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900; /* Extra bold */
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-get-started {
    background-color: #f00; /* Red button */
    color: rgb(245, 114, 27);
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block; /* Allows padding and margin */
}

.btn-get-started:hover {
    background-color: #c00; /* Darker red on hover */
}

/* --- Responsive Adjustments (Basic Example) --- */
@media (max-width: 768px) {
    .top-announcement-bar {
        font-size: 12px;
        flex-direction: column; /* Stack items vertically */
    }

    .main-header {
        flex-direction: column;
        text-align: center;
    }

    .main-header .contact-info span {
        margin-right: 0;
        display: block; /* Stack contact info */
    }

    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .navbar .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-content p {
        font-size: 14px;
    }
}
/* Estilos para el botón de hamburguesa */
.hamburger-menu {
   position: fixed; /* Hace que se quede fijo en la pantalla */
    top: 0px;        /* Separación desde arriba */
    right: 10px;      /* Puedes usar left: 10px para moverlo a la izquierda */
    display: block;   /* Asegura que sea visible */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;    /* Asegura que esté por encima de todo */
  }

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: rgb(245, 117, 58);
    transition: all 0.3s ease-in-out;
}

/* Cuando el menú está abierto */
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0; /* Oculta la barra del medio */
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg); /* Gira la primera barra */
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); /* Gira la tercera barra */
}

/* Media query para mostrar el botón de hamburguesa en móviles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block; /* Muestra el botón de hamburguesa en móviles */
    }

    .navbar .nav-links {
        /* Estilos para ocultar el menú en móviles por defecto y posicionarlo */
        display: none; /* Oculto por defecto */
        flex-direction: column;
        background-color: #6b3e26; /* Fondo del menú desplegable */
        position: absolute; /* O fixed, dependiendo del efecto deseado */
        top: 100px; /* Debajo de la barra de navegación */
        left: 0;
        width: 100%;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 99;
    }

    .navbar .nav-links.active {
        display: flex; /* Muestra el menú cuando tiene la clase 'active' */
    }

    .navbar .nav-links li {
        margin: 10px 0; /* Espacio entre los elementos del menú */
    }
}
/* bienbenida */
.intro 
 {
    padding: 40px 20px;
    text-align: center;
    background-color: #fce8d5;
}
.destacados {
    display: flex
;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #fff3e6;
    padding: 40px 20px;
}

.destacados article {
    flex: 1;
    max-width: 300px;
    margin: 10px;
    padding: 20px;
    background-color: #fce8d5;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

article
 {
    display: block;
    unicode-bidi: isolate;
}

/* -------------------- hacer turismo -------------------- */
/* Sección principal */
section.destinos {
  padding: 60px 20px;
  background-color: #fef9f5;
  text-align: center;
}

section.destinos h2 {
  font-family: 'Georgia', serif;
  color: #6b3e26;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

section.destinos p {
  color: #444;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Grid de actividades */
.destinos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Tarjeta de cada destino */
.destino {
  background-color: #fff;
  border: 1px solid #e3d7cc;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.07);
  padding: 20px;
  transition: transform 0.3s ease;
}

.destino:hover {
  transform: translateY(-5px);
}

/* Imagen circular */
.imagen-circular {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #d9bfae;
}

.imagen-circular img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Título de actividad */
.destino .titulo {
  font-size: 1.2rem;
  font-weight: bold;
  color: #6b3e26;
  margin-bottom: 8px;
}

/* Descripción/precio */
.destino .descripcion {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

/* Botón */
.contenedor-boton .btn-ver-actividad {
  background-color: #a85e3a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.contenedor-boton .btn-ver-actividad:hover {
  background-color: #6b3e26;
}

/* Botón inferior para ver todas */
.destinos a[href*="todas_actividades.php"] {
  font-size: 1rem;
  padding: 12px 25px;
  background-color: #6b3e26;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.destinos a[href*="todas_actividades.php"]:hover {
  background-color: #a85e3a;
}

.container {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.logo-text {
  display: flex;
  align-items: center; /* Centra verticalmente */
  gap: 15px;            /* Espacio entre logo y texto */
  justify-content: flex-start; /* Alinea a la izquierda */
}

.logo-text img {
  width: 60px;  /* Ajusta el tamaño del logo */
  height: auto;
}

.logo-text h1 {
  font-size: 24px;
  margin: 0;
  color: white;
}
