/* Three Lioness Tours & Adventures - Main Stylesheet */

/* CSS Variables */
:root {
    --sunset-orange: #F1661C;
    --dark-brown: #3B1E0D;
    --deep-orange: #E14B15;
    --beige-green: #C4BD86;
    --black: #000000;
    --white: #ffffff;
    --off-white: #fefefe;
    --light-orange: #ff8c42;
    --accent-beige: #e6e0c4;
    --safari-green: #228B22;
    --earth-brown: #8B4513;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-brown);
}

/* Navigation Styles */
.navbar-custom {
    background: white !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--dark-brown) !important;
    font-weight: 500;
    padding: 0.8rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--sunset-orange) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--sunset-orange);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
    left: 10%;
}

.navbar-nav .nav-link.active {
    color: var(--sunset-orange) !important;
}

.navbar-toggler {
    border: 1px solid var(--sunset-orange);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(241, 102, 28, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F1661C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* CTA Button */
.btn-primary-custom {
    background: var(--sunset-orange);
    border: 2px solid var(--sunset-orange);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--sunset-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 102, 28, 0.3);
    text-decoration: none;
}

/* Hero Carousel optimizations */
.hero-img {
    height: 100vh;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Performance optimizations */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.6s;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Custom button styles */
.btn-warning {
    background-color: var(--sunset-orange);
    border-color: var(--sunset-orange);
    color: white;
}

.btn-warning:hover {
    background-color: var(--light-orange);
    border-color: var(--light-orange);
    color: white;
}

.btn-outline-warning {
    color: var(--sunset-orange);
    border-color: var(--sunset-orange);
}

.btn-outline-warning:hover {
    background-color: var(--sunset-orange);
    border-color: var(--sunset-orange);
}

/* Section dividers */
.section-divider {
    width: 80px;
    height: 3px;
    background: var(--sunset-orange);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Safari Section */
.safari-section {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(26, 25, 25, 0.9), rgba(0, 0, 0, 0.8)), url('../images/baloon-luxury-view.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.safari-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(241, 102, 28, 0.1), rgba(225, 75, 21, 0.1));
    z-index: 1;
}

.safari-section .container {
    position: relative;
    z-index: 2;
}

/* Safari Cards */
.safari-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 2rem;
}

.safari-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.safari-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.safari-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.safari-card:hover .safari-img-container img {
    transform: scale(1.1);
}

.safari-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--sunset-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.safari-card-body {
    padding: 1.5rem;
}

.safari-btn {
    background: var(--sunset-orange);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.safari-btn:hover {
    background: var(--deep-orange);
    transform: translateY(-2px);
    color: white;
}

/* Safari Packages List - NO IMAGES */
.safari-packages-list {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.safari-package-item {
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1rem;
    transition: all 0.3s ease;
    min-height: 100px;
}

.safari-package-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.safari-package-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.safari-package-content h6 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.safari-package-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.3;
}

.safari-btn-mini {
    background: var(--sunset-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: inline-block;
    width: fit-content;
}

.safari-btn-mini:hover {
    background: var(--deep-orange);
    color: white;
}

/* Day Adventures Styles */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Adventures Container */
.adventures-compact {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* Adventure Tabs */
.adventure-tabs-container {
    position: relative;
}

.adventure-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--sunset-orange) #f1f1f1;
    scroll-behavior: smooth;
    position: relative;
}

.adventure-tabs::-webkit-scrollbar {
    height: 6px;
}

.adventure-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.adventure-tabs::-webkit-scrollbar-thumb {
    background: var(--sunset-orange);
    border-radius: 3px;
}

.adventure-tab {
    flex: 0 0 auto;
    min-width: 150px;
    padding: 20px 15px;
    background: transparent;
    border: none;
    color: #6c757d;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.adventure-tab i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.adventure-tab:hover {
    background: rgba(241, 102, 28, 0.1);
    color: var(--sunset-orange);
}

.adventure-tab.active {
    background: white;
    color: var(--sunset-orange);
    border-bottom-color: var(--sunset-orange);
    transform: translateY(-2px);
}

/* Adventure Content */
.adventure-content-wrapper {
    position: relative;
    min-height: 500px;
}

.adventure-item {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.adventure-item.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Adventure Info */
.adventure-info h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.adventure-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Adventure Stats */
.adventure-stats-compact {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--sunset-orange);
}

.stat-compact {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
}

/* Enhance existing hero section for day-trip page */
.day-trip-hero {
    min-height: 65vh;
    padding: 100px 0;
}

.day-trip-hero h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.day-trip-hero .lead {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

/* Enhance existing activity cards */
.activity-card {
    border: 2px solid #e9ecef !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

.activity-card:hover {
    border-color: var(--sunset-orange) !important;
    box-shadow: 0 8px 30px rgba(241, 102, 28, 0.15) !important;
}

.activity-card .card-footer {
    background: #f8f9fa !important;
    border-top: 1px solid #e9ecef !important;
}

/* Enhance existing form controls */
.form-select {
    border: 2px solid #dee2e6 !important;
    border-radius: 25px !important;
    font-weight: 500;
}

.form-select:focus {
    border-color: var(--sunset-orange) !important;
    box-shadow: 0 0 0 0.2rem rgba(241, 102, 28, 0.25) !important;
}

/* Enhance existing filter section */
.filter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 3px solid var(--sunset-orange);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* WhatsApp button enhancement (modify existing) */
.whatsapp-float {
    width: 60px;
    height: 60px;
    border: 3px solid white;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Mobile additions to existing mobile section */
@media (max-width: 768px) {
    .day-trip-hero {
        min-height: 50vh;
        padding: 60px 0;
    }
    
    .day-trip-hero h1 {
        font-size: 2.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }
}
.stat-compact:last-child {
    margin-bottom: 0;
}

.stat-compact strong {
    color: var(--dark-brown);
}

/* Alert Styling */
.alert {
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 1rem;
    border-left: 4px solid;
}

.alert-info {
    background: rgba(13, 202, 240, 0.1);
    color: #055160;
    border-left-color: #0dcaf0;
}

.alert-success {
    background: rgba(25, 135, 84, 0.1);
    color: #0a3622;
    border-left-color: #198754;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #664d03;
    border-left-color: #ffc107;
}

.alert-primary {
    background: rgba(13, 110, 253, 0.1);
    color: #052c65;
    border-left-color: #0d6efd;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #58151c;
    border-left-color: #dc3545;
}

/* Adventure Actions */
.adventure-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.btn-outline-secondary {
    background: transparent;
    border: 2px solid #6c757d;
    color: #6c757d;
}

.btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
    transform: translateY(-2px);
}

/* Card hover effects - minimal for performance */
.card:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-img {
        height: 70vh;
        max-height: 500px;
    }
    
    .carousel-caption h1 {
        font-size: 1.75rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .display-4 {
        font-size: 1.8rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }

    /* WhatsApp button mobile positioning */
    .position-fixed.bottom-0.start-0 {
        bottom: 15px !important;
        left: 15px !important;
    }
    
    .btn-success.rounded-circle {
        width: 50px;
        height: 50px;
        padding: 0.5rem !important;
    }
    
    .btn-success.rounded-circle i {
        font-size: 1.5rem !important;
    }

    /* Adventure tabs for mobile */
    .adventure-tabs {
        padding: 10px 0;
        gap: 5px;
    }
    
    .adventure-tab {
        min-width: 120px;
        padding: 12px 10px;
        margin: 0 3px;
        border-radius: 25px;
        background: rgba(241, 102, 28, 0.1);
        border: 2px solid transparent;
        flex-shrink: 0;
    }
    
    .adventure-tab.active {
        background: linear-gradient(135deg, var(--sunset-orange), var(--deep-orange));
        color: white;
        border-color: var(--sunset-orange);
        transform: translateY(0);
    }
    
    .adventure-tab span {
        font-size: 0.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .adventure-tab i {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .adventure-info h4 {
        font-size: 1.5rem;
    }
    
    .adventure-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .adventure-item {
        padding: 25px;
    }

    /* Safari packages mobile styles */
    .safari-package-item {
        padding: 0.8rem;
        min-height: 90px;
        margin-bottom: 1rem;
    }
    
    .safari-package-content h6 {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .safari-package-content p {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .safari-btn-mini {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Remove unnecessary animations on mobile for performance */
@media (max-width: 768px) {
    .card:hover {
        transform: none;
    }
}

/* Loading states */
.btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility improvements */
.nav-link:focus,
.btn:focus {
    outline: 2px solid var(--sunset-orange);
    outline-offset: 2px;
}

/* WhatsApp button pulse effect - minimal */
.btn-success.rounded-circle {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(25, 135, 84, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(25, 135, 84, 0);
    }
}

/* WhatsApp button positioning - left side */
.position-fixed.bottom-0.start-0 {
    bottom: 20px !important;
    left: 20px !important;
}

/* Ensure images load efficiently */
img {
    max-width: 100%;
    height: auto;
}

/* Print styles */
@media print {
    .navbar,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators,
    .btn,
    footer {
        display: none !important;
    }
}
/* Performance Optimizations - Add to style.css */

/* Bootstrap Card Optimizations */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: box-shadow 0.15s ease-in-out;
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Activity Cards - Bootstrap focused */
.activity-card {
    border-radius: 0.5rem;
    overflow: hidden;
    height: 100%;
}

.activity-badge {
    font-size: 0.75rem;
    font-weight: 600;
}

.activity-meta .badge {
    font-size: 0.7rem;
    font-weight: 500;
}

/* WhatsApp Button - Left Position */
.whatsapp-float {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 1050;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Mobile-first Filter Controls */
.filter-controls {
    gap: 0.5rem;
}

.filter-controls .form-select {
    min-width: 140px;
    border-radius: 1.5rem;
    border-color: var(--sunset-orange);
    font-size: 0.875rem;
}

.filter-controls .form-select:focus {
    border-color: var(--sunset-orange);
    box-shadow: 0 0 0 0.2rem rgba(241, 102, 28, 0.25);
}

/* Performance optimizations */
.img-fluid {
    height: auto;
    width: 100%;
}

/* Reduce animations on mobile */
@media (max-width: 768px) {
    .card:hover {
        transform: none;
        box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    }
    
    .whatsapp-float {
        width: 3rem;
        height: 3rem;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Remove unnecessary transitions for performance */
.btn {
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

/* Optimize navbar for mobile */
.navbar-nav {
    --bs-nav-link-padding-x: 0.5rem;
    --bs-nav-link-padding-y: 0.5rem;
}

    
/* Footer */
.footer {
    background: var(--dark-brown);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--sunset-orange);
    margin-bottom: 1rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--sunset-orange);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--sunset-orange);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--deep-orange) ;
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.contact-item i {
    color: var(--sunset-orange);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-links a {
    margin: 0 0.5rem;
    font-size: 0.9rem;
}
