/* Estilos Generales */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

/* Navegación */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #B22222;
    padding: 15px 20px;
    color: white;
}

.logo img {
    height: 80px; /* Tamaño del logo */
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

.tours-title {
    text-align: center; /* Centra el texto */
    font-size: 2rem; /* Ajusta el tamaño del texto si es necesario */
    font-weight: bold; /* Asegura que se vea destacado */
    margin-bottom: 20px; /* Espacio debajo del título */
}


nav ul li a:hover {
    color: #FFD700; /* Cambio de color al pasar el mouse */
}

.hero {
    background: url('portadavar.jpg') no-repeat center center;
    background-size: 100%; /* Ajuste manual del tamaño */
    background-position: top; /* Centra mejor la imagen */
    height: 80vh; /* Mantiene buena altura */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    background: white;
    color: #B22222;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #FFD700;
    color: black;
}

/* Sección Tours */
.tours {
    padding: 50px;
    text-align: center;
    background-color: #f8f8f8;
}

.tour-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tour-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
}

.tour-card img {
    width: 100%;
    border-radius: 10px;
}

.tour-card h3 {
    font-size: 1.4rem;
    margin: 10px 0;
}

.tour-card p {
    font-weight: bold;
    color: #B22222;
}

.tour-card .btn {
    margin-top: 10px;
    display: inline-block;
    background-color: #B22222;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.tour-card .btn:hover {
    background-color: #FFD700;
    color: black;
}

/* Sección Detalles de Tour */
.tour-details {
    text-align: center;
    padding: 50px;
    background: white;
}

.tour-details img {
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.tour-details p {
    font-size: 1.2rem;
    margin: 10px 0;
}

/* Galería en tour.html */
.gallery {
    padding: 50px;
    text-align: center;
    background-color: #fff;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.gallery-container img {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.gallery-container img:hover {
    transform: scale(1.05);
}

/* Sección Hero del Contact */
.hero-contact {
    background: url('portadavar.jpg') no-repeat center center;
    background-size: cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

/* Contenedor de Contacto */
.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.contact-item {
    width: 30%;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1rem;
    margin: 5px 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a img {
    width: 30px;
    margin: 0 5px;
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

/* Contenedor de Contacto - Alineado Horizontalmente */
.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Cada Sección de Contacto */
.contact-item {
    width: 30%;
    padding: 20px;
    border-radius: 10px;
}

/* Iconos de Redes Sociales */
.social-icons {
    margin-top: 10px;
}

.social-icons a img {
    width: 30px;
    margin: 0 8px;
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item {
        width: 90%;
        margin-bottom: 20px;
    }
}



/* Formulario de Contacto */
.contact-form {
    text-align: center;
    padding: 50px;
    background: white;
}

.contact-form form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background: #B22222;
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #FFD700;
    color: black;
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item {
        width: 90%;
        margin-bottom: 20px;
    }
}


/* Footer */
footer {
    background: #B22222;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
}

.footer-section {
    text-align: left;
    width: 45%;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Enlace de email */
.email-link {
    color: #FFA500;
    font-weight: bold;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

/* Número de teléfono */
.phone-number {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Iconos sociales */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a img {
    width: 35px;
    transition: transform 0.3s;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

/* Footer inferior */
.footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #B22222;
    font-size: 0.9rem;
    opacity: 0.7;
}


/* Sección Hero para Book Now */
.hero-book {
    background: url('bookft.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

/* Sección Hero para Book Now */
.hero-book {
    background: url('bookft.jpg') no-repeat center center;
    background-size: cover; /* Ajusta para cubrir sin distorsionar */
    height: 60vh; /* Ajuste de altura para mejor visibilidad */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    width: 100%;
}

/* Ajuste para pantallas más pequeñas */
@media (max-width: 768px) {
    .hero-book {
        height: 50vh; /* Reducir en móviles */
        font-size: 1.5rem;
    }
}



/* ========================= */
/* 📌 Checkout (Book Now) */
/* ========================= */
.checkout-container {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 50px auto;
    gap: 20px;
}

/* 📌 Sección de Detalles de Facturación */
.billing-details {
    width: 55%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.billing-details h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #B22222;
}

.billing-details form {
    display: flex;
    flex-direction: column;
}

.billing-details label {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.billing-details input,
.billing-details textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* 📌 Sección del Resumen del Pedido */
.order-summary {
    width: 40%;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.order-summary h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #B22222;
}

.order-details p {
    font-size: 1rem;
    margin: 5px 0;
}

/* 📌 Información del Pago */
.payment-info {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.payment-info h3 {
    color: #B22222;
}

.payment-info p {
    font-size: 1rem;
}

/* 📌 Checkbox de términos */
.terms-label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-top: 20px;
}

.terms-label input {
    margin-right: 10px;
}

/* 📌 Responsividad */
@media (max-width: 768px) {
    .checkout-container {
        flex-direction: column;
        align-items: center;
    }

    .billing-details, .order-summary {
        width: 90%;
    }
}


/* Información sobre el pago y punto de encuentro */
.payment-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: left;
}

.payment-info h3 {
    color: #B22222;
    margin-bottom: 10px;
}

.payment-info p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Checkbox de términos y condiciones */
.terms-label {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-top: 20px;
}

.terms-label input {
    margin-right: 10px;
}

/* Deshabilita el botón de PayPal si no aceptan términos */
#paypal-button-container {
    margin-top: 20px;
}


/*collage y about*/ 
/* Sección Hero del About */
.hero-about {
    background: url('portadavar.jpg') no-repeat center center;
    background-size: cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

/* Contenedor principal del About */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}

/* Texto del About */
.about-text {
    width: 50%;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Collage de imágenes */
.about-collage {
    width: 40%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 10px;
}

.about-collage img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-collage {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* LOGO */
.logo img {
    height: 60px;
    display: block;
    margin-left: 20px;
}

/* Galería de imágenes en collage */
.gallery {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 800px;
    margin: auto;
}

.collage img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Contenedor principal de dos columnas */
.tour-container {
    max-width: 1100px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Contenedor de contenido con dos columnas */
.tour-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    margin-top: 20px;
}

/* Columna izquierda: información del tour */
.tour-info {
    flex: 2;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Columna derecha: información adicional */
.tour-sidebar {
    flex: 1;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Título del tour arriba de las imágenes */
.tour-name {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Collage de imágenes */
.gallery {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 800px;
    margin: auto;
}

.collage img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}


/* Botón de reserva */
.tour-info .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.tour-info .btn:hover {
    background: #0056b3;
}

/* Responsivo */
@media (max-width: 768px) {
    .tour-content {
        flex-direction: column;
    }
}

.gallery-collage {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
    max-width: 100%;
    margin: 20px auto;
    padding: 0 10px;
}

.gallery-collage img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.gallery-collage img:hover {
    transform: scale(1.03);
}

.about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  .about-text {
    flex: 1 1 60%;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .about-collage {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
  }
  
  .about-collage img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }



  
/*galeria tour*/
.tour-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* antes 100px */
    gap: 10px;
    max-width: 100%;
    margin: 20px auto;
    padding: 0 15px;
}


.gallery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.gallery-image:hover {
    transform: scale(1.03);
}


@media (max-width: 768px) {
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .footer-info {
    flex-direction: column;
    width: 100%;
  }

  .footer-section {
    width: 100%;
    margin-bottom: 20px;
    word-break: break-word;
  }

  .email-link, .phone-number {
    font-size: 4vw;
    word-break: break-word;
    display: inline-block;
    text-align: center;
  }

  .footer-bottom {
    padding: 10px;
    font-size: 3.5vw;
    text-align: center;
  }
}



