/*=========================================
HOSTELSPHERE - DEVELOPER PAGE
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f4f8fc;
    color:#333;
}

/*================ HEADER ================*/

header{
    background:#0d6efd;
    color:#fff;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

header h1{
    font-size:28px;
}

header nav a{
    color:#fff;
    text-decoration:none;
    margin-left:25px;
    font-weight:600;
    transition:.3s;
}

header nav a:hover{
    color:#ffd54f;
}

/*================ DEVELOPER SECTION ================*/

.developer-container{

    width:90%;
    max-width:1200px;

    margin:60px auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:60px;

    flex-wrap:wrap;

}

.developer-image{

    flex:1;

    text-align:center;

}

.developer-image img{

    width:100%;
    max-width:320px;

    border-radius:50%;

    border:8px solid #fff;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.developer-content{

    flex:2;

}

.developer-content h2{

    color:#0d6efd;

    font-size:42px;

    margin-bottom:10px;

}

.developer-content h3{

    font-size:28px;

    color:#222;

    margin-bottom:20px;

}

.developer-content p{

    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:20px;

}

/*================ INFORMATION BOXES ================*/

.info-grid{

    width:90%;
    max-width:1200px;

    margin:40px auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.info-card{

    background:#fff;

    padding:30px;

    border-radius:15px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.info-card:hover{

    transform:translateY(-8px);

}

.info-card i{

    font-size:45px;

    color:#0d6efd;

    margin-bottom:15px;

}

.info-card h3{

    margin-bottom:12px;

}

.info-card p{

    color:#666;

    line-height:1.8;

}

/*================ CONTACT LINKS ================*/

.social{

    text-align:center;

    margin:50px 0;

}

.social h2{

    color:#0d6efd;

    margin-bottom:25px;

}

.social a{

    display:inline-block;

    width:55px;

    height:55px;

    line-height:55px;

    margin:0 12px;

    border-radius:50%;

    background:#0d6efd;

    color:#fff;

    font-size:24px;

    transition:.3s;

}

.social a:hover{

    background:#084298;

    transform:translateY(-5px);

}

/*================ BUTTON ================*/

.btn{

    display:inline-block;

    margin-top:25px;

    background:#0d6efd;

    color:#fff;

    text-decoration:none;

    padding:12px 30px;

    border-radius:8px;

    transition:.3s;

}

.btn:hover{

    background:#084298;

}

/*================ FOOTER ================*/

footer{

    background:#0d6efd;

    color:#fff;

    text-align:center;

    padding:25px;

    margin-top:60px;

}

footer p{

    margin:8px 0;

}

/*================ RESPONSIVE ================*/

@media(max-width:768px){

.developer-container{

    flex-direction:column;

    text-align:center;

}

.developer-image img{

    max-width:240px;

}

.developer-content h2{

    font-size:34px;

}

header{

    flex-direction:column;

    gap:15px;

}

header nav a{

    margin:0 10px;

}

.social a{

    margin:10px;

}

}