/* Future Trips Page Specific Styles */
:root {
    --ft-primary: #132A13;
    /* Dark Green Text */
    --ft-accent: #BC6C25;
    /* Earthy/Bronze Accent */
    --ft-dark: #FEFAE0;
    /* Light Background */
    --ft-glass: rgba(255, 255, 255, 0.4);
    --ft-glass-border: rgba(19, 42, 19, 0.1);
    --ft-blur: 15px;
    --ft-shadow: 0 8px 32px 0 rgba(19, 42, 19, 0.1);
}

.page-template-future-trips {
    background-color: var(--ft-dark);
    color: var(--ft-primary);
    font-family: 'Inter', sans-serif;
}

/* Hero Section */
.ft-hero {
    position: relative;
    height: 100vh;
    /* Reduced height as it is no longer the top hero */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.ft-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighter overlay for the new theme */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 10%, rgba(254, 250, 224, 1) 100%);
    z-index: 1;
}

.ft-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: ftFadeInUp 1s ease-out;
}

.ft-title {
    font-size: 6rem;
    font-weight: 600;
    line-height: 0.8;
    margin-bottom: 2.5rem;
    letter-spacing: -0.3rem;
    word-spacing: -0.2rem;
    color: #fff;
    /* Fallback */
    background: none;
    /* Remove previous gradient */
    -webkit-text-fill-color: initial;
    text-transform: none;
    /* Allow Mixed Case */
}

.ft-highlight {
    font-size: 9rem;
    color: var(--ft-accent);
    font-family: "Birthstone", cursive;
    /* Using the highlight font */
    font-weight: 400;
    line-height: 0.8;
    display: block;
    /* Break line like in the mockup/home if needed, or inline */
}

/* Responsive adjustment for title */
@media (max-width: 768px) {
    .ft-title {
        font-size: 4rem;
        letter-spacing: -0.1rem;
    }

    .ft-highlight {
        font-size: 6rem;
    }
}

.ft-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: #283618;
    font-weight: 500;
    letter-spacing: 1px;
    max-width: 500px;
    margin: 0 auto;
}

/* Future Trips Section */
.ft-trips-section {
    padding: 120px 20px 100px;
    /* Increased top padding for header clearance */
    position: relative;
    z-index: 2;
    background: transparent;
}

.ft-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.ft-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--ft-primary);
}

.ft-section-desc {
    font-size: 1.1rem;
    color: #606c38;
    max-width: 600px;
    margin: 0 auto;
}

.ft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Trip Card */
.ft-card {
    background: var(--ft-glass);
    border: 1px solid var(--ft-glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(var(--ft-blur));
    -webkit-backdrop-filter: blur(var(--ft-blur));
    box-shadow: var(--ft-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ft-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(19, 42, 19, 0.15);
    border-color: rgba(19, 42, 19, 0.2);
}

.ft-card-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ft-card:hover .ft-card-image {
    transform: scale(1.05);
}

.ft-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ft-trip-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--ft-primary);
}

.ft-perk-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.ft-perk-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #283618;
}

.ft-perk-item svg {
    margin-right: 10px;
    color: var(--ft-accent);
    width: 20px;
    height: 20px;
}

/* Locked Content */
.ft-locked-content {
    position: relative;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(19, 42, 19, 0.1);
}

.ft-locked-blur {
    filter: blur(6px);
    opacity: 0.5;
    user-select: none;
    pointer-events: none;
}

.ft-locked-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ft-lock-icon {
    background: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border: 1px solid rgba(19, 42, 19, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ft-lock-icon svg {
    width: 24px;
    height: 24px;
    color: var(--ft-accent);
}

.ft-locked-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--ft-primary);
}

/* Animations */
@keyframes ftFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ft-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .ft-hero {
        height: 70vh;
    }
}

/* =========================================
   Locked Preview Section (High Conversion)
   ========================================= */

.ft-locked-preview-section {
    padding: 6rem 1.5rem;
    background-color: var(--ft-dark);
    /* Contrast background */
    color: var(--ft-primary);
    position: relative;
    overflow: hidden;
}

/* Background Pattern (Optional) */
.ft-locked-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

.ft-locked-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.ft-locked-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-locked-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--ft-accent);
}

/* Blurred Content Layer */
.ft-locked-card-blur-content {
    filter: blur(8px);
    /* Heavy blur */
    opacity: 0.5;
    width: 100%;
    user-select: none;
    pointer-events: none;
}

.ft-blur-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-blur-row:last-child {
    border-bottom: none;
}

.ft-blur-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.ft-blur-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ft-primary);
}

.ft-blur-row.highlight .ft-blur-value {
    color: var(--ft-accent);
}

/* Overlay Layer */
.ft-locked-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(19, 42, 19, 0.6);
    /* Semi-transparent dark overlay */
    backdrop-filter: blur(2px);
    /* Additional interaction blur */
    z-index: 10;
}

.ft-lock-icon-img {
    width: 60px;
    /* Adjust size as needed */
    height: auto;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
    filter: brightness(0) invert(1) drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.ft-locked-card-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ft-primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.ft-unlock-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--ft-accent);
    color: var(--ft-dark) !important;
    /* Dark text on button for contrast */
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.ft-unlock-btn:hover {
    background: #000;
    transform: scale(1.05);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ft-title {
        font-size: 3rem;
        /* Smaller font size for mobile */
        letter-spacing: -0.05rem;
    }

    .ft-highlight {
        font-size: 4.5rem;
    }

    .ft-trips-section {
        padding-top: 80px;
        /* Reduce massive top padding on mobile */
    }

    .ft-section-header {
        padding-top: 50px;
        /* Requested 50px padding */
        margin-bottom: 40px;
    }

    .ft-grid {
        grid-template-columns: 1fr;
        /* Stack cards */
        gap: 30px;
        padding: 0 10px;
    }

    .ft-locked-grid {
        grid-template-columns: 1fr;
    }

    .ft-hero {
        height: 50vh;
        min-height: 400px;
    }
}