:root {
    --primary-green: #20b2aa;
    --desert-orange: #d2691e;
    --warm-sand: #f4a460;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.hero-section {
    background: linear-gradient(135deg, var(--desert-orange) 0%, var(--warm-sand) 100%);
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.hero-image {
    background: url('/img/slide.webp') center/cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

.nav-link.active {
    color: var(--primary-green) !important;
    border-bottom: 2px solid var(--primary-green);
}

.language-dropdown {
    position: relative;
}

.language-selector {
    background: none;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 8px 15px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    display: none;
    margin-top: 5px;
}

.language-dropdown-menu.show {
    display: block;
}

.language-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 15px;
    gap: 10px;
}

.language-option {
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s;
}

.language-option:hover {
    background-color: #f8f9fa;
}
.language-option a{
    text-decoration: none;
    color: black;
}
.btn-sign-in {
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 500;
}

.btn-sign-in:hover {
    background: #1a9a93;
    color: white;
}

.currency-selector {
    background: none;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 8px 15px;
    color: #333;
    margin-right: 10px;
}

.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}



.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .language-dropdown-menu {
        right: auto;
        left: 0;
        width: 100%;
    }

    .hero-section {
        min-height: 300px;
    }

    .features-section {
        padding: 40px 0;
    }

    .feature-card {
        margin-bottom: 30px;
    }
}
/*** footer **/

.footer-section {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--desert-orange), #8B4513);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    line-height: 1.2;
}

.logo-circle small {
    font-size: 10px;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #cccccc;
}

.contact-item i {
    width: 20px;
    margin-right: 12px;
    color: var(--primary-green);
}

.footer-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.more-link {
    color: var(--primary-green) !important;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: white;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.payment-card {
    background: #ffffff;
    color: #333;
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
}

.payment-card.mastercard {
    background: #eb001b;
    color: white;
}

.payment-card.visa {
    background: #1a1f71;
    color: white;
}

.payment-card.amex {
    background: #006fcf;
    color: white;
}

.payment-card.apple-pay {
    background: #000000;
    color: white;
}

.payment-card.google-pay {
    background: #4285f4;
    color: white;
}

.payment-card.alipay {
    background: #00a0e9;
    color: white;
}

.payment-card.paypal {
    background: #0070ba;
    color: white;
}

.language-currency-footer {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-size: 14px;
    padding: 8px 15px;
    border: 1px solid #555;
    border-radius: 20px;
}

.footer-selector i {
    color: var(--primary-green);
}

.footer-divider {
    border-color: #444;
    margin: 40px 0 20px;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    color: #999;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }

    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .language-currency-footer {
        flex-direction: column;
        gap: 10px;
    }

    .social-links {
        justify-content: center;
    }
}
.hero-cards {
    margin-top: 100px;
    margin-bottom: 60px;
}

.hero-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    color: white;
    text-decoration: none;
}

.hero-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.desert-adventure {
    background: linear-gradient(135deg, #2dd4bf 0%, #f59e0b 100%);
}

.tunisia-history {
    background: linear-gradient(135deg, #7c3aed 0%, #374151 100%);
}

.hero-card h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #333;
}

.popular-activities {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
}

.activity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.activity-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.activity-content {
    padding: 25px;
}

.location-tag {
    display: inline-flex;
    align-items: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.location-tag i {
    margin-right: 5px;
}

.activity-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.stars {
    color: #fbbf24;
    margin-right: 10px;
}

.rating-text {
    color: #6b7280;
    font-size: 0.9rem;
}

.activity-tags {
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.tag.river-cruise {
    background: #3b82f6;
}

.tag.wildlife {
    background: #059669;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
}

.price-label {
    color: #6b7280;
    font-size: 0.9rem;
}

.duration {
    color: #6b7280;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.duration i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .hero-card h2 {
        font-size: 2rem;
    }

    .hero-card p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
