/* css/packages.css */
.packages-content-wrapper {
    background-color: #f9f9f9;
    padding: 64px 5%;
}

.packages-container {
    max-width: 1300px;
    margin: 0 auto;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eaeaea;
}

.category-filter .filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #666;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.category-filter .filter-btn:hover {
    color: var(--theme-green);
    background: rgba(44, 62, 32, 0.05);
}

.category-filter .filter-btn.is-active {
    background: var(--theme-green);
    color: #ffffff;
    border-color: var(--theme-green);
    box-shadow: 0 4px 12px rgba(44, 62, 32, 0.2);
}

.category-filter .filter-icon {
    display: flex;
    align-items: center;
    color: inherit;
}

.category-filter .filter-icon {
    display: flex;
    align-items: center;
    color: inherit;
    font-size: 14px;
}

.packages-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
    padding: 7rem 2rem 5rem 2rem;
    text-align: center;
    margin-bottom: 0;
}

.packages-hero .eyebrow {
    color: var(--theme-orange, #F37021);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.packages-hero h1 {
    color: #ffffff;
    font-size: 3.5rem;
    max-width: 1200px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.2;
    font-family: var(--font-heading, serif);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.packages-hero .subtitle {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.15rem;
    color: #f0f0f0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

.custom-safari-cta {
    text-align: center;
    margin-top: 80px;
}

.custom-safari-cta .primary-button {
    display: inline-block;
    background-color: var(--theme-green, #2c3e20);
    color: #fff;
    padding: 16px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.custom-safari-cta .primary-button:hover {
    background-color: var(--theme-orange, #F37021);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.packages-empty {
    text-align: center;
    background: #ffffff;
    padding: 80px 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 32px;
}

.packages-empty p {
    font-size: 19px;
    color: #111;
    margin-bottom: 32px;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--theme-orange, #F37021);
    border: 2px solid var(--theme-orange, #F37021);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--theme-orange, #F37021);
    color: #fff;
}


.destination-rich-description {
    max-width: 1300px;
    margin: 0 auto 64px auto;
    background: #ffffff;
    padding: 56px 64px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    color: #111;
    line-height: 1.8;
    font-size: 18px;
}

.destination-rich-description h2, 
.destination-rich-description h3, 
.destination-rich-description h4 {
    color: var(--theme-green);
    margin-top: 32px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    text-align: left;
}

.destination-rich-description p {
    margin-bottom: 24px;
    color: #111;
}

.destination-rich-description ul,
.destination-rich-description ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.destination-rich-description li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .destination-rich-description {
        padding: 32px;
    }
}
