/* ===============================
   OSTAY HEADER
================================ */

.ostay-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
}

.ostay-header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BRAND */
.ostay-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.ostay-brand img {
    height: 38px;
}

/* NAV */
.ostay-nav {
    display: flex;
    gap: 28px;
}

.ostay-nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    position: relative;
}

.ostay-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #0f766e;
    transition: 0.3s;
}

.ostay-nav a:hover::after {
    width: 100%;
}

/* ACTIONS */
.ostay-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline {
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid #0f766e;
    color: #0f766e;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    padding: 9px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f766e, #22c55e);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.25);
}

.menu-toggle {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
}

/* MOBILE MENU */
.ostay-mobile-nav {
    display: none;
    flex-direction: column;
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.ostay-mobile-nav a {
    padding: 12px 0;
    text-decoration: none;
    color: #334155;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ostay-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .ostay-mobile-nav {
        display: flex;
    }
}

/* ===============================
   OSTAY Page
================================ */

/* ================= DESIGN TOKENS ================= */
:root {
    --primary: #4f46e5;
    --primary-soft: #eef2ff;
    --text-main: #020617;
    --text-muted: #475569;
    --border: #e5e7eb;
    --bg-main: #f8fafc;
    --white: #ffffff;
    --radius: 14px;
    --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-strong: 0 20px 40px rgba(15, 23, 42, 0.12);
}

/* ================= BASE ================= */
.home-page {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
}

.soft-bg {
    background: var(--white);
}

/* ================= HERO ================= */
.site-badge {
    display: inline-block;
    background: #eef2ff;
    color: #4f46e5;
    border: 1px solid #c7d2fe;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.site-badge.pulse {
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79,70,229,.35);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79,70,229,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79,70,229,0);
    }
}

.hero {
    padding: 140px 0 120px;
    background: linear-gradient(to bottom, #ffffff 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--border);
}

.hero-grid {
    max-width: 760px;
}

.pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.hero h1 {
    font-size: 30px;
    font-weight: 700;
    margin: 20px 0 16px;
    color: orange;
    line-height: auto;
}

.hero p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
}

.actions {
    margin-top: 28px;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    margin-right: 12px;
    transition: all 0.2s ease;
}

.btn.primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.3);
}

.btn.primary:hover {
    transform: translateY(-1px);
}

.btn.secondary {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--text-main);
}

/* ================= SEARCH ================= */
.search-section {
    background: var(--bg-main);
    padding: 40px 0 80px;
    margin-top: -70px;
}

.search-section::before {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--border),
        transparent
    );
    margin-bottom: 40px;
}

.search-box {
    background: var(--white);
    box-shadow: var(--shadow-strong);
    border-radius: var(--radius);
    padding: 22px;
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 14px;
}

.search-box input,
.search-box select {
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #ffffff;
    font-size: 15px;
    color: var(--text-main);
}

.search-box input::placeholder {
    color: #9ca3af;
}

.search-box button {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 26px;
    font-weight: 600;
    cursor: pointer;
}

/* ================= SECTION HEAD ================= */
.section-head {
    margin-bottom: 44px;
}

.section-head h2 {
    font-size: 36px;
    font-weight: 700;
}

.section-head p {
    color: var(--text-muted);
    margin-top: 6px;
}

/* ================= SEGMENTS ================= */
.segment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.segment-card {
    background: var(--white);
    padding: 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

/* ================= LISTINGS ================= */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.listing-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.listing-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.listing-info {
    padding: 16px;
}

.listing-info h3 {
    font-size: 18px;
    font-weight: 600;
}

.listing-info span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 2px;
}

.link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

/* ================= VALUE GRID ================= */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.value-grid h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.value-grid p {
    color: var(--text-muted);
}

/* ================= OPERATIONS ================= */
.ops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.ops-grid div {
    background: var(--bg-main);
    padding: 18px;
    border-radius: var(--radius);
    font-weight: 500;
}

/* ================= CTA ================= */
.cta {
    background: var(--white);
}

