/* Qitu i kom definu ngjyrat kryesore (variablat) qe me i perdor ne krejt faqen ma lehte */
:root {
    --bg-peach: #FFF3E9;
    --brand-pink: #D9305C;
    --brand-yellow: #F6C945;
    --text-dark: #2D2D2D;
    --white: #FFFFFF;
    --radius: 24px;
    --font-main: 'Poppins', sans-serif;
}

/* Stili baze per trupin e faqes, fonti edhe ngjyra e backgroundit */
body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Krejt titujt i kom bo me ngjyre roze (brand pink) edhe pak bold */
h1, h2, h3, h4, .navbar-brand {
    color: var(--brand-pink);
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Stili per butonin kryesor 'Book', me ngjyre te verdhe */
.btn-book {
    background-color: var(--brand-yellow);
    color: var(--text-dark);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    transition: transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

/* Kur ja afron mausin butonit, rritet pak edhe ndrron ngjyren */
.btn-book:hover {
    background-color: #e5bb3e;
    transform: scale(1.05);
    color: var(--text-dark);
}

/* Butoni tjeter qe ka vetem vija anash (outline) */
.btn-outline-pink {
    border: 2px solid var(--brand-pink);
    color: var(--brand-pink);
    border-radius: 50px;
    font-weight: 600;
    padding: 8px 25px;
    transition: 0.2s;
}

/* Kur ja afron mausin butonit outline, mbushet me ngjyre */
.btn-outline-pink:hover {
    background-color: var(--brand-pink);
    color: white;
}

/* Pjesa e navigimit nalt, i kom jep pak hapesire */
.navbar {
    padding: 20px 0;
    background: var(--bg-peach);
}

/* Pjesa e pare qe shihet (Hero), i kom laku qoshet poshte per stil */
.hero-section {
    background-color: var(--bg-peach);
    padding-bottom: 100px; 
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    margin-bottom: 80px;
    position: relative;
}

/* Kjo osht per fotot ne balline, i kom nda ne dy kolona */
.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

/* Kolona e majte per fotot ne balline */
.grid-col-left {
    height: 100%;
}

/* Kolona e djathte per fotot ne balline */
.grid-col-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

/* Stili per fotot brenda gridit, hije dhe rrumbullakim */
.grid-img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Efekti kur kalon mausin mbi fotot e ballines */
.grid-img:hover {
    transform: scale(1.02);
}

/* Klasat ndihmese per lartesine e fotove */
.full-height { height: 100%; }
.half-height { height: calc(50% - 10px); }


/* Karta e thjeshte qe perdoret te faqja e Tureve */
.tour-preview-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

/* Efekti hover per karten e thjeshte */
.tour-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Fotoja e vogel (thumbnail) brenda kartes se tureve */
.tour-thumb {
    width: 120px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
}

/* Seksioni i Guidave (Akilin e Mukin) */
.guides-section {
    padding: 80px 0;
}

/* Kartat individuale per guidat */
.guide-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden; /* Kjo e mban foton brenda kornizave */
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* Hije e lehte */
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

/* Kur e prek karten e guides me maus qohet pak nalt */
.guide-card:hover {
    transform: translateY(-10px); 
}

/* Korniza per foton e guides */
.guide-img-wrapper {
    height: 400px; /* Foto ma e madhe */
    width: 100%;
    overflow: hidden;
}

/* Vet fotoja e guides */
.guide-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fotoja nuk shtremberohet */
    transition: transform 0.5s ease;
}

/* Efekti i zoom-it te fotoja kur ofron mausin */
.guide-card:hover .guide-img-wrapper img {
    transform: scale(1.05); 
}

/* Pjesa e tekstit (info) brenda kartes se guides */
.guide-info {
    padding: 30px;
    text-align: center;
}

/* Emri i guides */
.guide-info h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

/* Pershkrimi i guides (tekst italik) */
.guide-info p {
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Pjesa qe tregon planin e udhetimit, fillimisht e fshehur */
.itinerary-content {
    display: none;
    background: var(--bg-peach);
    padding: 40px;
    border-radius: var(--radius);
    margin-top: 30px;
}

/* Rreshti per secilen pike te itinerarit */
.itinerary-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Fotoja brenda itinerarit */
.itinerary-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

/* Etiketa per kohen (psh 10:00 AM) */
.time-badge {
    background: var(--brand-pink);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

/* Kartat vertikale ne Home page, stilizim modern */
.tour-vertical-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none; /* Heq vizat e linkut */
    color: var(--text-dark);
}

/* Efekti hover per kartat vertikale */
.tour-vertical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Korniza e fotos te kartat vertikale */
.vertical-card-img-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
}

/* Fotoja brenda kartes vertikale */
.vertical-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Etiketa 'Top Pick' nalt majtas */
.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #003580; /* Stil si Booking */
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Zemra nalt djathtas per favorites */
.card-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: 0.2s;
}

