/* =====================================================
   SCVDRI FOUNDING PATRONS PROFILE STYLESHEET
   File: founding-patrons/style.css
===================================================== */

:root{
    --primary:#0b4ea2;
    --primary-dark:#073a79;
    --secondary:#0f172a;
    --light:#f4f7fb;
    --white:#ffffff;
    --text:#333333;
    --border:#dbe4f0;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--text);
    line-height:1.9;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* CONTAINER */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =====================================================
   HERO
===================================================== */

.hero{
    background:
    linear-gradient(rgba(5,23,52,.82),rgba(5,23,52,.82)),
    url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;

    padding:100px 20px;
    color:#fff;
}

.hero-content{
    max-width:900px;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 18px;
    border-radius:50px;
    margin-bottom:25px;
    font-size:14px;
    letter-spacing:.5px;
}

.hero h1{
    font-size:56px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:800;
}

.hero p{
    font-size:20px;
    max-width:900px;
    color: #fff;
}

/* =====================================================
   PROFILE SECTION
===================================================== */

.profile-section{
    padding:80px 0;
}

.profile-grid{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:50px;
    align-items:start;
}

/* =====================================================
   PROFILE CARD
===================================================== */

.profile-card{
    background:var(--white);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:sticky;
    top:30px;
}

.profile-image{
    width:100%;
    height:420px;
    object-fit:cover;
    object-position:top center;
    background:#eef2f7;
}

.profile-info{
    padding:30px;
}

.profile-info h2{
    color:var(--secondary);
    font-size:28px;
    line-height:1.4;
    margin-bottom:10px;
}

.profile-info p{
    color:#666;
    margin-bottom:18px;
}

.badge{
    display:inline-block;
    background:#edf4ff;
    color:var(--primary);
    padding:10px 16px;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
}

/* =====================================================
   CONTENT CARD
===================================================== */

.content-card{
    background:var(--white);
    border-radius:24px;
    padding:45px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.section-title{
    font-size:34px;
    color:var(--primary);
    margin-bottom:25px;
    line-height:1.3;
    font-weight:700;
}

.content-card p{
    margin-bottom:24px;
    font-size:17px;
    color:#444;
}

/* =====================================================
   AFFILIATIONS
===================================================== */

.affiliations{
    margin-top:40px;
}

.affiliations ul{
    list-style:none;
}

.affiliations li{
    background:#f8fbff;
    border:1px solid var(--border);
    padding:18px 20px;
    border-radius:14px;
    margin-bottom:15px;
    font-weight:500;
}

/* =====================================================
   QUOTE BOX
===================================================== */

.quote-box{
    margin-top:45px;
    background:linear-gradient(135deg,#0b4ea2,#073a79);
    color:#fff;
    padding:40px;
    border-radius:24px;
    position:relative;
    overflow:hidden;
}

.quote-box::before{
    content:'“';
    position:absolute;
    top:10px;
    left:25px;
    font-size:90px;
    opacity:.15;
    line-height:1;
}

.quote-box blockquote{
    font-size:22px;
    line-height:1.8;
    font-weight:500;
    position:relative;
    z-index:2;
}

.quote-author{
    margin-top:25px;
    font-weight:600;
    font-size:16px;
    position:relative;
    z-index:2;
}

/* =====================================================
   CTA BUTTON
===================================================== */

.cta{
    margin-top:50px;
    text-align:center;
}

.cta a{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:16px 34px;
    border-radius:50px;
    font-weight:600;
    transition:.3s ease;
}

.cta a:hover{
    background:var(--primary-dark);
    transform:translateY(-3px);
}

/* =====================================================
   FOOTER
===================================================== */

footer{
    background:#08152e;
    color:#d9e2f0;
    text-align:center;
    padding:30px 20px;
    margin-top:80px;
}

/* =====================================================
   ANIMATIONS
===================================================== */

.profile-card,
.content-card,
.quote-box{
    transition:.3s ease;
}

.profile-card:hover,
.content-card:hover{
    transform:translateY(-3px);
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media(max-width:900px){

    .hero{
        padding:80px 20px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:18px;
    }

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

    .profile-card{
        position:relative;
        top:0;
    }

    .content-card{
        padding:30px 25px;
    }

    .section-title{
        font-size:28px;
    }

    .quote-box{
        padding:30px 25px;
    }

    .quote-box blockquote{
        font-size:18px;
    }

}

@media(max-width:600px){

    .hero h1{
        font-size:32px;
    }

    .hero p{
        font-size:16px;
    }

    .profile-image{
        height:350px;
    }

    .profile-info{
        padding:25px;
    }

    .profile-info h2{
        font-size:24px;
    }

    .content-card{
        padding:25px 20px;
    }

    .content-card p{
        font-size:16px;
    }

    .quote-box blockquote{
        font-size:17px;
        line-height:1.7;
    }

    .cta a{
        width:100%;
        text-align:center;
    }

}