
:root {
    --primary: #1b4965;
    --secondary: #62b6cb;
    --accent: #ffd166;
    --bg: #f7fbff;
    --dark: #0b2545;

    /* FIXED */
    --bg-light: #f2f6fb;
    --text-dark: #0b2545;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: #222;
    line-height: 1.8;
}

/* NAVBAR */
.navbar {
    background: rgba(11, 37, 69, .85);
    backdrop-filter: blur(10px);
}

.navbar a {
    color: #fff !important
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden
}

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.15);
    transition: opacity 1.5s, transform 6s;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .2), rgba(0, 0, 0, .55));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
}

.btn-hero {
    background: var(--accent);
    padding: 12px 35px;
    border-radius: 50px;
}

/* SECTIONS */
/* ===============================
   EDITORIAL STORY SECTION
================================ */
.editorial-story {
    background: #f2f2fa;
    padding: 110px 0;
}

.story-date {
    display: inline-block;
    background: #dae2ef;
    color: #444;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #222;
}

.story-intro {
    font-size: 1.1rem;
    color: #444;
    max-width: 520px;
    margin-bottom: 30px;
}

.story-quote {
    border-left: 4px solid #f0b429;
    padding-left: 20px;
    font-style: italic;
    color: #555;
    max-width: 520px;
    margin-bottom: 35px;
}

.story-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.story-meta h5 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.story-meta p {
    font-size: .95rem;
    color: #555;
    line-height: 1.6;
}

/* ===============================
   POLAROID IMAGE STYLE
================================ */
.story-image-polaroid {
    background: #fff;
    padding: 10px 10px 35px;
    border-radius: 6px;
    box-shadow: 0 30px 60px rgba(0,0,0,.15);
    transform: rotate(-2deg);
    transition: transform .4s ease;
    max-width: 550px;
    margin-left: auto;
}

.story-image-polaroid img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

.story-image-polaroid figcaption {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    color: #666;
    margin-top: 14px;
}

.story-image-polaroid:hover {
    transform: rotate(0deg) scale(1.03);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .story-title {
        font-size: 2.4rem;
    }

    .story-meta {
        grid-template-columns: 1fr;
    }

    .story-image-polaroid {
        margin: 40px auto 0;
        transform: rotate(0);
    }
}


.section {
    padding: 100px 0
}

.bg-soft {
    background: #eef7fb
}

.section-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 60px;
}

/* IMAGE CARD */
.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, .25);
}

.image-card img {
    width: 100%;
    transition: .6s
}

.image-card:hover img {
    transform: scale(1.1)
}

.image-card span {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
}

.itinerary-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff, var(--bg-light));
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.section-title span {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.timeline {
    margin: auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 10px;
}

.timeline-card {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all .7s ease;
}

.timeline-card.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline-icon {
    min-width: 50px;
    height: 50px;
    background: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 0 0 0 rgba(255, 107, 74, .5);
    animation: pulse 2s infinite;
}

.timeline-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}

.timeline-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .15);
}

.timeline-content h4 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.4rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    margin-top: 12px;
    background: rgba(30, 136, 229, .1);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: .85rem;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 74, .5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(255, 107, 74, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 74, 0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .timeline {
        padding-left: 30px;
    }

    .timeline-card {
        flex-direction: column;
        gap: 15px;
    }
}

/* PLACE CARD */
.place-card {
    background: #fff;
    border-radius: 20px;
    padding-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
}

.place-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.place-card:hover {
    transform: translateY(-12px)
}

.place-card h5 {
    padding: 15px 15px 0
}

.place-card p {
    padding: 0 15px
}
/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-item {
    background: #fff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
    overflow: hidden;
}

/* REMOVE transform from item */
.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform .6s ease, filter .6s ease;
}

/* 🔥 HOVER EFFECT (WORKING) */
.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.1);
}


/* WHY VISIT SECTION */
.why-visit-section {
    padding: 85px 0;
    background: linear-gradient(135deg, #f9fbff, #eef3ff);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,107,74,.12));
    opacity: 0;
    transition: .3s;
}

.why-card:hover::after {
    opacity: 1;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-card span {
    font-size: 42px;
    display: block;
    margin-bottom: 15px;
}

.why-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-card p {
    color: #555;
    line-height: 1.6;
}
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT SECTION */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #232f3e, #1b2430);
    color: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d5d9e0;
}

.contact-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,.4);
}

.contact-card h3 {
    color: orange;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.contact-card p {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.contact-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    background: #ff856b;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


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

/* MOBILE */
@media(max-width:768px) {
    .hero h1 {
        font-size: 2.5rem
    }

    .section {
        padding: 70px 0
    }
}
/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}
/* ===============================
   TIMELINE MOBILE FIX
================================ */
@media (max-width: 768px) {

    /* Remove vertical line */
    .timeline::before {
        display: none;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline-card {
        position: relative;
        padding-top: 30px;
    }

    /* Center icon */
    .timeline-icon {
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        background: #fff;
    }

    .timeline-content {
        text-align: left;
        padding-top: 40px;
    }
}
