/* ===== Shared Styles - Nageshwar Tours & Travels ===== */

:root {
    --primary: #003366;
    --accent: #ffcc00;
    --dark: #1a1a1a;
}

/* ---- Body ---- */
body {
    font-family: 'Segoe UI', sans-serif;
    padding-top: 76px;
}

/* ---- Navbar ---- */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .brand-name {
    color: #ed1c24;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.1;
}

.navbar-brand .brand-tagline {
    color: #003366;
    font-size: 0.60rem;
    font-weight: 600;
}

.navbar .nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 0.75rem;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #003366;
}

/* ---- Page Header ---- */
.page-header {
    background: linear-gradient(135deg, #003366 0%, #0055aa 100%);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.page-header h1 {
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* ---- Footer ---- */
footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 50px 0 20px;
}

footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 16px;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 8px;
    display: inline-block;
}

footer a {
    color: #bbb;
    text-decoration: none;
}

footer a:hover {
    color: #ffcc00;
}

footer .footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.875rem;
    color: #777;
}

/* ---- WhatsApp Floating Button ---- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
    color: #fff;
}

/* ---- Stats Counter ---- */
.stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    color: #003366;
    line-height: 1;
}

/* ---- Service Cards ---- */
.service-box {
    transition: 0.3s;
    padding: 30px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    height: 100%;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: #ffcc00;
}

.service-box .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

/* ---- Gallery Lightbox ---- */
.gallery-item {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.35s ease;
    cursor: pointer;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* lightbox overlay */
#lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

#lightbox-overlay.active {
    display: flex;
}

#lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 6px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

#lightbox-overlay .lb-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

#lightbox-overlay .lb-close:hover {
    color: #ffcc00;
}