/* Kur klikon zemren ndrron ngjyre */
.card-heart:hover {
    color: var(--brand-pink);
}

/* Pjesa e permbajtjes brenda kartes */
.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Informacione shtese (psh sa ore zgjat) */
.card-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
}

/* Pjesa e poshtme e kartes ku eshte cmimi */
.card-footer-custom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* Stili per tekstin e cmimit */
.price-tag {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Cmimi me font te trashe dhe ngjyre roze */
.price-bold {
    font-weight: 700;
    color: var(--brand-pink);
    font-size: 1.3rem;
}

/* Karta ngjitese (sticky) e rezervimit ne faqen e tureve */
.tour-booking-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tour-facts li {
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
}

.tour-facts li:last-child {
    border-bottom: none;
}

@media (min-width: 992px) {
    .tour-booking-card.sticky-lg-top {
        top: 100px;
    }
}

/* Pjesa e fundit e faqes, footer */
.main-footer {
    background-color: var(--bg-peach);
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    margin-top: 50px;
    font-size: 0.95rem;
}

/* Linqet brenda footerit */
.footer-links a {
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
    transition: 0.2s;
}

/* Efekti hover te linqet e footerit */
.footer-links a:hover {
    color: var(--brand-pink);
    padding-left: 5px;
}

/* Hija per harten ne footer */
.map-container iframe {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Rregullimet per telefon (ekrane te vogla) */
@media (max-width: 991px) {
    .collage-grid { display: none; } /* E hjek gridin kompleks ne telefon */
    .hero-section { padding-bottom: 50px; }
    .itinerary-row { flex-direction: column; }
    .itinerary-img { margin-bottom: 20px; }

    .itinerary-row.flex-md-row-reverse .col-md-5 {
        order: -1;
        margin-bottom: 20px;
    }
}

/* CTA e rezervimit brenda nav-it, e ban full-width kur menuja osht e hapun ne telefon */
@media (max-width: 991px) {
    .navbar-nav .btn-book {
        display: block;
        text-align: center;
        margin-top: 8px;
    }
}

/* E mban emrin e faqes te lexueshem ne ekrane shume te vogla */
@media (max-width: 420px) {
    .navbar-brand.fs-3 {
        font-size: 1.15rem;
    }
}

/* Shiriti fiks poshte ekranit ne telefon, gjithmone ofron nje menyre per me rezervu */
.mobile-book-bar {
    display: none;
}

@media (max-width: 991px) {
    .mobile-book-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 12px 16px;
        box-shadow: 0 -8px 25px rgba(0,0,0,0.12);
        z-index: 1030;
    }

    .mobile-book-bar .btn-book {
        display: block;
        width: 100%;
        text-align: center;
    }

    /* Hapesire shtese ne fund qe permbajtja mos me fshehe pas shiritit fiks */
    body.has-mobile-bar {
        padding-bottom: 78px;
    }
}

/* Fushat e formes ma te medha ne telefon, ma lehte me i prek edhe e ndalon zoom-in automatik ne iOS */
@media (max-width: 767px) {
    .form-control,
    .form-select {
        min-height: 48px;
        font-size: 16px;
    }
}