/* ==========================================================
   AgileBee - Global Stylesheet
   Website: https://datatheni.github.io/Agilebee/
   ========================================================== */

/* ---------- Reset ---------- */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f5f7fa;
    color:#333;
    line-height:1.7;
}

/* ---------- Links ---------- */

a{
    text-decoration:none;
    transition:0.3s;
}

/* ---------- Header ---------- */

header{
    background:#0d47a1;
    color:#fff;
    text-align:center;
    padding:45px 20px;
}

.logo{
    font-size:58px;
    font-weight:700;
    color:#fff;
}

.logo span{
    color:#f4b400;
}

.tagline{
    margin-top:18px;
    font-size:22px;
    color:#ffffff;
    font-weight:400;
    letter-spacing:.3px;
}

/* ---------- Layout ---------- */

.container{
    width:90%;
    max-width:1150px;
    margin:50px auto;
}

section{
    padding:25px 0;
}

section h2{
    text-align:center;
    color:#0d47a1;
    margin-bottom:35px;
    font-size:34px;
}

/* ---------- About ---------- */

.bio{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.bio h2{
    margin-bottom:25px;
}

.bio p{
    font-size:18px;
    margin-bottom:20px;
}

/* ---------- Buttons ---------- */

.youtube{
    text-align:center;
    margin:45px 0 60px;
}

.youtube a{
    display:inline-block;
    margin:10px;
    padding:14px 28px;
    border-radius:8px;
    color:white;
    font-weight:600;
}

.youtube-btn{
    background:#ff0000;
}

.youtube-btn:hover{
    background:#d80000;
}

.resource-btn{
    background:#0d47a1;
}

.resource-btn:hover{
    background:#0b3a87;
}

.linkedin-btn{
    background:#0077b5;
}

.linkedin-btn:hover{
    background:#005f91;
}

/* ---------- Featured Videos ---------- */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:28px;
}

.card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    transition:0.25s;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.card iframe{
    width:100%;
    height:220px;
    border:none;
}

.card h3{
    padding:18px;
    text-align:center;
    color:#0d47a1;
    font-size:18px;
}

/* ---------- Resources Page ---------- */

.back{
    display:inline-block;
    margin-bottom:25px;
    color:#0d47a1;
    font-weight:bold;
}

.category{
    margin-bottom:55px;
}

.category h2{
    text-align:left;
    margin-bottom:25px;
}

.resource{
    background:white;
    border-radius:10px;
    padding:20px;
    margin-bottom:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.resource-info h3{
    color:#0d47a1;
    margin-bottom:8px;
}

.resource-info p{
    color:#666;
}

.download{
    background:#0d47a1;
    color:white;
    padding:12px 22px;
    border-radius:6px;
    white-space:nowrap;
}

.download:hover{
    background:#0b3a87;
}

.coming{
    background:#f39c12;
    color:white;
    padding:10px 18px;
    border-radius:20px;
    font-size:14px;
    font-weight:bold;
    white-space:nowrap;
}

/* ---------- Future Cards ---------- */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.feature-card{
    background:white;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.feature-card h3{
    color:#0d47a1;
    margin-bottom:15px;
}

/* ---------- Footer ---------- */

footer{
    background:#0d47a1;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:60px;
}

footer p{
    margin:0;
    font-size:15px;
}

/* ---------- Responsive ---------- */

@media(max-width:768px){

    .logo{
        font-size:42px;
    }

    .tagline{
        font-size:18px;
    }

    section h2{
        font-size:28px;
    }

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

    .resource{
        flex-direction:column;
        align-items:flex-start;
    }

    .download,
    .coming{
        width:100%;
        text-align:center;
    }

    .youtube a{
        display:block;
        width:100%;
        margin:12px 0;
    }

    .card iframe{
        height:200px;
    }
}

@media(max-width:480px){

    .logo{
        font-size:34px;
    }

    .tagline{
        font-size:16px;
    }

    .container{
        width:94%;
    }

    section h2{
        font-size:24px;
    }
}
