/* =================================================================
   TRAVEL EXPERIENCES LANDING PAGE - SICILY WELCOME
   Stili dedicati per la pagina delle esperienze di viaggio
   ================================================================= */

/* CSS Variables */
:root {
    /* Travel Experiences Colors */
    --primary: #e85d04;
    --secondary: #dc2f02;
    --accent: #f48c06;
    --dark: #370617;
    --light: #fefae0;
    --white: #ffffff;
    --nature: #2d6a4f;
    --wellness: #8338ec;
    --food: #c1121f;
    --culture: #023047;
    --shadow: rgba(0, 0, 0, 0.1);

    /* Sicily Welcome Theme Colors - for consistency */
    --theme-blue: #003975;
    --theme-pink: #e90c8b;
    --theme-gray: #8794a2;
    --theme-light-gray: #ccc;
    --theme-section-gray: #f6f6f6; /* Sicily Welcome section background */

    /* Additional utility colors */
    --text-gray: #555555;
    --text-light: #666666;
    --border-light: #f0f0f0;
}

/* =================================================================
   POPPINS FONT WEIGHT CLASSES - SICILY WELCOME THEME INTEGRATION
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Bold for main titles */
}

.hero-lead {
    font-family: 'Poppins', sans-serif;
    font-weight: 400; /* Regular for descriptions */
}

.experience-filter-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; /* Semi-bold for buttons */
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Bold for section titles */
}

.section-intro {
    font-family: 'Poppins', sans-serif;
    font-weight: 400; /* Regular for intro text */
}

.experience-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; /* Semi-bold for card titles */
}

.card-body p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400; /* Regular for card descriptions */
}

.card-cta {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; /* Semi-bold for CTA buttons */
}

/* Experience CTA Box */
.experience-cta-box h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Bold for main CTA heading */
}

.experience-cta-box p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400; /* Regular for CTA description */
}

/* =================================================================
   SICILY WELCOME THEME INTEGRATION
   ================================================================= */

/* Links styling to match theme */
a:not(.card-cta):not(.experience-filter-btn) {
    color: var(--theme-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease-in-out;
}

a:not(.card-cta):not(.experience-filter-btn):hover {
    color: var(--theme-pink);
    text-decoration: none;
}

/* Selection color to match theme */
::selection {
    color: var(--white);
    background-color: var(--theme-pink);
}

::-moz-selection {
    color: var(--white);
    background-color: var(--theme-pink);
}

/* Alternative CTA style using theme colors */
.card-cta.theme-style {
    background: var(--theme-pink);
    border-color: var(--theme-pink);
    color: var(--white);
}

.card-cta.theme-style:hover {
    background: var(--theme-blue);
    border-color: var(--theme-blue);
    color: var(--white);
}

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white); /* Changed to match Sicily Welcome theme */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main content styling to match Sicily Welcome theme */
.travel-experiences-page {
    background: var(--white);
    min-height: 500px; /* Match theme #content min-height */
    float: left;
    width: 100%;
}

/* =================================================================
   HERO SECTION
   ================================================================= */
.hero-experiences {
    background: linear-gradient(135deg, #023047 0%, #126782 50%, #219ebc 100%);
    color: var(--white);
    padding: 100px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-experiences::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-lead {
    font-size: 1.3em;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* =================================================================
   QUICK FILTER NAVIGATION
   ================================================================= */
#Experience-Filter-Bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.experience-filter-btn {
    background: var(--white);
    color: var(--dark);
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.experience-filter-btn .icon {
    font-size: 2em;
}

.experience-filter-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.experience-filter-btn.nature:hover {
    background: var(--nature);
    color: var(--white);
}

.experience-filter-btn.wellness:hover {
    background: var(--wellness);
    color: var(--white);
}

.experience-filter-btn.food:hover {
    background: var(--food);
    color: var(--white);
}

.experience-filter-btn.culture:hover {
    background: var(--culture);
    color: var(--white);
}

.experience-filter-btn.shows:hover {
    background: var(--secondary);
    color: var(--white);
}

.experience-filter-btn.other:hover {
    background: var(--accent);
    color: var(--white);
}

/* =================================================================
   SECTION STYLING
   ================================================================= */
.experience-section {
    padding: 90px 20px;
    position: relative;
    overflow: hidden; /* Match Sicily Welcome theme sections */
}

.experience-section:nth-child(even) {
    background: var(--theme-section-gray); /* Sicily Welcome theme alternate sections */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
    display: inline-block;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: currentColor;
    border-radius: 2px;
}

.section-intro {
    font-size: 1.2em;
    color: #555;
    max-width: 850px;
    margin: 25px auto 0;
    line-height: 1.8;
}

/* =================================================================
   GRID SYSTEMS
   ================================================================= */
.experience-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.experience-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* =================================================================
   EXPERIENCE CARDS
   ================================================================= */
.experience-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 25px var(--shadow);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.experience-card.nature:hover {
    border-color: var(--nature);
}

.experience-card.wellness:hover {
    border-color: var(--wellness);
}

.experience-card.food:hover {
    border-color: var(--food);
}

.experience-card.culture:hover {
    border-color: var(--culture);
}

.experience-card.shows:hover {
    border-color: var(--secondary);
}

.experience-card.other:hover {
    border-color: var(--accent);
}

.card-header {
    padding: 30px 30px 20px;
}

.card-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
}

.experience-card h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--dark);
}

