@import url("./vendor/normalize.css");

/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #0402a3;
  line-height: 1.6;
}

.container {
  width: 80%;
  margin: 0 auto;
}

/* Header */
header {
  background: #0402a3;
  color: white;
  padding: 25px 0;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  margin: 0;
}

header p {
  font-size: 1.5rem;
}

.btn {
  background: #3498db;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  display: inline-block;
}

/* header .container .btn {
  margin-top: 20px;
} */

.btn:hover {
  background: #2980b9;
}

/* Sections */
.section {
  padding: 25px 0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.project {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.project img {
  width: 600px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.project-info {
  max-width: 500px;
  padding-left: 20px;
}

.project-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.project-info p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Contact Form */
/* form {
  display: flex;
  flex-direction: column;
}

form input,
form textarea {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

form button {
  background: #3498db;
  color: white;
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: #2980b9;
}

.message {
  margin-top: 15px;
  font-size: 1rem;
  color: #27ae60;
} */

/* Footer */
footer {
  background: #0402a3;
  color: white;
  text-align: center;
  padding: 20px;
}

footer p {
  font-size: 1rem;
}

.social-buttons {
  text-align: center;
}

.social-buttons a {
  margin: 0 10px;
  color: white; /* Default icon color */
  text-decoration: none; /* Remove underline from links */
  font-size: 30px; /* Icon size */
  transition: color 0.3s ease; /* Smooth color change on hover */
}

/* Hover effects for each icon */
.social-buttons a.fa-envelope:hover {
  color: #c71610; /* Email red */
}

.social-buttons a.fa-github:hover {
  color: #333; /* GitHub black */
}

.social-buttons a.fa-linkedin:hover {
  color: #007bb5; /* LinkedIn blue */
}

.social-buttons a.fa-twitter:hover {
  color: #55acee; /* Twitter blue */
}

/* Media Queries for responsiveness */

/* Tablet and smaller devices */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }

  header p {
    font-size: 1.2rem;
  }

  .btn {
    padding: 8px 16px;
  }

  .project {
    flex-direction: column;
    align-items: center;
  }

  .project img {
    width: 80%;
    margin-bottom: 20px;
  }

  .project-info {
    max-width: 80%;
    padding-left: 0;
  }

  .container {
    width: 90%;
  }

  section {
    padding: 40px 0;
  }

  form input,
  form textarea {
    font-size: 0.9rem;
  }

  form button {
    font-size: 1rem;
    padding: 10px;
  }
}

/* Mobile view */
@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .project img {
    width: 100%;
    margin-bottom: 15px;
  }

  .project-info {
    width: 100%;
    padding-left: 0;
  }

  .container {
    width: 95%;
  }

  .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  form input,
  form textarea {
    font-size: 0.9rem;
    padding: 8px;
  }

  form button {
    font-size: 1rem;
    padding: 10px;
  }

  footer p {
    font-size: 0.8rem;
  }
}
