/*
Theme Name: One Click Theme
Description: Tema minimalista y funcional para WordPress
Version: 1.0
Author: One Click
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Light Theme Colors */
    --primary-color: #0ebbc2;
    --primary-dark: #0a9ca3;
    --primary-light: #4dd1d8;
    --secondary-color: #2c3e50;
    --secondary-light: #34495e;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --bg-lighter: #e9ecef;
    --border-color: #ddd;
    --border-light: #dee2e6;
    --shadow-color: rgba(0,0,0,0.1);
    --shadow-primary: rgba(14, 187, 194, 0.3);
    --success-bg: #d4edda;
    --success-text: #155724;
    --success-border: #c3e6cb;
    --error-bg: #f8d7da;
    --error-text: #721c24;
    --error-border: #f5c6cb;
}

[data-theme="dark"] {
    /* Dark Theme Colors */
    --primary-color: #0ebbc2;
    --primary-dark: #4dd1d8;
    --primary-light: #0a9ca3;
    --secondary-color: #e9ecef;
    --secondary-light: #f8f9fa;
    --text-color: #e9ecef;
    --text-light: #adb5bd;
    --bg-color: #1a1a1a;
    --bg-light: #2d2d2d;
    --bg-lighter: #404040;
    --border-color: #404040;
    --border-light: #4a4a4a;
    --shadow-color: rgba(0,0,0,0.3);
    --shadow-primary: rgba(14, 187, 194, 0.2);
    --success-bg: #1e4d2b;
    --success-text: #a3d9a4;
    --success-border: #2d5a3d;
    --error-bg: #4d1e1e;
    --error-text: #f5a3a3;
    --error-border: #5a2d2d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition:all 0.5s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.top-bar{ background-color: #2c3e50; }
.top-bar-content{display: flex; margin: 0 7%; justify-content: space-between; }
.top-data{display: flex; gap: 2rem; color: #fff; font-size:0.8rem; align-items: center;}
.top-language a{background: url('images/bg-flag-es.webp') no-repeat left center; background-size: 16px auto; padding-left: 25px; color: #fff; font-size: 14px; text-decoration: none;}


.container-logo-menu{display: flex; margin: 0 7%; justify-content: space-between; align-items: center;}
.logo-area{    width: 15%; line-height: 0; padding: 0.5rem 0;}
.logo-area img{width: 100%; height: auto; }

nav ul{display: flex; list-style: none;}
nav ul li{display: flex; gap: 2rem; list-style: none;font-size:0.9rem; text-transform: uppercase;}
nav ul li a{color: var(--secondary-color); text-align: center; text-decoration: none;  padding: 0.5rem 0.6rem; display: block;}
nav ul li a:hover{background-color: var(--primary-color); color: var(--bg-color); text-decoration: none;}

main {
    min-height: 60vh;
}


footer {
    background-color: #000;
    color: #fff;
    margin-top: 3rem;
    transition: background-color 0.3s ease;
}

.footer-widgets {
    padding: 3rem 0;
    background-color: #171717;
    border-top: 1px solid #404040;
}

.footer-container {
    margin: 0 7%;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 2rem;
}

.footer-col-one,
.footer-col-two,
.footer-col-three,
.footer-col-four {
    color: #fff;
}

.footer-col-one img{max-width: 200px; height: auto;}

.footer-col-one .widget-title,
.footer-col-two .widget-title,
.footer-col-three .widget-title,
.footer-col-four .widget-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}
.footer-columns .widget_text a{color: #fff; text-decoration: none;}
.footer-columns .widget_nav_menu ul {list-style: none; padding: 0; margin: 0;}
.footer-columns .widget_nav_menu ul li a{font-size: 0.9rem; color: #fff; text-decoration: none; padding: 0.5rem 0; display: block;}
.footer-columns .widget_nav_menu ul li a:hover{color: var(--primary-color);}

.footer-bottom {
    background-color: #000;
    padding: 1.5rem 0;
    border-top: 1px solid #404040;
}

.footer-bottom .copyright{font-size: 0.75rem; color: var(--secondary-light);}
.footer-bottom .developed{font-size: 0.7rem; color: var(--border-light);}
.footer-bottom .developed a{color: var(--border-light);}

@media (max-width: 768px) {
    .footer-container {
        margin: 0 15px;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, auto);
        gap: 1.5rem;
        justify-items: center;
        text-align: center;
    }
    
    .footer-widgets {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: auto;
        gap: 1rem;
        justify-items: center;
        text-align: center;
    }
}






.main-title-tour {
    padding: 5px 7%;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 100%);
    margin-bottom: 1rem;
    transition: background 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
}

.main-title-tour h1 {
    font-size:1.6rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 700;
}

.tour-container {
    display: flex;
    gap: 2rem;
    margin: 0 7%;
}

.tour-content {
    width: 60%;
    flex: 1;
}

.form-tour {
    width:30%;
}

@media (max-width: 768px) {
    .tour-container {
        flex-direction: column-reverse;
        gap: 1rem;
    }
    
    .tour-content,
    .form-tour {
        width: 100%;
        position: static;
    }
}




@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header h1 {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}


.titleformtour {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}



/* Breadcrumb Styles */
.breadcrumb-container {
    padding: 10px 7%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: var(--text-light);
}

.breadcrumb-current {
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 8px 15px;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .breadcrumb-separator {
        margin: 0 6px;
    }
}

/* Post Content Styles */
.post-content {
    line-height: 1.7;
    color: var(--text-color);
    font-size: 1rem;
}

.post-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    line-height: 1.3;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1.5rem 0 0.8rem 0;
    line-height: 1.4;
}

.post-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1.3rem 0 0.6rem 0;
    line-height: 1.4;
}

