* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #EEEEFF;
  color: #220901;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  font-family: 'Sigmar One', sans-serif;
  font-size: 20px;
}

nav .logo h1 {
  font-size: 32px;
  color: #3454D1;
}

.logo a {
  text-decoration: none;
  color: #3454D1;
}

nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

nav ul li a {
  color: #220901;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, transform 0.2s ease;
}

nav ul li a:hover {
  color: #06D6A0;
  transform: translateY(-2px);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #06D6A0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.menu-bar {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  min-height: 80vh;
  margin-top: 40px;
}

.heroContent {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.heroContent h3 {
    font-family: 'Sigmar One';
    font-size: 40px;
    color: #43cb0c;
}

.heroContent h2 {
  font-size: 56px;
  color: #220901;
  font-family: 'Sigmar One', sans-serif;
}

.heroContent span {
  color: #ED1C24;
  font-family: 'Kalam', cursive;
  font-size: 60px;
}

.heroContent p {
  font-size: 22px;
  color: #220901;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.btn {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#cv {
  background-color: #3454D1;
  color: #FFFFFF;
}

#cv:hover {
  background-color: #2A43A8;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

#contact {
  color: #FFFFFF;
  background-color: #06A75D;
}

#contact:hover {
  background-color: #058C4B;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.heroImg {
  flex: 1;
  text-align: center;
}

.heroImg img {
  max-width: 450px;
  width: 100%;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(52, 84, 209, 0.2);
}

.aboutContainer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 50px;
  margin-top: 80px;
  padding: 40px 0;
  background-color: #EEEEFF;
}

.aboutOne {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aboutOne h2 {
  font-size: 2.5rem;
  color: #3454D1;
}

.about-img {
  flex: 1;
  text-align: center;
}

.about-img img {
  max-width: 450px;
  width: 100%;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-height: 400px;
}

.contact {
  padding: 80px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #3454D1;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid #3454D1;
  background: #FFFFFF;
  color: #220901;
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #06D6A0;
  box-shadow: 0 0 10px rgba(6, 214, 160, 0.2);
  outline: none;
}

#send {
  background-color: #3454D1;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  padding: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#send:hover {
  background-color: #2A43A8;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

footer {
  margin-top: 80px;
  padding: 30px 0;
  text-align: center;
  background-color: #EEEEFF;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
}

.socials img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.socials a:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

footer .copyright p {
  font-size: 16px;
  color: #220901;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .heroContent h2 {
    font-size: 42px;
  }

  .heroContent span {
    font-size: 48px;
  }

  .heroContent p {
    font-size: 18px;
  }

  .aboutContainer {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .menu-bar {
    display: block;
  }

  .navLinks ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    width: 200px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  }

  .navLinks ul li {
    margin: 10px 0;
  }
}

