/* ============================================================
   Tour & Travel Agency - Frontend Styles
   ============================================================ */

:root {
    --travel-primary: #0d6efd;
    --travel-dark: #1a2332;
    --travel-accent: #f97316;
    --travel-gold: #f59e0b;
    --travel-light: #f8fafc;
    --travel-gray: #64748b;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
    color: #333;
    background: #f8fafc;
}

/* Navbar */
.bg-travel {
    background: linear-gradient(135deg, #1a2332 0%, #2d3e5f 100%);
}
.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}
.navbar-sticky {
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.nav-link {
    font-weight: 500;
    transition: color .2s;
}
.nav-link:hover {
    color: var(--travel-accent) !important;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26,35,50,.85), rgba(13,110,253,.5)),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920') center/cover;
    color: #fff;
}
.hero-content {
    max-width: 700px;
    padding: 60px 0;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,.3);
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Section */
.section-padding {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--travel-dark);
    margin-bottom: 10px;
}
.section-title p {
    color: var(--travel-gray);
    font-size: 1.1rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--travel-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Tour Card */
.tour-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}
.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}
.tour-card .card-img-top {
    height: 220px;
    object-fit: cover;
}
.tour-card .badge-tour-type {
    position: absolute;
    top: 12px;
    left: 12px;
}
.tour-card .card-title {
    font-weight: 600;
    color: var(--travel-dark);
}
.tour-card .tour-meta {
    font-size: 0.875rem;
    color: var(--travel-gray);
}
.tour-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--travel-accent);
}

/* Religious section */
.religious-section {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}
.religious-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform .4s;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    color: #fff;
    font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Testimonials */
.testimonial-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    padding: 30px;
    text-align: center;
}
.testimonial-card .stars {
    color: var(--travel-gold);
    font-size: 1.2rem;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--travel-accent);
}

/* Buttons */
.btn-travel {
    background: var(--travel-accent);
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s;
}
.btn-travel:hover {
    background: #ea580c;
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline-travel {
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 12px 35px;
    font-weight: 600;
    transition: all .3s;
}
.btn-outline-travel:hover {
    background: #fff;
    color: var(--travel-dark);
}

/* Tour Detail */
.tour-detail-hero {
    background: linear-gradient(135deg, rgba(26,35,50,.8), rgba(13,110,253,.4));
    color: #fff;
    padding: 60px 0;
}
.tour-info-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
    margin-bottom: 20px;
}
.tour-info-box h6 {
    color: var(--travel-accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.itinerary-day {
    border-left: 3px solid var(--travel-primary);
    padding-left: 20px;
    margin-bottom: 25px;
    position: relative;
}
.itinerary-day::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--travel-primary);
    border-radius: 50%;
}

/* Video Gallery */
.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}
.video-item iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
}

/* Footer */
.footer {
    margin-top: 60px;
}
.footer a:hover {
    color: var(--travel-accent) !important;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, rgba(26,35,50,.85), rgba(13,110,253,.4));
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.page-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Seat indicator */
.seats-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.seats-available {
    background: #d1fae5;
    color: #065f46;
}
.seats-low {
    background: #fef3c7;
    color: #92400e;
}
.seats-full {
    background: #fee2e2;
    color: #991b1b;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .section-title h2 { font-size: 1.7rem; }
    .section-padding { padding: 50px 0; }
}
