/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 22 2025 | 11:00:49 */
/* ==========================================================================
   AVANGARDE TOURISM – FINAL USER-FRIENDLY CSS
   ========================================================================== */

/* ==========================================================================
   1. NAV MENU (Fixed + Hover Effects)
   ========================================================================== */
.ekit-navbar-nav {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 30px !important; /* spațiu egal între itemi */
}

.ekit-navbar-nav > li {
    white-space: nowrap !important;
    position: relative !important;
}

/* Linkuri meniului */
.ekit-navbar-nav > li > a {
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 10px 5px !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
}

/* Hover color + underline animat */
.ekit-navbar-nav > li > a::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 0% !important;
    height: 2px !important;
    background: #ff6b35 !important;
    transition: width 0.3s ease !important;
}

.ekit-navbar-nav > li > a:hover {
    color: #ff6b35 !important;
}

.ekit-navbar-nav > li > a:hover::after {
    width: 100% !important;
}

/* ==========================================================================
   2. TOUR PACKAGE CARDS (Hover Effects)
   ========================================================================== */
.tour-package {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.35s ease !important;
    background: #fff !important;
}

/* Hover – ridicare + shadow mai mare */
.tour-package:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2) !important;
}

/* Hover – imagine zoom ușor */
.tour-package img {
    transition: transform 0.5s ease !important;
}

.tour-package:hover img {
    transform: scale(1.05) !important;
}

/* ==========================================================================
   3. BUTTONS (CTA & Book Now)
   ========================================================================== */
.cta-button,
.book-now-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 14px 28px !important;
    border-radius: 30px !important;
    border: none !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
    cursor: pointer !important;
}

/* Hover cu glow */
.cta-button:hover,
.book-now-btn:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6),
                0 0 12px rgba(118, 75, 162, 0.6) !important;
    color: #fff !important;
}

/* ==========================================================================
   4. PRICES
   ========================================================================== */
.price {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #e74c3c !important;
}

.price::after {
    content: " €" !important;
    font-size: 0.9em !important;
    opacity: 0.8 !important;
}

/* ==========================================================================
   5. GLOBAL LINKS (Smooth Hover)
   ========================================================================== */
a {
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    color: inherit !important;
}

a:hover {
    text-decoration: none !important;
    transform: translateY(-1px) !important;
}

/* Tourism-specific links */
a.tour-link {
    color: #2c5aa0 !important;
}

a.tour-link:hover {
    color: #ff6b35 !important;
}

/* ==========================================================================
   6. RESPONSIVE FIXES
   ========================================================================== */
@media (max-width: 768px) {
    .ekit-navbar-nav {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .tour-package {
        margin-bottom: 2rem !important;
    }

    .price {
        font-size: 1.25rem !important;
    }
}

@media (max-width: 480px) {
    .cta-button,
    .book-now-btn {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
    }
}

/* ==========================================================================
   7. ACCESSIBILITY
   ========================================================================== */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid #667eea !important;
    outline-offset: 2px !important;
}
