@font-face {
    font-family: 'Kind Avenue';
    src: url('fonts/Kind-Avenue-Demo-BF656605ce56c32.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #54585a;
}

.top-bar {
    background-color: #f5f5f5;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-container {
    background-color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(84, 98, 35, 0.15);
    position: relative;
    z-index: 10;
}

.logo {
    width: 100px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #546223;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f68d2e;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #f68d2e;
}

.nav-links a:hover::after {
    width: 100%;
}

.index-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        rgba(246, 141, 46, 0.3) 100%
    ), url('images/background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.index-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.7)
    );
    z-index: 1;
}

.index-hero-content {
    position: relative;
    max-width: 900px;
    z-index: 2;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(246, 141, 46, 0.1);
    animation: fadeIn 1s ease-out;
}

.index-hero h1 {
    font-family: 'Kind Avenue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #546223;
    line-height: 1.2;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.index-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, #f68d2e, transparent);
}

.index-hero p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 1.5rem auto 0;
    color: #54585a;
    font-weight: 300;
    max-width: 800px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #ffffff;
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('images/pattern-nature.png');
    background-size: cover;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-family: 'Kind Avenue', sans-serif;
    font-size: 3.5rem;
    color: #546223;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, #f68d2e, transparent);
}

.hero p {
    max-width: 800px;
    margin: 2rem auto 0;
    line-height: 1.8;
    color: #54585a;
    font-size: 1.1rem;
    position: relative;
    padding: 0 1rem;
}

.activities {
    padding: 4rem 0;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        rgba(209, 224, 215, 0.7) 100%
    );
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.section-content h2,
.map-section h2,
.activities h2,
.plan-visit h2 {
    font-family: 'Kind Avenue', sans-serif;
    font-size: 2.5rem;
    color: #54585a;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

/* Línea decorativa debajo del título */
.section-content h2::after,
.activities h2::after,
.plan-visit h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(to right, transparent, #54585a, transparent);
}

/* Efecto de sombra para profundidad */
.section-content h2,
.activities h2,
.plan-visit h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Ajuste responsive */
@media (max-width: 768px) {
    .section-content h2,
    .activities h2,
    .plan-visit h2 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
}

.activity-cards {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.activity-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: calc(33.333% - 0.67rem);
}

.activity-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.activity-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(84, 98, 35, 0.9), rgba(84, 98, 35, 0.7));
    color: #ffffff;
    margin: 0;
    font-family: 'Kind Avenue', sans-serif;
    font-size: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-card:hover h3 {
    background: linear-gradient(to top, rgba(246, 141, 46, 0.9), rgba(246, 141, 46, 0.7));
    padding-bottom: 2rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.nav-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.map-section {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        rgba(209, 224, 215, 0.7) 100%
    );
    position: relative;
    margin: 2rem 0;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #54585a, transparent);
}

.map-section h2 {
    font-family: 'Kind Avenue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.map-container {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
    transition: all 0.3s ease;
    pointer-events: none;
}

.map-container:hover::before {
    opacity: 0;
}

.map-container iframe {
    display: block;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-visit {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        rgba(209, 224, 215, 0.7) 100%
    );
    position: relative;
    margin-top: 2rem;
}

.plan-visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, transparent, #54585a, transparent);
}

