/* ===========================
   INDEX PAGE — SPECIFIC CSS
=========================== */


/* ========================
   SINGLE BG WRAPPER
   full-bg.png spans hero + about + quote band
======================== */

.bg-wrapper {
    background-image: url('../images/full-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero,
.about-section,
.quote-band {
    background: transparent;
}


/* ========================
   HERO
======================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.06);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(20, 18, 12, 0.3) 50%, rgba(44, 42, 30, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 40px;
    max-width: 1100px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 48px;
    animation: fadeUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-title em {
    font-style: italic;
    font-weight: 700;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 60px;
    padding: 16px 52px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background: transparent;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    animation: fadeUp 1.2s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

.cta-dot {
    display: none;
}

.hero-stats {
    position: relative;
    z-index: 1;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 40px 24px;
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 0 60px;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}


/* ========================
   ABOUT / THIS IS KATTALAN
======================== */

.about-section {
    /* background: linear-gradient(to bottom, var(--brown-dark) 0%, #1C1E14 60%, #0D0E0A 100%); */
    position: relative;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.55) 60%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}


/* Curved top shape from hero */

.about-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--brown-dark);
    border-radius: 0 0 50% 50% / 0 0 80px 80px;
    pointer-events: none;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 80px 80px;
    position: relative;
    z-index: 1;
}


/* Video thumb */

.about-video-wrap {
    position: relative;
}

.about-video-thumb {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #2a2c1e;
}


/* local video fills the thumb */

.about-video-thumb video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    background: #1a1c12;
}

.about-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-video-thumb:hover img {
    transform: scale(1.05);
}

.video-ep {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 8px;
    letter-spacing: 0.04em;
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2.5px solid rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    backdrop-filter: blur(6px);
}

.video-play:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play svg {
    width: 28px;
    height: 28px;
    fill: white;
    margin-left: 4px;
}

.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    padding: 40px 20px 20px;
    font-size: 22px;
    font-weight: 800;
    color: #FFD700;
    line-height: 1.3;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}


/* About text */

.about-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 6px;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 100px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 32px;
}

.about-body p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.about-body p em {
    color: var(--cream-warm);
    font-style: italic;
}

.about-highlight {
    font-size: 16px !important;
    color: var(--cream-warm) !important;
    font-style: italic;
    margin-top: 20px !important;
}

.btn-outline {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}


/* Quote band */

.quote-band {
    background: transparent;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 34px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: var(--cream);
    max-width: 900px;
    margin: 0 auto;
}


/* ========================
   CTA CARDS
======================== */

.cta-cards-section {
    background: var(--sage);
    padding: 0;
    position: relative;
    z-index: 2;
}

.cta-cards-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: 0 auto;
    gap: 24px;
    padding: 48px 80px;
}

.cta-card {
    background: var(--brown-dark);
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) 0;
    text-decoration: none;
    display: block;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.cta-card--right {
    border-radius: var(--radius-lg) var(--radius-lg) 0 var(--radius-lg);
}

.cta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-card-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    gap: 16px;
}

.cta-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cta-card-text span {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cta-card-text strong {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.cta-card-text strong em {
    font-style: italic;
}

.cta-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}


/* ========================
   UPCOMING TRIPS — SLIDER
======================== */

.trips-section {
    background: var(--brown-dark);
    border-radius: 60px 60px 0 0;
    margin-top: 0;
    padding: 80px 0 80px;
    position: relative;
    z-index: 3;
}


/* Corner fills removed — clean rounded top */

.trips-section::before,
.trips-section::after {
    content: none;
}

.trips-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.trips-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 10px;
}

.trips-sub {
    font-size: 15px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 60px;
}

.slider-viewport {
    flex: 1;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trip-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.trip-img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--sage);
    position: relative;
}

.trip-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trip-card:hover .trip-img-wrap img {
    transform: scale(1.06);
}


/* Overlay on card bottom — title + amount + location */

.trip-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 18px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    z-index: 1;
}

.trip-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.trip-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trip-card-amount {
    font-size: 15px;
    font-weight: 700;
    color: #d4c98a;
    letter-spacing: 0.03em;
}

.trip-location-pin {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
}

.trip-location-pin svg {
    flex-shrink: 0;
}

.slider-prev,
.slider-next {
    flex-shrink: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    padding: 16px 20px;
    letter-spacing: -4px;
    opacity: 0.7;
    transition: opacity var(--transition), transform var(--transition);
}

.slider-prev:hover,
.slider-next:hover {
    opacity: 1;
    transform: scale(1.1);
}


/* ========================
   CONTACT / FORM
======================== */

.contact-section {
    background: var(--brown-dark);
    padding: 80px 80px 100px;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
}

.contact-title em {
    font-style: italic;
    font-weight: 300;
}

.contact-desc {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 480px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-input,
.form-textarea {
    background: var(--sage);
    border: none;
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--brown-dark);
    outline: none;
    transition: background var(--transition), box-shadow var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(44, 42, 30, 0.6);
}

.form-input:focus,
.form-textarea:focus {
    background: var(--sage-light);
    box-shadow: 0 0 0 3px rgba(138, 140, 114, 0.35);
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.form-submit {
    align-self: flex-start;
    background: var(--sage);
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brown-dark);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.form-submit:hover {
    background: var(--cream-warm);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}


/* Footer pin */

.footer-pin {
    display: flex;
    justify-content: center;
    margin-bottom: -20px;
    animation: float 3s ease-in-out infinite;
}


/* ========================
   RESPONSIVE
======================== */

@media (max-width: 1200px) {
    .about-inner {
        padding: 80px 48px;
        gap: 48px;
    }
    .cta-cards-inner {
        padding: 50px 48px;
    }
    .contact-section {
        padding: 60px 48px 80px;
    }
}

@media (max-width: 1024px) {
    .about-inner {
        grid-template-columns: 1fr;
        padding: 60px 32px;
    }
    .cta-cards-inner {
        padding: 40px 32px;
        gap: 24px;
    }
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .contact-section {
        padding: 60px 32px 80px;
    }
    .trip-card {
        flex: 0 0 calc(50% - 10px);
    }
    .stat-item {
        padding: 0 36px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    .about-inner {
        padding: 50px 24px;
    }
    .cta-cards-inner {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
    .cta-card {
        border-radius: var(--radius-md) !important;
    }
    .trips-section {
        padding: 60px 0;
    }
    .slider-wrapper {
        padding: 0 16px;
    }
    .trip-card {
        flex: 0 0 calc(80vw - 32px);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .trips-title {
        font-size: 40px;
    }
    .contact-section {
        padding: 50px 24px 70px;
    }
}