body{
margin:0;
font-family:'Poppins', sans-serif;
}

/* Header Section */

.project-header{
background: url('project.webp') no-repeat center/cover;
color:white;
text-align:center;
padding:100px 20px;
}

.project-header h1{
font-family: 'Playfair Display', serif;
font-size: 60px;
font-style: italic;
font-weight: 600;
letter-spacing: 1px;
}

.line{
width:80px;
height:4px;
background:#e6b85c;
margin:10px auto;
}
.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;
}

.project-section {
    text-align: center;
    padding: 50px 20px;
    background: #f5f5f5;
}

.project-section h1 {
    font-size: 42px;
    margin-bottom: 30px;
}

.project-card {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.project-card h2 {
    font-family:Georgia, serif;
    font-size:26px;
    color:#8b7355;
    font-weight:bold;
    margin-bottom:20px;
}

.date {
    color: #2f3e46;
    margin-bottom: 15px;
}

.description {
    font-family:Georgia, serif;
    font-size:16px;
    color:#2f3e46;
    font-style:italic;
}

.btn {
    display: inline-block;
    margin-bottom: 25px;
    padding: 10px 25px;
    background: #8b7355;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.project-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
/* 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;
}

}