
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: "Inter", "Montserrat Alternates", "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #ffffff;
  color: #000;
}

/* NAVIGATION  */
.navbar {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  font-family: "Inter", sans-serif;
}
#menu-toggle {
  display: none;
}
.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 2000;
  position: relative;
}
.menu-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: rgb(0, 0, 0);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu {
  list-style: none;
  position: fixed;
  top: 0;
  right: -250px;
  height: 100vh;
  width: 250px;
  background: rgba(0, 0, 0, 0.95);
  padding: 100px 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  transition: right 0.3s ease;
  z-index: 1500;
}
.menu li a {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}
.menu li a:hover {
  color: #433843;
}
#menu-toggle:checked ~ .menu {
  right: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
#menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
#menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/*ABOUT SECTION CODING*/

.about-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 120px 8% 80px 8%; 
  gap: 60px;
  min-height: 100vh;
}

.about-photo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-photo img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-text h1 {
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 15px;

}

.about-text .name {
  font-family: "WindSong", cursive;
  font-size: 2.4rem;
  font-weight: 900;
}

.about-text p {
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000000;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn:hover {
  background-color: #292132;
  color: #fff;
}

/* SOCIAL ICONS */
.social-links {
  margin-top: 20px;
}

.social-links a {
  color: #000;
  font-size: 1.4rem;
  margin-right: 12px;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #bbac72;
}


footer {
  text-align: center;
  font-size: 0.8rem;
  padding: 25px 0;
  color: #271d2c;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 100px 5% 60px 5%;
  }

  .about-photo img {
    max-width: 300px;
    margin-bottom: 20px;
  }

  .about-text {
    max-width: 100%;
  }
}