.cta-box {
    max-width: 720px;
    text-align: center;
}

.cta h2 {
    font-size: 38px;
}

.cta p {
    color: var(--text-muted);
    margin-top: 8px;
}

/* ================= TEXT HELPERS ================= */
.muted {
    color: var(--text-muted);
}

/* ===============================
   FOOTER
================================ */
/* ================= FOOTER ================= */
.ostay-footer {
    background: #ffffff;
    border-top: 1px solid #e5ebe7;
    padding: 70px 20px 0;
    font-family: Inter, system-ui, sans-serif;
    box-shadow: 0px 5px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #020617;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #020617;
}

.footer-col p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #475569;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #4f46e5;
}

.footer-col.brand p {
    max-width: 360px;
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #121111;
    font-weight: 700;
    border-top: 1px solid #e5e7eb;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   GLOBAL RESET & BASE
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

/* ===============================
   HOME PAGE WRAPPER
================================ */
.home-page {
    width: 100%;
    overflow-x: hidden;
}

/* ===============================
   HERO SECTION
================================ */
.hero {
    min-height: 70vh;
    background: linear-gradient(
        135deg,
        rgba(15, 118, 110, 0.95),
        rgba(34, 197, 94, 0.9)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    color: #ffffff;
    position: relative;
}

/* soft glow effect */
.hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    filter: blur(120px);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero p {
    margin-top: 18px;
    font-size: 18px;
    max-width: 600px;
    line-height: 1.6;
    opacity: 0.95;
}

/* ===============================
   SECTION (FEATURED HOTELS)
================================ */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

/* underline accent */
.section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0f766e, #22c55e);
    margin: 14px auto 0;
    border-radius: 10px;
}

/* ===============================
   HOTEL CARD GRID
================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD */
.card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* top gradient accent */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0f766e, #22c55e);
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.card p {
    font-size: 14px;
    color: #64748b;
}

/* hover effect */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 60px 20px;
    }

    .section h2 {
        font-size: 28px;
    }
}
.hero {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
}

.section {
    padding: 40px 20px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
}

.card-body h3 {
    margin: 0 0 5px;
}

.card-body .city {
    color: #666;
    font-size: 0.9rem;
}

.menu-items {
    padding: 0 12px;
}

.menu-item:last-child {
    border-bottom: none;
}

/* Veg / Non-veg dots */
.veg-dot,
.nonveg-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.veg-dot {
    background: #2ecc71;
}

.nonveg-dot {
    background: #e74c3c;
}

/* For Category Hover of menu  */

/* Base category card */
.category-card {
    position: relative;
    padding: 8px;
    border-radius: 16px;
    background: transparent;
}

/* Image container animation */
.category-card .bg-white {
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

/* Hover / touch feedback */
.category-card:hover {
    background: rgb(231, 231, 231);
    transform: translateY(-3px);
    color: white;
}

/* Hover image lift */
.category-card:hover .bg-white {
    transform: scale(1.03);
    box-shadow: 0 8px 18px rgb(228, 228, 228);
}

/* ACTIVE category */
.category-card.active {
    background: white;
    box-shadow: 0 6px 18px rgb(22, 22, 23);
}

/* Active image highlight */
.category-card.active .bg-white {
    box-shadow:
        0 0 0 2px #fafbfd,
        0 10px 22px rgba(10, 9, 9, 0.35);
    transform: scale(1.05);
}

/* Category name */
.category-card small {
    margin-top: 4px;
    display: block;
    color: #333;
    transition:
        color 0.25s ease,
        font-weight 0.25s ease;
}

/* Category name active */
.category-card.active small {
    color: #fd5d0d;
    font-weight: 700;
}

/* Bottom active indicator bar */
.category-card::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 4px;
    background: #0d6efd;
    border-radius: 4px;
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

/* Show indicator when active */
.category-card.active::after {
    width: 40%;
}

/* Touch feedback (mobile) */
.category-card:active {
    transform: scale(0.97);
}
