/*
Theme Name: Nomad In Peru Theme
Description: Tema para agencia de viajes especializada en Cusco y Machu Picchu
Version: 1.0
Author: Nomad In Peru
*/

/* Variables CSS para temas */
:root {
    /* Tema Light (por defecto) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #1a1a1a;
    --bg-quaternary: #181818;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-inverse: #ffffff;
    --accent-color: #fac304;
    --accent-hover: #dd940a;
    --border-color: #e0e0e0;
    --shadow: rgba(0,0,0,0.1);
    --shadow-hover: rgba(0,0,0,0.15);
    --overlay: rgba(0, 0, 0, 0.5);
    --card-bg: #ffffff;
}

/* Tema Dark */
:root[data-theme="dark"],
[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2a2a2a;
    --bg-tertiary: #0f0f0f;
    --bg-quaternary: #050505;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-inverse: #1a1a1a;
    --accent-color: #fac304;
    --accent-hover: #dd940a;
    --border-color: #3a3a3a;
    --shadow: rgba(0,0,0,0.3);
    --shadow-hover: rgba(0,0,0,0.4);
    --overlay: rgba(0, 0, 0, 0.7);
    --card-bg: #2a2a2a;
}

/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 1s ease;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}


main {
    margin: 0;
    padding: 0;
}

.container {
    margin: 0 7%;
}

/* Top Bar */
.top-bar {
    background: #2a2a2a;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-right select {
    background: transparent;
    color: white;
    border: 1px solid #3a3a3a;
    padding: 5px;
    border-radius: 3px;
}

.top-right select option {
    background: #2a2a2a;
    color: #ffffff;
}

.social-icons a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
}

/* Header */
.header {
    background: var(--bg-primary);
    box-shadow: 0 2px 5px var(--shadow);
    padding: 7px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-primary);
    width:10%;
    line-height: 0;
    transition: color 0.3s ease;
}

.logo img {
    width: 100%;
    height: auto;
}