.post-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1.1rem 0 0.5rem 0;
    line-height: 1.4;
}

.post-content h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1rem 0 0.4rem 0;
    line-height: 1.4;
}

.post-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: var(--text-color);
}

.post-content p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.post-content p a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
    text-decoration: none;
}

.post-content ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
}

.post-content ul li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: var(--text-color);
}

.post-content ul li::marker {
    color: var(--primary-color);
}

.post-content ol {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
}

.post-content ol li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: var(--text-color);
}

.post-content ol li::marker {
    color: var(--primary-color);
    font-weight: 600;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.post-content table th {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
}

.post-content table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.post-content table tbody tr:hover {
    background-color: var(--bg-light);
}

.post-content table tbody tr:last-child td {
    border-bottom: none;
}

.post-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

.post-content blockquote p {
    margin-bottom: 0;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.post-content code {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.post-content pre {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
    border: 1px solid var(--border-light);
}

.post-content pre code {
    background: none;
    padding: 0;
    color: var(--text-color);
}

.post-content strong {
    font-weight: 600;
    color: var(--secondary-color);
}

.post-content em {
    font-style: italic;
    color: var(--text-light);
}

.post-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 2rem 0;
}

/* Responsive adjustments for post content */
@media (max-width: 768px) {
    .post-content h2 {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.8rem 0;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
        margin: 1.3rem 0 0.6rem 0;
    }
    
    .post-content h4 {
        font-size: 1.2rem;
        margin: 1.2rem 0 0.5rem 0;
    }
    
    .post-content h5 {
        font-size: 1.1rem;
        margin: 1.1rem 0 0.4rem 0;
    }
    
    .post-content h6 {
        font-size: 1rem;
        margin: 1rem 0 0.3rem 0;
    }
    
    .post-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .post-content ul,
    .post-content ol {
        padding-left: 1.5rem;
    }
    
    .post-content table {
        font-size: 0.85rem;
    }
    
    .post-content table th,
    .post-content table td {
        padding: 8px 10px;
    }
    
    .post-content blockquote {
        padding: 0.8rem 1rem;
        margin: 1rem 0;
    }
}

/* Single Post Layout */
.single-post-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    margin: 0 7%;
}

.single-post-content {
    min-width: 0; /* Prevents grid blowout */
}
/* Table of Contents */
.table-of-contents {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px var(--shadow-color);
    position: sticky;
    top:70px;
}

.table-of-contents h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.toc-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-nav li {
    margin-bottom: 0.15rem;
}

.toc-nav a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-nav a:hover {
    background-color: var(--bg-lighter);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(2px);
}

.toc-nav a.active {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-left-color: var(--primary-dark);
    font-weight: 500;
}

.toc-nav a.active:hover {
    background-color: var(--primary-dark);
    transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .single-post-container {
        grid-template-columns: 1fr 250px;
        gap: 1.5rem;
        margin: 0 5%;
    }
    
    .table-of-contents {
        padding: 1rem;
    }
    
    .table-of-contents h3 {
        font-size: 1.1rem;
    }
    
    .toc-nav a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
}

@media (max-width: 768px) {
    .single-post-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 15px;
    }
    
    .single-post-sidebar {
        position: static;
        order: -1;
    }
    
    .table-of-contents {
        position: static;
        margin-bottom: 1rem;
    }
    
    .table-of-contents h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .toc-nav {
        display: block;
    }
    
    .toc-nav li {
        margin-bottom: 0.4rem;
    }
    
    .toc-nav a {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
        border-left: 3px solid transparent;
        border-bottom: none;
    }
    
    .toc-nav a:hover {
        transform: translateX(2px);
        border-left-color: var(--primary-color);
        border-bottom: none;
    }
    
    .toc-nav a.active {
        border-left-color: var(--primary-dark);
        border-bottom: none;
    }
    
    /* Estilos para el select en móviles */
    .toc-select {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.9rem;
        border: 2px solid var(--border-color);
        border-radius: 6px;
        background-color: var(--bg-color);
        color: var(--text-color);
        cursor: pointer;
        transition: border-color 0.3s ease;
    }
    
    .toc-select:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px var(--shadow-primary);
    }
    
    .toc-select option {
        padding: 0.5rem;
        line-height: 1.4;
        white-space: normal;
        word-wrap: break-word;
        min-height: 2.5rem;
    }
}

