/* ===== ACC BRAND COLORS ===== */
:root {
    --peach: #FDA26C;
    --peach-dark: #fd8033;
    --beige: #FFF8C7;
    --willow: #8BCA74;
    --willow-dark: #6bb34e;
    --amethyst: #AF82CA;
    --amethyst-dark: #9b68ba;
}

/* ===== CARD STYLES ===== */
.destination-card, .blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.destination-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ===== PILLAR CARDS ===== */
.pillar-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--peach);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--peach), var(--peach-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pillar-icon i {
    font-size: 2.5rem;
    color: white;
}

.pillar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--amethyst);
}

/* ===== TEAM CARDS ===== */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ===== BADGES ===== */
.badge-primary {
    background-color: var(--peach) !important;
}

.badge-success {
    background-color: var(--willow) !important;
}

.badge-warning {
    background-color: var(--beige-dark) !important;
    color: #5a4a2e !important;
}

.badge-info {
    background-color: var(--amethyst) !important;
}

.category-badge {
    background: #f0f0f0;
    color: var(--amethyst);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.category-badge:hover {
    background: var(--peach);
    color: white;
}

/* ===== COMMENT STYLES ===== */
.comment-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.2s;
}

.comment-card:hover {
    transform: translateX(5px);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--amethyst) 0%, var(--peach) 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    width: 100%;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--beige) !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* ===== ABOUT HEADER ===== */
.about-header {
    background: linear-gradient(135deg, var(--willow) 0%, var(--amethyst) 100%);
    color: white;
    padding: 3rem 0;
    border-radius: 20px;
    margin-bottom: 2rem;
}

/* ===== VALUE BADGES ===== */
.value-badge {
    background: #e8f5e9;
    color: var(--willow-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    margin: 0.5rem;
    display: inline-block;
}

/* ===== DIFFERENCE CARDS ===== */
.difference-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--peach);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.difference-card i {
    font-size: 2.5rem;
    color: var(--peach);
    margin-bottom: 1rem;
}

.difference-card h4 {
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--amethyst);
}

/* ===== AUDIENCE TAGS ===== */
.audience-tag {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.audience-tag:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.audience-tag i {
    font-size: 2rem;
    color: var(--peach);
    margin-bottom: 1rem;
}

/* ===== STAT CARDS ===== */
.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--peach);
    margin-bottom: 0.5rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--amethyst) 0%, var(--peach) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
/* ===== PLAYFUL BACKGROUND VARIATIONS ===== */

/* Solid brand color backgrounds */
.bg-peach { background-color: var(--peach) !important; }
.bg-amethyst { background-color: var(--amethyst) !important; }
.bg-willow { background-color: var(--willow) !important; }
.bg-beige { background-color: var(--beige) !important; }

/* Soft/tinted backgrounds (10% opacity versions) */
.bg-peach-soft { background-color: rgba(253, 162, 108, 0.1) !important; }
.bg-amethyst-soft { background-color: rgba(175, 130, 202, 0.1) !important; }
.bg-willow-soft { background-color: rgba(139, 202, 116, 0.1) !important; }

/* Alternating section backgrounds - use these on full sections */
.section-alt-1 { background: linear-gradient(135deg, rgba(253, 162, 108, 0.08) 0%, rgba(175, 130, 202, 0.08) 100%); }
.section-alt-2 { background: linear-gradient(135deg, rgba(139, 202, 116, 0.08) 0%, rgba(253, 162, 108, 0.08) 100%); }
.section-alt-3 { background: linear-gradient(135deg, rgba(175, 130, 202, 0.08) 0%, rgba(139, 202, 116, 0.08) 100%); }

/* Colorful card borders on hover */
.card-hover-peach:hover { border-color: var(--peach) !important; }
.card-hover-amethyst:hover { border-color: var(--amethyst) !important; }
.card-hover-willow:hover { border-color: var(--willow) !important; }

/* Playful badge dots */
.brand-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}
.dot-peach { background-color: var(--peach); }
.dot-amethyst { background-color: var(--amethyst); }
.dot-willow { background-color: var(--willow); }

/* ===== PLAYFUL BACKGROUND VARIATIONS ===== */

