/* Continent Page Styles */
.continent-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
    padding: 100px 0 80px;
    color: white;
}

.continent-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.continent-breadcrumb {
    margin-bottom: 30px;
    opacity: 0.8;
}

.continent-breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
}

.continent-breadcrumb span {
    margin: 0 10px;
    opacity: 0.6;
}

.continent-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.continent-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
}

.countries-grid {
    padding: 80px 0;
    background: var(--gray-100);
}

.countries-grid .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.country-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-200);
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.country-flag {
    width: 96px;
    height: 72px;
    margin: 0 auto 22px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-navy);
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(43,57,144,.16);
    border: 3px solid var(--white);
    outline: 1px solid var(--gray-200);
}
.country-flag img { width: 100%; height: 100%; object-fit: cover; }

.country-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.country-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.btn-country {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.btn-country:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
    color: white;
    text-decoration: none;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-gold);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

    .continent-hero {
        padding: 80px 0 60px;
    }

    .countries-grid {
        padding: 60px 0;
    }

    .country-card {
        margin-bottom: 30px;
    }
}
