/* body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  margin: 0;
  padding: 0;
} */
body{
font-family:Arial, sans-serif;
margin:0;
padding:0;
background:#f5f5f4;
text-align:center;
color:#1c1917;
}
/* Header Section */

.contact-header{
background: url('contact.webp') no-repeat center/cover;
color:white;
text-align:center;
padding:100px 20px;
}

.contact-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;
}
.contact-container {
  /* max-width: 800px;
  margin: 50px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
    max-width: 800px;
    margin: 25px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}
.contact-container h1{
    font-family:Georgia, serif;
    font-size:26px;
    color:#8b7355;
    font-weight:bold;
    margin-bottom:20px;
}

h1 {
  text-align: center;
  margin-bottom: 10px;
    
}

p {
  /* text-align: center;
  color: #555;
  margin-bottom: 30px; */
  font-family:Georgia, serif;
font-size:16px;
text-align: center;
color:#2f3e46;
font-style:italic;
line-height:1.6;
max-width:800px;
margin:auto;
}

.contact-info {
  text-align: center;
  margin-bottom: 30px;
}

.contact-info a {
  display: inline-block;
  margin: 10px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.contact-info a:hover {
  color: #0073e6;
}

form {
  display: flex;
  flex-direction: column;
}

input, textarea {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #0073e6;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #005bb5;
}
/* 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;
}

}