/* Category Page Styles */
.category-page{margin: 0 7%;}
.category-header {text-align: center; margin-bottom: 1rem;}

.category-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.category-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow-color);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px var(--shadow-color);
}

.post-card .post-thumbnail {
    overflow: hidden;
}

.post-card .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-card .post-content {
    padding: 1.5rem;
}

.post-card .post-title {
    margin-bottom: 1rem;
}

.post-card .post-title a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.post-card .post-title a:hover {
    color: var(--primary-color);
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-date {
    background-color: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.post-categories a {
    color: var(--primary-color);
    text-decoration: none;
    background-color: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.post-categories a:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.post-excerpt {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background-color: var(--bg-light);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.no-posts {
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.no-posts h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.no-posts p {
    color: var(--text-light);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .category-title {
        font-size: 2rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .post-card .post-content {
        padding: 1rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}


.main-category-post{margin: 0 7%;}
.general-post{margin: 0 7%;}
.general-post h1{font-size:1.8rem;font-weight:700;line-height:1.2;color: var(--primary-color); text-align: center; border-bottom: solid 1px; padding-bottom: 1rem; margin-bottom: 1rem;}
.general-post h2{font-size:1.5rem;font-weight:700;line-height:1.2;color: var(--primary-color); padding-bottom: 1rem; margin-bottom: 1rem;}
.general-post p{font-size:1rem;line-height:1.5rem; margin-bottom: 1rem;}
.general-post ul{list-style: disc; padding-left: 1rem; margin-bottom: 1rem;}
.general-post ul li{font-size:1rem;line-height:1.5rem}


/* Home Hero Carousel (mínimo y funcional) */
.hero-carousel{position:relative}
.carousel-container{position:relative;overflow:hidden;height:85vh;min-height:600px}
.carousel-slides{position:relative;height:100%}
.carousel-slides .slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    transition:opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index:1;
}
.carousel-slides .slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}
.slide-image-desktop{display:block;width:100%;height:100%;object-fit:cover}
.slide-image-mobile{display:none;width:100%;height:100%;object-fit:cover}
.slide-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.35))}
.slide-content{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;align-items:flex-start;gap:.75rem;color:#fff;padding:0 7%}
.slide-minititle{font-size:.9rem;letter-spacing:.1em;text-transform:uppercase;opacity:.9}
.slide-title{font-size:2.2rem;font-weight:700;line-height:1.2}
.slide-description{max-width:760px;font-size:1rem;opacity:.95}
.slide-button a{display:inline-block;background:var(--primary-color);color:var(--bg-color);padding:.6rem 1.1rem;border-radius:4px;text-decoration:none;font-weight:600}
.slide-button a:hover{background:var(--primary-dark)}
.carousel-prev,.carousel-next{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.4);color:#fff;border:0;width:40px;height:40px;border-radius:20px;cursor:pointer;z-index:10;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:bold;opacity:0;visibility:hidden;transition:opacity 0.3s ease, visibility 0.3s ease}
.carousel-prev{left:10px}
.carousel-next{right:10px}
.carousel-prev:hover,.carousel-next:hover{background:rgba(0,0,0,.6)}
.hero-carousel:hover .carousel-prev,.hero-carousel:hover .carousel-next{opacity:1;visibility:visible}
.carousel-thumbnails{display:flex;gap:8px;justify-content:center;padding:10px;position:absolute;bottom:10px;left:50%;transform:translateX(-50%);z-index:10;background:rgba(0,0,0,.3);border-radius:20px}
.carousel-thumbnails .thumbnail{width:60px;height:40px;overflow:hidden;border:2px solid transparent;cursor:pointer}
.carousel-thumbnails .thumbnail img{width:100%;height:100%;object-fit:cover}
.carousel-thumbnails .thumbnail.active{border-color:var(--primary-color)}
@media (max-width:768px){
    .carousel-container{height:70vh;min-height:400px}
    .slide-image-desktop{display:none}
    .slide-image-mobile{display:block}
    .slide-title{font-size:1.6rem}
}


.front-page-content{padding: 2rem 7%;}
.front-page-content h1{font-size:1.2rem;font-weight:700;line-height:1.2; color: var(--secondary-color); text-align: center;}
.front-page-content h2{font-size:1.8rem;font-weight:700;line-height:1.2;color: var(--primary-color); text-align: center; border-bottom: solid 1px; padding-bottom: 1rem; margin-bottom: 1rem;}
.front-page-content p{font-size:1rem;line-height:1.5rem}

.home-one {padding: 3rem 7%; background-color: var(--border-light);}
.home-one h3{font-size:1.8rem;font-weight:700;line-height:1.2;color: var(--primary-color); text-align: center; border-bottom: solid 1px; padding-bottom: 1rem; margin-bottom: 1rem;}
.home-two {padding: 3rem 7%;}
.home-two h3{font-size:1.8rem;font-weight:700;line-height:1.2;color: var(--primary-color); text-align: center; border-bottom: solid 1px; padding-bottom: 1rem; margin-bottom: 1rem;}
.home-three {padding: 3rem 7%; background-color: var(--border-light);}
.home-three h3{font-size:1.8rem;font-weight:700;line-height:1.2;color: var(--primary-color); text-align: center; border-bottom: solid 1px; padding-bottom: 1rem; margin-bottom: 1rem;}
.home-four {padding: 3rem 7%;}
.home-four h3{font-size:1.8rem;font-weight:700;line-height:1.2;color: var(--primary-color); text-align: center; border-bottom: solid 1px; padding-bottom: 1rem; margin-bottom: 1rem;}
.home-five {padding: 3rem 7%; background-color: var(--border-light);}
.home-five h3{font-size:1.8rem;font-weight:700;line-height:1.2;color: var(--primary-color); text-align: center; border-bottom: solid 1px; padding-bottom: 1rem; margin-bottom: 1rem;}
.home-six {padding: 3rem 7%;}
.home-six h3{font-size:1.8rem;font-weight:700;line-height:1.2;color: var(--primary-color); text-align: center; border-bottom: solid 1px; padding-bottom: 1rem; margin-bottom: 1rem;}
.home-seven {padding: 3rem 7%; background-color: var(--border-light);}
.home-seven h3{font-size:1.8rem;font-weight:700;line-height:1.2;color: var(--primary-color); text-align: center; border-bottom: solid 1px; padding-bottom: 1rem; margin-bottom: 1rem;}

/* Logo Light Dark Styles */
.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

html[data-theme="dark"] .logo-light,
body[data-theme="dark"] .logo-light {
    display: none;
}

html[data-theme="dark"] .logo-dark,
body[data-theme="dark"] .logo-dark {
    display: block;
}

/* Theme Toggle Styles */
.theme-toggle {
    display: flex;
    align-items: center;
}

.theme-toggle-button {
    background: #fff;
    border: none;
    border-radius: 20px;
    padding:5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    color: #2c3e50;
    font-size: 14px;
}

.theme-toggle-button:hover {
    background-color: #ffd700;
    color: #2c3e50;
}

.theme-icon {
    transition: opacity 0.3s ease;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.theme-icon.light-icon {
    opacity: 0;
    position: absolute;
    background-image: url('images/icon-toogle-light.webp');
}

.theme-icon.dark-icon {
    opacity: 1;
    background-image: url('images/icon-toogle-dark.webp');
}

[data-theme="dark"] .theme-toggle-button {
    background: #000;
    border: none;
    color: #fff;
}

[data-theme="dark"] .theme-toggle-button:hover {
    background-color: #ffd700;
    color: #2c3e50;
}

[data-theme="dark"] .theme-icon.light-icon {
    opacity: 1;
    position: relative;
}

[data-theme="dark"] .theme-icon.dark-icon {
    opacity: 0;
    position: absolute;
}

/* Responsive Menu Styles */
.responsive-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.responsive-menu-button {
    background: var(--primary-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(--primary-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(--primary-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(--primary-color);
    opacity: 0.8;
    transform: scale(1.05);
}


.responsive-widget {
    margin-bottom: 2rem;
    color: #fff;
}
.responsive-widget img{width: 50%; height: auto;}
.responsive-widget ul{list-style: none; padding: 0; margin: 0; text-align: left;}
.responsive-widget ul li{ border-bottom: solid 1px var(--bg-lighter);}
.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(--primary-color);}

@media screen and (max-width: 768px) {
    .top-data, header nav, .slide-description, .form-single-tour{display: none;}
    .logo-area{width: 35%;}
    header{position: sticky; top: 0; left: 0; width: 100%; z-index: 100; background-color: var(--bg-color);}
    .theme-toggle{display: flex;}
    .responsive-menu{display: block;}
    .container-h1-duration-places{width:70%;}
    .main-title-tour{padding:10px;top:50px; align-items: center;}
    .main-title-tour h1{font-size:0.7rem;}
    .content-duration-places{flex-direction: column; gap: 0;}
    .tour-duration-display{padding-left: 30px; font-size: 0.7rem;}
    .tour-places-display{display: none;}
}

/* Fixed CTA Widget Area */
.fixed-cta-widget-area {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 1000;
}
@media (max-width: 768px) {
    .fixed-cta-widget-area {
        right: 80px;
        bottom: 20px;
    }
}