.plan-visit h2 {
    font-family: 'Kind Avenue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.plan-options {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.plan-card {
    flex: 1;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.plan-content {
    padding: 2rem;
}

.plan-content h3 {
    font-family: 'Kind Avenue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.plan-content p {
    color: #54585a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.plan-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #546223;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.plan-button:hover {
    background-color: #f68d2e;
}

.map-section h2::after,
.plan-visit h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(to right, transparent, #546223, transparent);
} 

.nav-icons svg {
    color: #546223;
}

.nav-icons svg:hover {
    color: #f68d2e;
}

.footer {
    background-color: #546223;
    color: #ffffff;
    padding: 3rem 0 0 0;
    margin-top: 1rem;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.footer-section {
    padding: 0 1rem;
}

.footer-section h4 {
    font-family: 'Kind Avenue', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #f68d2e;
}

.footer-section p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f68d2e;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.8rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f68d2e;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    background-color: rgba(0, 0, 0, 0.1);
}

.footer-section i {
    margin-right: 8px;
    color: #f68d2e;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

main {
    padding-top: 0;
}

.instagram-section {
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        rgba(209, 224, 215, 0.7) 100%
    );
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.instagram-intro {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

.instagram-intro h2 {
    font-family: 'Kind Avenue', sans-serif;
    font-size: 2.5rem;
    color: #546223;
    margin-bottom: 1.5rem;
}

.instagram-intro p {
    color: #54585a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.instagram-handle {
    font-size: 1.2rem;
    color: #f68d2e;
    font-weight: bold;
    margin: 1rem 0;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #546223;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: fit-content;
    margin-top: 1rem;
}

.instagram-button:hover {
    background-color: #f68d2e;
}

.instagram-feed {
    flex: 1;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .instagram-section {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1rem;
    }

    .instagram-intro {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-selector select {
    padding: 0.2rem 0.5rem;
    border: 1px solid #54585a;
    border-radius: 4px;
    background-color: transparent;
    color: #54585a;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
}

.language-selector select:hover {
    border-color: #546223;
}

.language-selector select option {
    background-color: white;
    color: #54585a;
}

.activity-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.activity-details {
    padding: 4rem 2rem;
    width: 90%;
    margin: 0 auto;
}

.activity-card-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.activity-detail-card {
    display: flex;
    gap: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.activity-detail-card[style*="display: flex"] {
    display: flex !important;
}

.category-section[style*="display: block"] {
    display: block !important;
}

.activity-card-container[style*="display: block"] {
    display: flex !important;
}

.activity-image {
    flex: 1;
    height: 400px;
    width: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.activity-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.activity-info h2 {
    color: #546223;
    font-family: 'Kind Avenue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.activity-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #54585a;
}

.spec-item i {
    color: #f68d2e;
    width: 20px;
}

.activity-description {
    color: #54585a;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.activity-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #546223;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.activity-button:hover {
    background-color: #f68d2e;
}

@media (max-width: 768px) {
    .activity-image {
        min-height: 300px;
        max-height: 300px;
        width: 100%;
    }

    .activity-detail-card {
        flex-direction: column;
        min-height: auto;
    }

    .activity-info {
        padding: 1.5rem;
    }

    .activity-button {
        align-self: center;
    }
}

.municipality-section {
    margin-bottom: 5rem;
}

.municipality-title {
    font-family: 'Kind Avenue', sans-serif;
    font-size: 3rem;
    color: #546223;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.municipality-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, #f68d2e, transparent);
}

.activity-info h3 {
    color: #546223;
    font-family: 'Kind Avenue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.activity-card-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .municipality-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

.filter-section {
    width: 90%;
    margin: 0 auto 2rem auto;
    display: flex;
    gap: 2rem;
    padding: 1rem 2rem;
    background-color: #ffffff;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-select,
.municipality-select {
    padding: 0.4rem 0.8rem;
    border: 1px solid #546223;
    border-radius: 4px;
    background-color: white;
    color: #546223;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    min-width: 180px;
    outline: none;
    transition: all 0.3s ease;
}

.category-title {
    font-family: 'Kind Avenue', sans-serif;
    font-size: 2.5rem;
    color: #546223;
    text-align: center;
    margin: 3rem 0 2rem;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, #f68d2e, transparent);
}

.category-section.hidden {
    display: none;
}

@media (max-width: 768px) {
    .filter-section {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .municipality-select {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0;
    }
}

html {
    scroll-behavior: smooth;
}

.nav-icons a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

@media (max-width: 768px) {
    .activity-cards {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .activity-card {
        width: 100%;
    }

    .activities h2 {
        font-size: 2.5rem;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: modalFade 0.3s ease-in;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #546223;
}

.close:hover {
    color: #f68d2e;
}

@keyframes modalFade {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
}

.ficha-tecnica {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ficha-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ficha-header h1 {
    font-family: 'Kind Avenue', sans-serif;
    color: #546223;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ficha-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 2rem;
}

.ficha-images {
    height: 100%;
}

.ficha-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ficha-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-section {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
}

.detail-section h2 {
    color: #546223;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .ficha-content {
        grid-template-columns: 1fr;
    }
    
    .ficha-images {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .index-hero {
        height: 70vh;
        background-attachment: scroll;
    }

    .index-hero h1 {
        font-size: 4rem;
    }

    .index-hero p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .index-hero-content {
        padding: 1.5rem;
        margin: 2rem auto;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .index-hero h1 {
        font-size: 1.5rem;
    }

    .index-hero p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Estilos para la sección de restaurantes */
.restaurants-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.restaurants-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #546223;
    font-family: 'Kind Avenue', sans-serif;
}

.restaurants-grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.restaurant-card {
    flex: 1;
    min-width: 200px;
    max-width: calc(20% - 1.2rem);
    padding: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.restaurant-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.restaurant-card:hover .restaurant-image img {
    transform: scale(1.05);
}

.restaurant-card h3 {
    color: #f68d2e;
    margin: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.restaurant-info {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
    justify-content: flex-start;
}

.restaurant-info p, 
.restaurant-info a {
    font-size: 0.9rem;
    color: #54585a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.restaurant-info a:hover {
    color: #f68d2e;
}

.restaurant-info i {
    color: #546223;
    width: 20px;
}

/* Media queries para responsividad */
@media (max-width: 1200px) {
    .restaurant-card {
        max-width: calc(25% - 1.2rem);
    }
}

@media (max-width: 992px) {
    .restaurant-card {
        max-width: calc(33.333% - 1.2rem);
    }
}

@media (max-width: 768px) {
    .restaurant-card {
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .restaurant-card {
        max-width: 100%;
    }
}

/* Estilos para la sección de hoteles (reutilizando la estructura de restaurantes) */
.hotels-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hotels-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    color: #546223;
    font-family: 'Kind Avenue', sans-serif;
}

.hotels-grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hotel-card {
    flex: 1;
    min-width: 200px;
    max-width: calc(20% - 1.2rem);
    padding: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.hotel-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-card h3 {
    color: #f68d2e;
    margin: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.hotel-info {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hotel-info p, 
.hotel-info a {
    font-size: 0.9rem;
    color: #54585a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-info a:hover {
    color: #f68d2e;
}

.hotel-info i {
    color: #546223;
    width: 20px;
}

/* Media queries (se mantienen igual que los de restaurantes) */
@media (max-width: 1200px) {
    .hotel-card {
        max-width: calc(25% - 1.2rem);
    }
}

@media (max-width: 992px) {
    .hotel-card {
        max-width: calc(33.333% - 1.2rem);
    }
}

@media (max-width: 768px) {
    .hotel-card {
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 480px) {
    .hotel-card {
        max-width: 100%;
    }
}

.fullscreen-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #546223;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.fullscreen-button:hover {
    background: #546223;
    color: white;
}

.fullscreen-button i {
    font-size: 1rem;
}

/* Estilos para la paginación */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 4rem 0;
    gap: 1rem;
}

.page-button {
    padding: 0.5rem 1rem;
    background-color: #546223;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-button:hover {
    background-color: #3d4819;
}

.page-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    border: 1px solid #546223;
    color: #546223;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover {
    background-color: #f5f7f0;
}

.page-number.active {
    background-color: #f68d2e;
    color: white;
    border-color: #f68d2e;
}

.filtered-out {
    display: none !important;
}

.page-ellipsis {
    padding: 0.5rem;
    color: #546223;
    font-weight: bold;
}

.category-section {
    margin-bottom: 2rem;
    width: 100%;
}

.category-section[data-category="monasterios"]:not([style*="display: none"]),
.category-section[data-category="otros"]:not([style*="display: none"]) {
    display: block;
}

.category-section[data-category="monasterios"] .activity-card-container,
.category-section[data-category="otros"] .activity-card-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.category-section[data-category="monasterios"] .activity-detail-card,
.category-section[data-category="otros"] .activity-detail-card {
    display: flex;
    gap: 2rem;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.activity-detail-card .activity-image {
    flex: 1;
    height: 400px;
    width: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-detail-card .activity-info {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Aseguramos que los elementos sean visibles cuando deben estarlo */
.category-section[style*="display: block"] {
    display: block !important;
}

.activity-card-container[style*="display: flex"] {
    display: flex !important;
    flex-direction: column !important;
}

.activity-detail-card[style*="display: flex"] {
    display: flex !important;
}

/* Ocultamos elementos cuando es necesario */
.category-section[style*="display: none"],
.activity-card-container[style*="display: none"],
.activity-detail-card[style*="display: none"] {
    display: none !important;
}

@media (max-width: 768px) {
    .activity-detail-card {
        flex-direction: column;
    }

    .activity-detail-card .activity-image {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 0.3rem 1rem;
        justify-content: center;
        gap: 0.5rem;
    }

    .top-bar-right {
        gap: 0.5rem;
    }

    .language-selector select {
        font-size: 0.8rem;
        padding: 0.15rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .top-bar {
        flex-direction: column;
        padding: 0.3rem 0.5rem;
        text-align: center;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
        padding: 0.2rem 0;
    }
}
