/* ===================================================
   HOST PAGE STYLES
   Extends styles.css – do not duplicate base variables
   =================================================== */

/* --- Host Hero --- */
.host-hero {
    min-height: 100vh;
    background: var(--cream);
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
}

.host-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 10;
}

.host-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.host-hero-text { animation: slideUp 1s ease-out; }

/* --- City Visual Block (right side of hero) --- */
.host-hero-visual {
    animation: fadeInScale 1.2s ease-out 0.3s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.host-city-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    border: 1px solid rgba(12, 61, 102, 0.12);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    width: 100%;
    box-shadow: 0 8px 40px rgba(12, 61, 102, 0.07);
}

.host-city-icon {
    width: 80px;
    height: 80px;
    background: var(--navy);
    color: var(--cream);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.host-city-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.host-city-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate);
}

.host-city-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2rem;
    color: var(--navy);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1;
}

/* --- Stats Row --- */
.host-stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    border: 1px solid rgba(12, 61, 102, 0.12);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    width: 100%;
    box-shadow: 0 8px 40px rgba(12, 61, 102, 0.07);
}

.host-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}

.host-stat-number {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.6rem;
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
}

.host-stat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate);
    text-align: center;
}

.host-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(12, 61, 102, 0.12);
    flex-shrink: 0;
}

/* --- Host Profile Section --- */
.host-profile {
    padding: 8rem 2rem;
    background: var(--cream);
}

.host-profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.host-profile-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Optional WhatsApp community button in the hero */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}
/* Give the hero buttons a uniform width so they align as a clean stack */
@media (min-width: 641px) {
    .host-hero .cta-group .btn-primary,
    .host-hero .cta-group .btn-secondary,
    .host-hero .cta-group .btn-whatsapp {
        min-width: 320px;
        justify-content: center;
    }
}

/* --- Hosts row (up to 3 host cards) --- */
.hosts-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.host-card {
    background: white;
    border: 1px solid rgba(12, 61, 102, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    width: 320px;
    max-width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.host-card:hover {
    box-shadow: 0 20px 50px rgba(12, 61, 102, 0.12);
    border-color: rgba(12, 61, 102, 0.2);
    transform: translateY(-4px);
}

.host-avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--electric));
    color: var(--cream);
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 0.02em;
}

.host-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(12, 61, 102, 0.12);
    flex-shrink: 0;
}

.host-avatar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.host-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.8rem;
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
}

.host-title {
    font-size: 1rem;
    color: var(--slate);
    font-weight: 500;
    line-height: 1.5;
}

.host-location {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.host-linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.8rem;
    background: var(--navy);
    color: var(--cream);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.host-linkedin-btn:hover {
    background: var(--electric);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 61, 102, 0.3);
}

.host-linkedin-icon {
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 0.1rem 0.4rem;
}

/* --- Bio Card (right) --- */
.host-bio-card {
    background: white;
    border: 1px solid rgba(12, 61, 102, 0.1);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.host-bio-card:hover {
    box-shadow: 0 20px 50px rgba(12, 61, 102, 0.12);
    border-color: rgba(12, 61, 102, 0.2);
}

.host-bio-block .section-label {
    display: block;
    margin-bottom: 2rem;
}

.host-bio-text {
    color: var(--slate);
    font-size: 1.1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.host-bio-text:last-child { margin-bottom: 0; }

/* Shared bio card sits full-width below the host cards */
.host-profile-container > .host-bio-card {
    max-width: 820px;
    margin: 3.5rem auto 0;
    text-align: center;
}
.host-profile-container > .host-bio-card .host-bio-text { text-align: left; }

/* --- Company Section (subtle) --- */
.host-company {
    padding: 3rem 2rem;
    background: var(--cream);
    border-top: 1px solid rgba(12, 61, 102, 0.08);
}

.host-company-container {
    max-width: 1200px;
    margin: 0 auto;
}

.host-company-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: white;
    border: 1px solid rgba(12, 61, 102, 0.1);
    border-radius: 16px;
    padding: 2.5rem 3rem;
}

.host-company-inner + .host-company-inner { margin-top: 1.5rem; }

.host-company-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.host-company-text .section-label {
    margin-bottom: 0.3rem;
}

.host-company-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.4rem;
    color: var(--navy);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.host-company-description {
    font-size: 1rem;
    color: var(--slate);
    line-height: 1.6;
    max-width: 560px;
}

.host-company-link {
    flex-shrink: 0;
    white-space: nowrap;
}

/* --- Responsive: Tablet --- */
@media (max-width: 1024px) {
    .host-hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .host-hero-text .hero-description { margin: 0 auto 3rem; }
    .host-hero-text .cta-group { justify-content: center; }
    .host-city-badge-wrapper { justify-content: center; }

    .host-profile-grid {
        grid-template-columns: 1fr;
    }

    .host-profile-card {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .host-company-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

/* --- Responsive: Mobile --- */
@media (max-width: 640px) {
    .host-hero,
    .host-profile {
        padding: 4rem 1.5rem;
    }

    .host-company {
        padding: 2rem 1.5rem;
    }

    .host-city-badge-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .host-stats-row {
        gap: 1rem;
        padding: 1.5rem;
    }

    .host-stat-number { font-size: 1.2rem; }

    .host-bio-card { padding: 2rem; }
    .host-profile-card { padding: 2rem; }

    .host-city-name { font-size: 1.5rem; }

    .host-avatar {
        width: 90px;
        height: 90px;
    }

    .host-name { font-size: 1.4rem; }

    .host-company-inner {
        padding: 2rem;
    }
}
