body{
    margin:0;
    font-family:Arial, sans-serif;
    background:#f5f5f4;
}

.about-hero{
background:
linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
url("about.avif");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
text-align: center;
padding:80px 20px;
color:white;
}

.about-hero h1{
font-family: 'Playfair Display', serif;
font-size: 60px;
font-style: italic;
font-weight: 600;
letter-spacing: 1px;
}
.underline{
    width:80px;
    height:4px;
    background:#f0c36d;
    margin:auto;
}

.greeting{
font-size:25px;
color: black;
font-weight:600;
margin-top:40px;
margin-bottom:15px;
font-family:'Poppins', sans-serif;
}
/* NAVBAR */
.navbar{
position:absolute;
top:0;
left:0;
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
background:transparent;
z-index:1000;
padding:10px 20px;
}

/* LOGO */

.logo{
display:flex;
align-items:center;
color:white;
font-size:20px;
font-weight:bold;
}

.logo img{
height:40px;
margin-right:10px;
}

/* About Content */

.about-content{
    text-align:center;
    padding:60px 20px;
    max-width:800px;
    margin:auto;
}
.about-content p{
font-family: 'Poppins', sans-serif;
font-size:18px;
color: #1e3636;
line-height:1.8;
margin-bottom:18px;
}
.about-content h2{
font-size:60px;
color:#1f4f5a;
font-family:'Poppins', sans-serif;
font-weight:500;
margin-bottom:10px;
}

.about-content h4{
    color:#4a7c7c;
    margin-bottom:30px;
}

.about-content p{
    line-height:1.7;
    margin-bottom:20px;
}

/* MENU BUTTONS */
 .menu{
    display:flex;
justify-content:center;
gap:20px;
margin-top:50px;
flex-wrap:wrap;
}

.menu a{
padding:12px 28px;
background:#8b7355;
color:white;
text-decoration:none;
font-family: 'poppins', 'sans-serif';
font-size:16px;
border-radius:6px;
transition:0.3s;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.menu a:hover{
background:#6f5a44;
}

/* SOCIAL ICONS */

.social{
margin-top:40px;
}

.social a{
font-size:28px;
margin:15px;
text-decoration:none;
}
.social a:hover{
transform:scale(1.2);
transition:0.3s;
}
.linkedin i{
color:#0077b5;
}

.email i{
color:#d44638;
}

.github i{
color:#000000;
}

/* FOOTER */

footer{
margin-top:60px;
padding:50px 0;
text-align:center;
background:#f1f5f9;
}

/* RESPONSIVE DESIGN */

@media (max-width:768px){

.navbar{
flex-direction:column;
align-items:flex-start;
}

}
