/*=========================================
    DONORLANE STYLE.CSS
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f8fc;
    color:#1f2937;
    overflow-x:hidden;
}

/*======================
NAVBAR
=======================*/

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:1000;
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.navbar{

    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 60px;
}

.logo{

    display:flex;
    align-items:center;
    gap:15px;

}

.logo-circle{

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#00a8a8,#0d9488);

    color:white;

    font-size:26px;
}

.logo h2{

    color:#0f766e;

}

.logo span{

    color:#666;
    font-size:13px;

}

.nav-links{

    display:flex;
    list-style:none;
    gap:35px;

}

.nav-links a{

    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;

}

.nav-links a:hover{

    color:#0f766e;

}

.nav-buttons{

    display:flex;
    gap:15px;

}

.login-btn{

    padding:12px 28px;

    border:2px solid #0f766e;

    background:transparent;

    border-radius:50px;

    cursor:pointer;

    color:#0f766e;

    transition:.3s;

}

.login-btn:hover{

    background:#0f766e;
    color:white;

}

.donate-btn{

    padding:12px 28px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    color:white;

    background:linear-gradient(135deg,#ef4444,#dc2626);

    transition:.4s;

    box-shadow:0 15px 30px rgba(239,68,68,.3);

}

.donate-btn:hover{

    transform:translateY(-4px);

}

#menuBtn{

    display:none;
    font-size:28px;
    cursor:pointer;

}

/*==========================
SIDEBAR
==========================*/

.sidebar{

    position:fixed;

    top:0;

    right:-320px;

    width:300px;

    height:100vh;

    background:white;

    display:flex;

    flex-direction:column;

    padding:90px 40px;

    transition:.4s;

    box-shadow:-10px 0 40px rgba(0,0,0,.15);

    z-index:1200;

}

.sidebar.active{

    right:0;

}

.sidebar a{

    text-decoration:none;

    color:#333;

    margin:18px 0;

    font-size:18px;

    transition:.3s;

}

.sidebar a:hover{

    color:#ef4444;

}

.closeBtn{

    position:absolute;

    top:25px;

    right:30px;

    font-size:28px;

    cursor:pointer;

}

/*=====================
HERO
======================*/

.hero{

    max-width:1400px;

    margin:auto;

    min-height:100vh;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    padding:130px 60px 80px;

}

.badge{

    display:inline-block;

    background:#d1fae5;

    color:#0f766e;

    padding:10px 22px;

    border-radius:50px;

    margin-bottom:20px;

    font-weight:600;

}

.hero h1{

    font-size:58px;

    line-height:1.2;

    margin-bottom:25px;

}

.hero p{

    font-size:18px;

    color:#555;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.primary{

    padding:18px 35px;

    border:none;

    border-radius:50px;

    cursor:pointer;

    background:#0f766e;

    color:white;

    font-size:16px;

    transition:.3s;

}

.primary:hover{

    transform:translateY(-5px);

}

.secondary{

    padding:18px 35px;

    border-radius:50px;

    cursor:pointer;

    border:2px solid #0f766e;

    background:white;

    color:#0f766e;

    transition:.3s;

}

.secondary:hover{

    background:#0f766e;

    color:white;

}

.hero-stats{

    display:flex;

    gap:60px;

    margin-top:50px;

}

.hero-stats h2{

    color:#ef4444;

    font-size:36px;

}

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.circle{

    position:absolute;

    border-radius:50%;

}

.one{

    width:340px;

    height:340px;

    background:#c7f9f3;

}

.two{

    width:250px;

    height:250px;

    background:#0f766e;

    opacity:.15;

}

.medical-card{

    width:340px;

    background:white;

    padding:40px;

    border-radius:25px;

    position:relative;

    z-index:20;

    text-align:center;

    box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.medical-card i{

    font-size:70px;

    color:#ef4444;

    margin-bottom:20px;

}

/*========================
ORGANS
========================*/

.organs{

    max-width:1400px;

    margin:auto;

    padding:80px 60px;

}

.title{

    text-align:center;

    margin-bottom:50px;

}

.title h2{

    font-size:42px;

    color:#0f766e;

}

.title p{

    color:#666;

    margin-top:10px;

}

.organ-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    background:white;

    padding:40px;

    text-align:center;

    border-radius:25px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-12px);

}

.icon{

    font-size:55px;

    margin-bottom:20px;

}

.card h3{

    margin-bottom:15px;

    color:#0f766e;

}

.card p{

    color:#666;

    line-height:1.7;

    margin-bottom:25px;

}

.card button{

    border:none;

    padding:13px 30px;

    border-radius:50px;

    background:#ef4444;

    color:white;

    cursor:pointer;

    transition:.3s;

}

.card button:hover{

    background:#dc2626;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

flex-wrap:wrap;

}

.nav-links{

display:none;

}

#menuBtn{

display:block;

}

.navbar{

padding:18px 25px;

}

.organs{

padding:70px 25px;

}

}

@media(max-width:768px){

.hero h1{

font-size:40px;

}

.logo span{

display:none;

}

.nav-buttons{

display:none;

}

.hero{

padding:120px 25px 60px;

}


}

/*==============================
FOOTER
===============================*/

.footer{

    background:#0f172a;

    color:#fff;

    margin-top:100px;

}

.footer-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

    padding:70px 50px;

}

.footer-box h3{

    margin-bottom:25px;

    color:#fff;

    font-size:22px;

}

.footer-box p{

    color:#cbd5e1;

    line-height:1.8;

    margin-bottom:15px;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:15px;

}

.footer-box ul li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#14b8a6;

    padding-left:8px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.footer-logo h2{

    color:#fff;

}

.footer-logo span{

    color:#94a3b8;

    font-size:13px;

}

.socials{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.socials a{

    width:45px;

    height:45px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:white;

    background:#1e293b;

    transition:.35s;

    font-size:18px;

}

.socials a:hover{

    background:#ef4444;

    transform:translateY(-6px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    padding:25px;

    color:#94a3b8;

}