/* Solid brand color backgrounds */
.bg-peach { background-color: var(--peach) !important; }
.bg-amethyst { background-color: var(--amethyst) !important; }
.bg-willow { background-color: var(--willow) !important; }
.bg-beige { background-color: var(--beige) !important; }

/* Soft/tinted backgrounds (10% opacity versions) */
.bg-peach-soft { background-color: rgba(253, 162, 108, 0.1) !important; }
.bg-amethyst-soft { background-color: rgba(175, 130, 202, 0.1) !important; }
.bg-willow-soft { background-color: rgba(139, 202, 116, 0.1) !important; }

/* Alternating section backgrounds */
.section-alt-1 { background: linear-gradient(135deg, rgba(253, 162, 108, 0.08) 0%, rgba(175, 130, 202, 0.08) 100%); }
.section-alt-2 { background: linear-gradient(135deg, rgba(139, 202, 116, 0.08) 0%, rgba(253, 162, 108, 0.08) 100%); }
.section-alt-3 { background: linear-gradient(135deg, rgba(175, 130, 202, 0.08) 0%, rgba(139, 202, 116, 0.08) 100%); }

/* Colorful card borders on hover */
.card-hover-peach:hover { border-color: var(--peach) !important; }
.card-hover-amethyst:hover { border-color: var(--amethyst) !important; }
.card-hover-willow:hover { border-color: var(--willow) !important; }

/* Playful badge dots */
.brand-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}
.dot-peach { background-color: var(--peach); }
.dot-amethyst { background-color: var(--amethyst); }
.dot-willow { background-color: var(--willow); }

/* Rainbow text gradient */
.rainbow-text {
    background: linear-gradient(90deg, var(--peach), var(--amethyst), var(--willow));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Section divider with dots */
.section-divider {
    text-align: center;
    margin: 2rem 0;
}
.section-divider .brand-dot {
    margin: 0 5px;
}

/* Floating shapes */
.floating-shapes {
    position: relative;
    overflow: hidden;
}
.floating-shapes::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(253, 162, 108, 0.08);
    border-radius: 50%;
    z-index: 0;
}
.floating-shapes::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -30px;
    width: 250px;
    height: 250px;
    background: rgba(139, 202, 116, 0.08);
    border-radius: 50%;
    z-index: 0;
}
.floating-shapes .container {
    position: relative;
    z-index: 1;
}
/* ===== OUR PEOPLE PAGE STYLES ===== */

/* Page Header */
.people-header {
    background: linear-gradient(135deg, var(--willow) 0%, var(--amethyst) 100%);
    color: white;
    padding: 4rem 0;
    border-radius: 30px;
    margin-bottom: 3rem;
    text-align: center;
}

.people-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.people-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Team Cards */
.people-team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
}

.people-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-image-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
}

.team-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Partners Section */
.people-partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.people-partner-logo {
    background: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.people-partner-logo:hover {
    transform: translateY(-5px);
}

.people-partner-logo img {
    max-height: 60px;
    width: auto;
}

/* Team Closing Statement */
.people-closing-statement {
    color: var(--amethyst);
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
}

/* CTA Section */
.cta-people-section {
    background: linear-gradient(135deg, var(--amethyst) 0%, var(--peach) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
    border-radius: 30px;
    margin-top: 3rem;
}

.cta-people-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-people-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-people-section .btn-light {
    border-radius: 50px;
    color: var(--amethyst);
    font-weight: 600;
    padding: 12px 32px;
    transition: all 0.3s ease;
}

.cta-people-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-people-section .btn-outline-light {
    border-radius: 50px;
    padding: 12px 32px;
    transition: all 0.3s ease;
}

.cta-people-section .btn-outline-light:hover {
    background: white;
    color: var(--amethyst);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .people-header h1 {
        font-size: 2.2rem;
    }
    
    .people-header p {
        font-size: 1rem;
    }
    
    .cta-people-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-people-section p {
        font-size: 1rem;
    }
    
    .people-partner-logo {
        padding: 0.8rem 1.2rem;
    }
    
    .people-partner-logo img {
        max-height: 40px;
    }
    
    .cta-people-section .btn-light,
    .cta-people-section .btn-outline-light {
        padding: 8px 20px;
        margin-bottom: 10px;
    }
}