/* ----------------------------------
   General Styles
---------------------------------- */
body {
  margin: 0;
  font-family: 'Helvetica', sans-serif;
  background-color: white;
  color: black;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* ----------------------------------
   Header
---------------------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: relative;
  z-index: 1001;
}

.logo {
  font-weight: bold;
  font-size: 24px;
  color: #001a72;
}

.menu {
  font-size: 28px;
  cursor: pointer;
  color: #001a72;
}

/* ----------------------------------
   Navigation Menu
---------------------------------- */
nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background-color: white;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
  transition: left 0.3s ease;
  z-index: 1000;
}

nav ul {
  list-style: none;
  padding: 50px 20px;
  margin: 0;
}

nav ul li {
  margin: 20px 0;
}

nav ul li a {
  color: #001a72;
  font-weight: bold;
  font-size: 18px;
}

/* ----------------------------------
   Hero Section
---------------------------------- */
.hero-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-section h1 {
  font-weight: bold;
  color: #001a72;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 800px;
}

.hero-section img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.hero-section .button {
  display: inline-block;
  background-color: #001a72;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  float: right;
  transition: background 0.3s ease;
}

.hero-section .button:hover {
  background-color: #0033a0;
}

/* ----------------------------------
   Content Section (About/Contact/Projects)
---------------------------------- */
.content-section {
  padding: 60px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.content-section h1 {
  font-weight: bold;
  color: #001a72;
  font-size: 36px;
  margin-bottom: 20px;
}

.content-section h2 {
  font-weight: bold;
  color: #001a72;
  font-size: 28px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-section p {
  font-size: 18px;
  color: black;
  margin-bottom: 15px;
}

/* ----------------------------------
   Contact Form
---------------------------------- */
form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

form button {
  background-color: #001a72;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 6px;
  margin-top: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #0033a0;
}

/* ----------------------------------
   Footer
---------------------------------- */
footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px;
  background-color: white;
  border-top: 1px solid #ddd;
}

.footer-left p,
.footer-right p {
  margin: 5px 0;
}

.social-icons {
  margin-top: 10px;
}

.social-icons img {
  width: 24px;
  margin-right: 10px;
}

/* ----------------------------------
   Responsive Design
---------------------------------- */
@media (max-width: 1024px) {
  .hero-section h1 {
    font-size: 40px;
  }
  .hero-section p {
    font-size: 16px;
  }
  .content-section h1 {
    font-size: 32px;
  }
  .content-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  .hero-section {
    padding: 60px 20px;
  }
  .content-section {
    padding: 40px 20px;
  }
  nav {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 28px;
  }
  .content-section h1 {
    font-size: 24px;
  }
  .content-section h2 {
    font-size: 20px;
  }
  .hero-section .button {
    float: none;
    display: block;
    width: 100%;
    text-align: center;
  }
}