header .nav {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Ocultar contenedores de widgets innecesarios */
header .nav .widget,
header .nav .menu-widget,
header .nav .menu-main-container {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
    display: contents;
}

/* Ocultar completamente el div menu-main-container */
header .nav .menu-main-container {
    display: contents !important;
}

/* Asegurar que el ul del menú tenga los estilos correctos */
header .nav .menu {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .nav li {
    margin: 0;
    padding: 0;
}

header .nav .menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
    position: relative;
    display: block;
    text-align: center;
}

header .nav .menu a:hover {
    color: var(--accent-color);
    background: rgba(250, 195, 4, 0.1);
    transform: translateY(-2px);
}

header .nav .menu a.active,
header .nav .menu .current-menu-item a {
    color: var(--accent-color);
    background: rgba(250, 195, 4, 0.1);
}

header .nav .menu a.active::after,
header .nav .menu .current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

/* Responsive para el nav */
@media (max-width: 768px) {
    header .nav,
    header .nav .menu {display: none;}
    
    header .nav .menu li {
        width: 100%;
    }
    
    header .nav .menu a {
        width: 100%;
        text-align: center;
        padding: 15px;
        border: 1px solid var(--border-color);
    }
    
    header .nav .menu a:hover {
        transform: none;
        background: var(--bg-secondary);
    }
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-inverse);
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 90vh;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #000;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Imágenes responsive del carousel */
.slide-image-desktop {
    display: block;
}

.slide-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .slide-image-desktop {
        display: none;
    }
    
    .slide-image-mobile {
        display: block;
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.slide:hover .slide-overlay {
    background-color: rgba(0, 0, 0, 0);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    text-align: left;
    color: #ffffff;
    border-radius: 10px;
    z-index: 2;
    width: 70%;
}

.slide-content div {
    text-align: left;
    color: #ffffff;
}

.slide-minititle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.slide-title {
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: bold;
}

.slide-description {
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    margin-bottom: 20px;
}


.slide-button {
    margin-bottom: 0;
}

.slide-button a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    background-color: #fac304;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.slide-button a:hover {
    background: #dd940a;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 3;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-thumbnails {
    position: absolute;
    bottom: 30px;
    left: 7%;
    display: flex;
    gap: 25px;
    padding: 15px 25px;
    border-radius: 10px;
    z-index: 3;
}

.thumbnail {
    width: 84px;
    height: 63px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #ffffff;
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.description {
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.hero-img {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-nav {
    background: rgba(0,0,0,0.1);
    padding: 20px 0;
}

.category-nav .container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.category {
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.category.active,
.category:hover {
    background: rgba(255,255,255,0.2);
}

/* Destinations */
.destinations {
    padding: 80px 0;
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.destinations h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: var(--text-primary);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.destination-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s, background-color 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    display: block;
    margin: 0 auto;
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--text-inverse);
}

/* Experience */
.experience {
    padding: 80px 0;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.experience h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-card i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #ffffff;
}

.hello-summer {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.duration {
    font-size: 16px;
}

.front-page-content{padding: 5rem 7%;}
.front-page-container h1{font-size: 1rem; color: var(--primary-color); font-family: 'Barlow', sans-serif; font-weight: 600;}
.front-page-container h2{font-size: 2.5rem; line-height: 2.5rem; color: var(--primary-color); font-family: 'Barlow', sans-serif; font-weight: 700;}
.front-page-container h2 strong{font-size: 1.5rem; color: var(--accent-hover); font-family: 'Barlow', sans-serif; font-weight: 600;}
.front-page-container h3{font-size: 1.25rem; color: var(--primary-color); font-family: 'Barlow', sans-serif; font-weight: 600;}
.front-page-container h4{font-size: 1rem; color: var(--primary-color); font-family: 'Barlow', sans-serif; font-weight: 600;}
.front-page-container h5{font-size: 0.875rem; color: var(--primary-color); font-family: 'Barlow', sans-serif; font-weight: 500;}
.front-page-container h6{font-size: 0.75rem; color: var(--primary-color); font-family: 'Barlow', sans-serif; font-weight: 500;}
.front-page-container p{font-size: 1rem; color: var(--text-color); margin: 1rem 0;}

.has-text-align-center{text-align: center;}
.has-text-align-left{text-align: left;}
.has-text-align-right{text-align: right;}
.has-text-align-justify{text-align: justify;}
.has-text-align-justify{text-align: justify;}

figure.aligncenter img {
    display: block;
    margin: 1.5rem auto;
    text-align: center;
}

.home-one-widget-area{padding: 5rem 7%; background-color: var(--bg-secondary);}
.home-widget-title-one{font-size: 2.5rem; line-height: 2.5rem; color:var(--accent-hover); border-bottom: double 3px; padding-bottom: 1rem; margin-bottom: 1rem; font-family: 'Barlow', sans-serif; font-weight: 700;}
.home-widget-title-two{font-size: 2.5rem; line-height: 2.5rem; color:var(--accent-hover); border-bottom: double 3px; padding-bottom: 1rem; margin-bottom: 1rem; font-family: 'Barlow', sans-serif; font-weight: 700;}

.home-two-widget-area{padding: 5rem 7% 12rem; background: url(images/bg001.webp) no-repeat center center var(--accent-hover); background-size: 100% auto; color: var(--bg-primary);}
.home-two-widget-title-two{font-size: 2.5rem; line-height: 2.5rem; color:var(--accent-hover); border-bottom: double 3px; padding-bottom: 1rem; margin-bottom: 1rem; font-family: 'Barlow', sans-serif; font-weight: 700;}
.home-widget-title-three{font-size: 2.5rem; line-height: 2.5rem; color:var(--accent-hover); padding-bottom: 1rem; margin-bottom: 1rem; font-family: 'Barlow', sans-serif; font-weight:500; text-align: center;}
.home-widget-title-four{font-size: 2.5rem; line-height: 2.5rem; color:var(--accent-hover); padding-bottom: 1rem; margin-bottom: 1rem; font-family: 'Barlow', sans-serif; font-weight:500; text-align: center;}
.home-widget-title-five{font-size: 2.5rem; line-height: 2.5rem; color:var(--accent-hover); padding-bottom: 1rem; margin-bottom: 1rem; font-family: 'Barlow', sans-serif; font-weight:500; text-align: center;}
.home-widget-title-six{font-size: 2.5rem; line-height: 2.5rem; color:var(--accent-hover); padding-bottom: 1rem; margin-bottom: 1rem; font-family: 'Barlow', sans-serif; font-weight:500; text-align: center;}
.home-six-container{background-color: var(--bg-tertiary); padding: 4rem 0;}

.home-two-widget-area ul{list-style: none;display: flex; align-items: center; gap:3rem;}
.home-two-widget-area ul li{font-size:0.85rem; text-align: center; padding: 1rem; border-left: solid 1px var(--bg-primary);}
.home-two-widget-area ul li strong{font-size:1rem; color: var(--bg-primary);}
.home-two-widget-area ul li img{filter: brightness(0) invert(1); height: 80px; width: 80px; padding: 1rem; border-radius: 50%; border: dashed 2px;}
.home-two-widget-area p{font-size: 2rem; text-align: center;  margin: 1rem 0;}

.home-three-widget-area{padding: 5rem 7%; background-color: var(--bg-secondary);}

.home-four-widget-area{padding: 5rem 7%; background-color: var(--bg-primary);}

.home-five-widget-area{padding: 5rem 7%; background-color: var(--bg-secondary);}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        gap: 20px;
    }
    .logo{width: 20%;}
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-carousel {
        height: 50vh;
    }
    
    .slide-content {
        padding: 20px;
        max-width: 90%;
        left: 5%;
    }
    .slide-button a{padding:0.5rem 1rem;font-size: 0.75rem;}
       
    .slide-minititle {display: none;}
    
    .slide-title {
        font-size:2rem;
        margin-bottom: 12px;
        line-height:2rem ;
    }
    
    .slide-description {
        display: none;
    }
    
    
    .slide-button {
        margin-bottom: 0;
    }
    
    .carousel-prev,
    .carousel-next {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .carousel-thumbnails {display: none;}  
    
    .thumbnail {
        width: 63px;
        height: 48px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-images {
        flex-direction: column;
        align-items: center;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-grid {
        grid-template-columns: 1fr;
    }
}

/* Botón de cambio de tema */
.theme-toggle {
    background: transparent;
    color: white;
    border: 1px solid #3a3a3a;
    padding: 5px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 3px;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.theme-toggle i {
    font-size: 12px;
}

/* Home Seven Widget Area */
.home-seven-widget-area {
    padding: 60px 0;
    background: var(--background-color);
}

.home-seven-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-widget-title-seven {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: 'Barlow', sans-serif;
}

.home-widget-title-seven::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-hover);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Copyright Section */
.copyright-section {
    background-color: #1a1a1a;
    color: #999;
    padding: 20px 0;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    border-top: 1px solid #333;
}

.copyright-section p {
    margin: 5px 0;
}

.copyright-section p:last-child {
    font-style: italic;
    color: #666;
}

.copyright-section a {
    color: #007cba;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-section a:hover {
    color: #005a87;
    text-decoration: underline;
}

/* Footer Logos Widget Area */
.footer-logos {
    padding: 40px 7%;
    background: var(--bg-tertiary);
    border-bottom: 1px solid #e9ecef;
}

.footer-logos .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logos-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    width: 100%;
}

.footer-logos img {
    filter: grayscale(100%);
    opacity: 0.7;
    width: auto;
    height: 40px !important;
}

.footer-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.footer-main {
    padding: 2rem 7%;
    background-color: var(--bg-quaternary);
    color: var(--text-inverse);
}


/* Footer Columns */
.footer-columns {
    display: flex;
    gap: 30px;
    padding: 40px 0;
}

.footer-col {
    flex: 1;
}

.footer-widget-title {
    color: var(--text-inverse);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
}

.footer-widget {
    margin-bottom: 20px;
}

.footer-widget p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-widget a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: var(--accent-hover);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-widget ul li a {
    display: block;
    padding: 5px 10px;
}

/* Responsive para footer columns */
@media (max-width: 992px) {
    .footer-columns {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        gap: 30px;
        padding: 30px 0;
        text-align: center;
    }
    
    .footer-col {
        flex: none;
    }
}
.title-and-info-container {display: flex; position: sticky; top: 0; z-index: 1000; background-color: var(--bg-primary); padding: 1rem 7% 1rem 7%; margin-bottom: 1rem; justify-content: space-between; border-bottom: 1px solid var(--bg-tertiary);}
/* Single Info Metaboxes */
.single-info-metaboxes {
    display: flex; gap: 15px;
}

.info-item {
    padding: 0 15px 0 60px;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: auto 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item .info-label {
    font-weight: 600;
    font-size: 12px;
    color: var(--accent-color);
    display: block;
}

.info-item .info-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.info-duration {
    background-image: url('images/icon-duration-black-46x50.webp');
}

:root[data-theme="dark"] .info-duration,
[data-theme="dark"] .info-duration {
    background-image: url('images/icon-duration-white-46x50.webp');
}

.info-location {
    background-image: url('images/icon-location-black-30x50.webp');
}

:root[data-theme="dark"] .info-location,
[data-theme="dark"] .info-location {
    background-image: url('images/icon-location-white-30x50.webp');
}

.info-mode {
    background-image: url('images/icon-group-people-black-47x50.webp');
}

:root[data-theme="dark"] .info-mode,
[data-theme="dark"] .info-mode {
    background-image: url('images/icon-group-people-white-47x50.webp');
}

.info-frequency {
    background-image: url('images/icon-frecuency-black-55x50.webp');
}

:root[data-theme="dark"] .info-frequency,
[data-theme="dark"] .info-frequency {
    background-image: url('images/icon-frecuency-white-55x50.webp');
}

.info-language {
    background-image: url('images/icon-translate-black-50x50.webp');
}

:root[data-theme="dark"] .info-language,
[data-theme="dark"] .info-language {
    background-image: url('images/icon-translate-white-50x50.webp');
}
.title-and-info-cta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}
.title-and-info-cta .cta-button {
    color: var(--text-inverse);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.title-and-info-cta .cta-enquire {
    background-color: var(--accent-hover);
}
.title-and-info-cta .cta-enquire:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}
.title-and-info-cta .cta-book {
    background-color: #27ae60;
}
.title-and-info-cta .cta-book:hover {
    background-color: #229954;
    transform: translateY(-2px);
}
.single-title-and-info{width:70%;}
.single-title-and-info h1{font-size: 2.5rem; line-height: 2.5rem; color:var(--accent-hover); border-bottom: double 3px; padding-bottom: 1rem; margin-bottom: 1rem; font-family: 'Barlow', sans-serif; font-weight: 700;}


.single-content-container {display: flex; gap: 2rem;margin: 2rem 7%;}
.single-content-container article {width: 70%;}

/* Menú de navegación horizontal en single */
.single-content-nav {
    position: sticky;
    top: 75px;
    background-color: var(--bg-primary);
    padding: 1rem 0;
    z-index: 1000;
}

.single-nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    overflow-x: visible;
}

.single-nav-menu li {
    margin: 0;
    padding: 0;
}

.single-nav-menu .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.single-nav-menu .nav-link:hover {
    background-color: var(--bg-secondary);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.single-nav-menu .nav-link.active {
    background-color: var(--accent-color);
    color: var(--text-inverse);
}


.tour-presentation {
    padding: 0 7%;
    margin-bottom: 1rem;
}
.tour-presentation {
    font-size: 0.875rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding: 2rem;
    background-color: var(--bg-secondary);
    border-radius:20px;
    line-height: 1.5rem;
}
.short {background-color: var(--bg-secondary);padding: 2rem; border-radius: 20px; margin-bottom: 2rem;}
.short h2 {color: var(--accent-hover);font-size: 1.25rem;font-weight: 600; margin-bottom: 1rem;}
.short h3 {color: var(--bg-tertiary);font-size: 1rem;font-weight: 600; margin-bottom: 1rem;}
.short h4 {color: var(--accent-hover);font-size: 1rem;font-weight: 600; margin-bottom: 1rem;}
.short h5 {color: var(--accent-hover);font-size: 0.875rem;font-weight: 600; margin-bottom: 1rem;}
.short h6 {color: var(--accent-hover);font-size: 0.75rem;font-weight: 600; margin-bottom: 1rem;}
.short p {color: var(--text-color);font-size: 0.875rem;font-weight: 400; margin-bottom: 1rem;}
.short ul {color: var(--text-color);font-size: 0.875rem;font-weight: 400;}

.full {background-color: var(--bg-secondary);padding: 2rem; border-radius: 20px; margin-bottom: 2rem;}
.full h2 {color: var(--accent-hover);font-size: 1.25rem;font-weight: 600; margin-bottom: 1rem;}
.full h3 {color: var(--accent-color);font-size: 1rem;font-weight: 600; margin-bottom: 1rem;}
.full h4 {color: var(--accent-hover);font-size: 1rem;font-weight: 600; margin-bottom: 1rem;}
.full h5 {color: var(--accent-hover);font-size: 0.875rem;font-weight: 600; margin-bottom: 1rem;}
.full h6 {color: var(--accent-hover);font-size: 0.75rem;font-weight: 600; margin-bottom: 1rem;}
.full p {color: var(--text-color);font-size: 0.875rem;font-weight: 400; margin-bottom: 1rem;}
.full ul {color: var(--text-color);font-size: 0.875rem;font-weight: 400; margin:1rem 0 1.5rem 2.5rem;}
.full ul li {margin-bottom: 0.5rem;}

.inclusions{display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; padding-bottom: 2rem;}
.inclusions ul {color: var(--text-color);font-size: 0.875rem;font-weight: 400; padding: 2rem; background-color: var(--bg-secondary); border-radius: 20px;}
.inclusions ul li {margin: 0.5rem 0 0.5rem 1rem;}
.inclusions ul li:first-child {color: var(--accent-hover);font-size: 1.25rem;font-weight:600; margin: 0; list-style: none; background: none !important; padding-left: 0;}
.inclusions .include li{background: url('images/icon-include-green-50x50.webp') no-repeat left center; background-size: 16px auto; list-style: none; padding-left: 25px;}
.inclusions .notinclude li{background: url('images/icon-not-include-red-50x50.webp') no-repeat left center; background-size: 16px auto; list-style: none; padding-left: 25px;}

.recommendations{ padding: 2rem; background-color: var(--bg-secondary); border-radius: 20px;}
.recommendations h2 {color: var(--accent-hover);font-size: 1.25rem;font-weight: 600; margin-bottom: 1rem;}

.recommendations ul {color: var(--text-color);font-size: 0.875rem;font-weight: 400;}
.recommendations ul li {margin: 0.5rem 0 0.5rem 1rem;}
.recommendations li{background: url('images/icon-recommendations-blue-67x50.webp') no-repeat left center; background-size: 16px auto; list-style: none; padding-left: 25px;}

.price {padding: 2rem; background-color: var(--bg-secondary); border-radius: 20px; margin-bottom: 2rem;}
.price h2 {color: var(--accent-hover);font-size: 1.25rem;font-weight: 600; margin-bottom: 1rem;}
.price p {color: var(--text-color);font-size: 0.875rem;font-weight: 400; margin-bottom: 1rem;}
.price ul {color: var(--text-color);font-size: 0.875rem;font-weight: 400; margin: 1rem 0 1.5rem 2.5rem;}
.price ul li {margin-bottom: 0.5rem;}
.price table {width: 100%; border-collapse: collapse; margin-top: 1rem;}
.price table thead tr {background-color: var(--accent-hover);}
.price table thead th {padding: 0.75rem; text-align: left; color: var(--text-inverse); font-weight: 600; font-size: 0.875rem; border: 1px solid var(--accent-hover);}
.price table tbody tr {background-color: var(--bg-primary);}
.price table tbody tr:nth-child(even) {background-color: var(--bg-secondary);}
.price table tbody td {padding: 0.75rem; color: var(--text-color); font-size: 0.875rem; border: 1px solid var(--border-color);}
.price table tbody td:first-child {font-weight: 600; color: var(--accent-hover);}

.additionals {padding: 2rem; background-color: var(--bg-secondary); border-radius: 20px; margin-bottom: 2rem;}
.additionals h2 {color: var(--accent-hover);font-size: 1.25rem;font-weight: 600; margin-bottom: 1rem;}
.additionals h3 {color: var(--accent-color);font-size: 1rem;font-weight: 600; margin-bottom: 1rem;}
.additionals h4 {color: var(--accent-hover);font-size: 1rem;font-weight: 600; margin-bottom: 1rem;}
.additionals h5 {color: var(--accent-hover);font-size: 0.875rem;font-weight: 600; margin-bottom: 1rem;}
.additionals h6 {color: var(--accent-hover);font-size: 0.75rem;font-weight: 600; margin-bottom: 1rem;}
.additionals p {color: var(--text-color);font-size: 0.875rem;font-weight: 400; margin-bottom: 1rem;}
.additionals ul {color: var(--text-color);font-size: 0.875rem;font-weight: 400; margin: 1rem 0 1.5rem 2.5rem;}
.additionals ul li {margin-bottom: 0.5rem;}

/* Form Single Page - Always Dark */
.form-container-sticky {
    position: sticky;
    top:100px;
    align-self: flex-start;
}

.form-single-page {
    width: 30%;
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 20px;
}

.titleformtour {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fac304;
    font-size: 1.25rem;
    font-weight: 600;
}

.titleformtour p {
    color: #fac304;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Estilos dark forzados para el formulario del single */
.form-single-page .form-group label {
    color: #fff;
}

.form-single-page .form-group input[type="text"],
.form-single-page .form-group input[type="email"],
.form-single-page .form-group input[type="tel"],
.form-single-page .form-group input[type="date"],
.form-single-page .form-group textarea {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: #fff;
}

.form-single-page .form-group input::placeholder,
.form-single-page .form-group textarea::placeholder {
    color: #999;
}

.form-single-page .form-group input:focus,
.form-single-page .form-group textarea:focus {
    border-color: #fac304;
    box-shadow: 0 0 0 3px rgba(250, 195, 4, 0.1);
}

.form-single-page .submit-btn {
    background: #dd940a;
    color: #fff;
}

.form-single-page .submit-btn:hover {
    background: #fac304;
}

.form-single-page .contact-message {
    background: #2a2a2a;
    border: 1px solid #3a3a3a;
}

.form-single-page .contact-message.success {
    background: #1a4d2e;
    color: #4ade80;
    border: 1px solid #22c55e;
}

.form-single-page .contact-message.error {
    background: #4d1a1a;
    color: #f87171;
    border: 1px solid #ef4444;
}

.left-form {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 2rem;
    align-items: start;
}

.contact-form-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.contact-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
}

.contact-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form {
    background: transparent;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .left-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 0 1rem;
    }
}



.form-group {
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-hover);
    box-shadow: 0 0 0 3px rgba(250, 195, 4, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-hover);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 195, 4, 0.3);
}

@media (max-width: 768px) {
    .single-info-metaboxes {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .info-item {
        padding: 8px 8px 8px 40px;
        background-size: 20px auto;
        background-position: left 8px center;
        min-height: 50px;
    }
    
    .info-label,
    .info-value {
        font-size: 11px;
    }
}

/* Gallery Carousel */
.single-page-carrousel {
    background: var(--bg-secondary);
    padding: 20px;
    overflow: hidden;
}

.gallery-carousel-container {
    position: relative;
}

.gallery-carousel {
    overflow: hidden;
    width: 100%;
}

.gallery-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.gallery-carousel-item {
    position: relative;
    flex: 0 0 calc((100% - 60px) / 4);
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-carousel-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #bbb;
}

@media (max-width: 768px) {
    .gallery-carousel-item {
        flex: 0 0 calc((100% - 15px) / 2);
    }
    
    .gallery-carousel-track {
        gap: 15px;
    }
    
    .gallery-carousel-container {
        padding: 0 20px;
    }
    
    .single-page-carrousel {
        padding: 30px 0;
    }
}

/* Container Page */
.container-page {
    padding: 2rem 7%;
}

.container-page h1 {
    font-size: 0.875rem;
    line-height: 2.5rem;
    color: var(--accent-hover);
    font-weight: 700;  text-align: center;
}

.container-page h2 {
    font-size: 2rem;
    line-height: 2rem;
    color: var(--accent-hover);
    font-weight: 600;
    margin-bottom: 1.25rem; text-align: center;
}

.container-page h3 {
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: var(--accent-hover);
    font-weight: 600;
    margin-bottom: 1rem;
}

.container-page p {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.container-page ul, .container-page ol {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 1rem 0 1.5rem 2.5rem;
}
.container-page ul li, .container-page ol li {
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Responsive Menu Styles */
.responsive-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: block;
}

.responsive-menu-button {
    background: var(--accent-color);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.responsive-menu-button:hover {
    background: var(--accent-color);
    opacity: 0.8;
    transform: scale(1.05);
}

.menu-icon {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.menu-open-icon {
    background-image: url('images/icon-responsive-menu-open.webp');
}

.menu-close-icon {
    width: 24px;
    height: 24px;
    background-image: url('images/icon-responsive-menu-close.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.responsive-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 93%);
    z-index: 9999;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 1s ease-in-out;
}

.responsive-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.responsive-menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2rem;
}

.responsive-menu-widget-area {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.responsive-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.responsive-menu-close:hover {
    background: var(--accent-color);
    opacity: 0.8;
    transform: scale(1.05);
}

.responsive-widget {
    margin-bottom: 2rem;
    color: #fff;
}

.responsive-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.responsive-widget ul li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

.responsive-widget ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    display: block;
    padding: 0.4rem 1rem;
}

.responsive-widget ul li a:hover {
    color: var(--accent-color);
}

@media (min-width: 769px) {
    .responsive-menu {
        display: none;
    }
}

/* Shortcode manual_category_show - Responsive */
.nomadinperu-posts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nomadinperu-post-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* En móvil siempre una columna */
@media (max-width: 768px) {
    .nomadinperu-post-item {
        width: 100% !important;
        margin-bottom: 20px;
    }
    
    .nomadinperu-posts-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .single-title-and-info{display: flex;align-items: center;}
    .single-title-and-info h1{font-size: 1.25rem; line-height: 1.25rem; margin-bottom:0; padding-bottom: 0; border-bottom: none;}
    .single-info-metaboxes{display: none;}
    .title-and-info-cta .cta-button{padding: 0.5rem 0.75rem; font-size: 0.75rem; text-align: center; margin: 0; border-bottom: none;}
    .single-content-container {flex-direction: column; gap: 0; margin: 0; padding: 0 3%;}
    .single-content-container article {width: 100%;}
    .form-single-page {width: 100%;}
    .inclusions{grid-template-columns: 1fr;}
    .inclusions ul {padding: 1rem; border-radius: 10px;}
    .inclusions ul li {margin-bottom: 0.5rem;}
    .inclusions ul li:first-child {font-size: 1rem; font-weight: 600; margin-bottom: 1rem;}
    .inclusions ul li:first-child {background: none !important; padding-left: 0;}
    .inclusions .include li{background: none !important; padding-left: 0;}
    .inclusions .notinclude li{background: none !important; padding-left: 0;}
    .recommendations{padding: 1rem;}
    .recommendations ul {padding: 1rem; border-radius: 10px;}
    .recommendations ul li {margin-bottom: 0.5rem;}
    .recommendations ul li:first-child {font-size: 1rem; font-weight: 600; margin-bottom: 1rem;}
    .title-and-info-container{padding:0.5rem 1rem;}
    
    /* Menú de navegación horizontal responsive */
    .single-content-nav {
        padding: 0.75rem 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--accent-color) transparent;
    }
    
    .single-content-nav::-webkit-scrollbar {
        height: 4px;
    }
    
    .single-content-nav::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .single-content-nav::-webkit-scrollbar-thumb {
        background-color: var(--accent-color);
        border-radius: 2px;
    }
    
    .single-nav-menu {
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: 0 1rem;
        justify-content: flex-start;
        min-width: max-content;
    }
    
    .single-nav-menu li {
        flex-shrink: 0;
    }
    
    .single-nav-menu .nav-link {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
}