/* ============================================
   BLOODLINE PERSONA STYLES
   Shared styling for all BloodLine member pages
   ============================================ */

/* Hero Section */
.founder-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 30%, rgba(139, 26, 26, 0.12) 0%, transparent 60%),
        #0a0a0b;
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 2rem;
    position: relative;
}

.founder-hero-inner {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.founder-sigil {
    width: 350px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 0 30px rgba(139, 26, 26, 0.5));
}

.founder-mark {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: #8b1a1a;
    margin-bottom: 1rem;
}

.founder-name {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    letter-spacing: 0.15em;
    color: #d4cdc4;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.founder-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #8a8d93;
    line-height: 1.6;
}

/* Content Sections */
.founder-section {
    max-width: 900px;
    margin: 0 auto 1rem;
}

.founder-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #c4c8d0;
    margin-bottom: 1.5rem;
}

.founder-traits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.founder-traits li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 2;
    color: #c4c8d0;
    padding-left: 2rem;
    position: relative;
}

.founder-traits li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #8b1a1a;
}

.founder-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #d4cdc4;
    text-align: center;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 2px solid #8b1a1a;
    border-right: 2px solid #8b1a1a;
}

/* Sponsorship Section */
.founder-sponsorship-box {
    background: rgba(20, 20, 22, 0.5);
    border: 1px solid rgba(138, 141, 147, 0.15);
    padding: 2.5rem;
    margin: 2rem 0;
}

.founder-sponsorship-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c4c8d0;
    margin-bottom: 1.5rem;
}

.founder-sponsorship-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid #8a8d93;
    background: transparent;
    color: #c4c8d0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn:hover {
    border-color: #8b1a1a;
    background: rgba(139, 26, 26, 0.1);
    color: #d4cdc4;
}

/* Stream Schedule Section */
.founder-schedule {
    background: rgba(139, 26, 26, 0.05);
    border: 1px solid rgba(139, 26, 26, 0.2);
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.schedule-day {
    text-align: center;
}

.schedule-day-name {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: #8b1a1a;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.schedule-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #c4c8d0;
}

/* Connect/Social Links Section */
.founder-connect {
    text-align: center;
}

.platform-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #c4c8d0;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 4px;
    min-width: 100px;
}

.platform-link:hover {
    color: #8b1a1a;
    background: rgba(139, 26, 26, 0.05);
    transform: translateY(-2px);
}

.platform-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 26, 26, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.platform-link:hover .platform-icon {
    background: rgba(139, 26, 26, 0.2);
}

.platform-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}