.card-body {
    padding: 0 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* =================================================================
   ACTIVITY LISTS
   ================================================================= */
.activity-list {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.activity-list li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.activity-list li:last-child {
    border-bottom: none;
}

.activity-list li::before {
    content: '✦';
    color: var(--primary);
    font-size: 1.1em;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =================================================================
   CALL TO ACTION BUTTONS
   ================================================================= */
.card-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid var(--primary);
}

.card-cta:hover {
    background: transparent;
    transform: scale(1.05);
}

/* Theme specific CTA colors */
.nature .card-cta {
    background: var(--nature);
    border-color: var(--nature);
}
.nature .card-cta:hover {
    color: var(--nature);
}

.wellness .card-cta {
    background: var(--wellness);
    border-color: var(--wellness);
}
.wellness .card-cta:hover {
    color: var(--wellness);
}

.food .card-cta {
    background: var(--food);
    border-color: var(--food);
}
.food .card-cta:hover {
    color: var(--food);
}

.culture .card-cta {
    background: var(--culture);
    border-color: var(--culture);
}
.culture .card-cta:hover {
    color: var(--culture);
}

.shows .card-cta {
    background: var(--secondary);
    border-color: var(--secondary);
}
.shows .card-cta:hover {
    color: var(--secondary);
}

.other .card-cta {
    background: var(--accent);
    border-color: var(--accent);
}
.other .card-cta:hover {
    color: var(--accent);
}

/* =================================================================
   HIGHLIGHT BOXES
   ================================================================= */
.highlight-box {
    background: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.highlight-box h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* =================================================================
   SEASONAL EXPERIENCES
   ================================================================= */
.seasonal-experiences {
    background: linear-gradient(135deg, #023047 0%, #126782 100%);
    color: var(--white);
    padding: 70px 20px;
    margin: 60px 0;
    border-radius: 20px;
    text-align: center;
}

.seasonal-experiences h3 {
    font-size: 2.2em;
    margin-bottom: 30px;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.seasonal-card {
    background: rgba(255,255,255,0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.seasonal-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.seasonal-card .season-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.seasonal-card h4 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

/* =================================================================
   CONTACT CTA SECTION
   ================================================================= */
.experience-cta-box {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 70px 40px;
    border-radius: 25px;
    text-align: center;
    margin: 80px auto;
    max-width: 1000px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.experience-cta-box h3 {
    font-size: 2.3em;
    margin-bottom: 25px;
}

.experience-cta-box p {
    font-size: 1.2em;
    margin-bottom: 35px;
    opacity: 0.95;
}

.experience-cta-box .card-cta {
    background: var(--white);
    color: var(--primary);
    font-size: 1.15em;
    padding: 16px 40px;
}

.experience-cta-box .card-cta:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--white);
}

/* =================================================================
   FOOTER
   ================================================================= */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
}

footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--white);
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2em;
    }

    .hero-lead {
        font-size: 1.1em;
    }

    #Experience-Filter-Bar {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .experience-filter-btn {
        padding: 15px 20px;
    }

    .experience-grid-3,
    .experience-grid-4 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    h2 {
        font-size: 1.8em;
    }

    .section-icon {
        font-size: 2.5em;
    }

    .experience-section {
        padding: 60px 20px;
    }

    .experience-cta-box {
        padding: 50px 30px;
        margin: 60px auto;
    }

    .experience-cta-box h3 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .hero-experiences {
        padding: 80px 15px 50px;
    }

    .hero-title {
        font-size: 1.7em;
    }

    .card-header,
    .card-body {
        padding: 20px;
    }

    .experience-card h3 {
        font-size: 1.4em;
    }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */
.text-center {
    text-align: center;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.experience-filter-btn:focus,
.card-cta:focus {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* =================================================================
   SICILY WELCOME THEME COMPATIBILITY NOTES
   ================================================================= */
/*
 * This CSS file is fully integrated with the Sicily Welcome theme:
 *
 * FONT FAMILY:
 * - Uses 'Poppins' as the primary font family to match the main theme
 * - Google Fonts Poppins is loaded in travel_experiences_landing.php
 * - Font weights: 300, 400, 500, 600, 700 available
 *
 * COLOR SCHEME:
 * - Maintains Travel Experiences brand colors for category differentiation
 * - Integrates Sicily Welcome theme colors (#003975, #e90c8b) for links and accents
 * - Selection colors match the main theme (pink highlight)
 *
 * RESPONSIVE DESIGN:
 * - Follows the same breakpoint strategy as the main theme
 * - Mobile-first approach with progressive enhancement
 *
 * ACCESSIBILITY:
 * - Focus states compatible with theme accessibility standards
 * - Color contrast ratios maintained across all combinations
 *
 * PERFORMANCE:
 * - CSS is optimized for minimal impact on load times
 * - Uses CSS custom properties for easy theme maintenance
 */
