:root {
    --primary: #0d6efd;
    --secondary: #20c997;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.tagline {
    font-size: 0.9rem;
    color: var(--secondary);
}

.logo-placeholder {
    width: 40px;
    height: 40px;
    background-color: #000;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.logo-placeholder i {
    color: white;
    font-size: 1.2rem;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, #0a58ca 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.package-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.package-header {
    background-color: var(--primary);
    color: white;
    padding: 1rem;
}

.country-card {
    border-left: 4px solid var(--secondary);
    transition: all 0.3s ease;
}

.country-card:hover {
    background-color: rgba(32, 201, 151, 0.05);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.region-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.back-to-home {
    margin-bottom: 2rem;
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

/* Hero Image Styling */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.03);
}

/* Responsive sizing for your 600px image */
@media (min-width: 1200px) {
    .hero-image {
        max-width: 500px; /* Slightly smaller for large screens */
    }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .hero-image {
        max-width: 450px; /* Fit well on desktop */
    }
}

@media (max-width: 991.98px) and (min-width: 768px) {
    .hero-image {
        max-width: 400px; /* Tablet size */
    }
}

@media (max-width: 767.98px) {
    .hero-image {
        max-width: 300px; /* Mobile size */
        margin: 0 auto 2rem;
    }
    
    /* Stack image above text on mobile */
    .hero-section .row {
        flex-direction: column-reverse;
    }
}

/* Section Dividers */
.section-divider {
    height: 10px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 3rem 0;
    border: none;
    opacity: 0.7;
}



