body{
margin:0;
font-family:'Poppins', sans-serif;
}

/* Header Section */

.resume-header{
background: url('resume.jpg') no-repeat center/cover;
color:white;
text-align:center;
padding:100px 20px;
}

.resume-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;
}

.resume-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.resume-section h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.resume-container {
    display: flex;
    justify-content: center;
}

.resume-frame {
    width: 80%;
    height: 1000px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Side black spaces */

.side-space{
width:200px;
height:600px;
background:#1a1a1a;
}

/* PDF Viewer */

.resume-pdf{
width:700px;
height:600px;
border:none;
box-shadow:0 0 10px rgba(0,0,0,0.2);
}

/* 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;
}

}