/* =========================================================
   HOPNEST WEBSITE EXTENSION LAYER
   Depends on /go/assets/css/base.css
========================================================= */


/* =========================================================
   HEADER MODULE
========================================================= */

.hn-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* =========================================================
   HOME — HERO
========================================================= */

.hn-home-hero {
    /* Empty for now — we will define in next step */
}


/* =========================================================
   HOME — KERALA PACKAGES
========================================================= */

.hn-home-packages {
    /* To be defined */
}


/* =========================================================
   HOME — CONCIERGE
========================================================= */

.hn-home-concierge {
    /* To be defined */
}


/* =========================================================
   HOME — EXPERIENCES
========================================================= */

.hn-home-experiences {
    /* To be defined */
}


/* =========================================================
   HOME — FINAL CTA
========================================================= */

.hn-home-cta {
    text-align: center;
}


/* =========================================================
   HOME — DESTINATIONS
========================================================= */

.hn-home-destinations {
    text-align: center;
}

.hn-home-destinations-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.hn-home-destination-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.hn-home-destination-card:hover {
    transform: translateY(-6px);
}

.hn-home-destination-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--hn-shadow-md);
    margin-bottom: 14px;
}

.hn-home-destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hn-home-destination-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--hn-text-main);
}

/* =========================================================
   HOME — CATEGORY SECTIONS (COMPACT ROUND STYLE)
========================================================= */

/* =========================
   SECTION WRAPPERS
========================= */

.hn-home-stays,
.hn-home-experiences,
.hn-home-vehicles {
    text-align: center;
}

/* =========================
   GRID BASE (DESKTOP DEFAULT)
========================= */

.hn-home-list-stays,
.hn-home-list-experiences,
.hn-home-list-vehicles {
    margin-top: 40px;
    display: grid;
    gap: 28px;
}

/* Desktop layout */

.hn-home-list-stays {
    grid-template-columns: repeat(6, 1fr);
}

.hn-home-list-experiences {
    grid-template-columns: repeat(6, 1fr);
}

.hn-home-list-vehicles {
    grid-template-columns: repeat(4, 160px);
    justify-content: center;
}

/* =========================
   ITEM STRUCTURE
========================= */

.hn-home-item {
    text-align: center;
    transition: transform 0.25s ease;
}

.hn-home-item:hover {
    transform: translateY(-4px);
}

/* Rounded image */

.hn-home-item-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--hn-shadow-sm);
    border: 2px solid var(--hn-primary-bg-soft);
}

.hn-home-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title */

.hn-home-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--hn-text-main);
}

/* Section Background Alternation */

.hn-home-stays {
    background: var(--hn-bg-soft);
}

.hn-home-vehicles {
    background: var(--hn-bg-soft);
}


/* ===========================
   HEADER NAVIGATION
=========================== */

.hn-header-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.hn-header-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--hn-text-main);
    transition: 0.2s ease;
}

.hn-header-nav a:hover {
    color: var(--hn-primary);
}

/* Hide nav on smaller screens */
@media (max-width: 900px) {

    .hn-header-nav {
        display: none;
    }

    .hn-header-right {
        display: none;
    }

    .hn-menu-toggle {
        display: block;
    }
}



