
/* RESET */
html{
    scroll-behavior: smooth;
  }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 1000;
  border-bottom: 1px solid #222;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #73b8d8;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background: orange;
}

/* ================= ABOUT HERO ================= */
.about-hero {
  margin-top: 80px;
  text-align: center;
  padding: 60px 20px 40px;
  background: #050505;
}

.about-hero h1 {
  font-size: 2.5rem;
  color: #18bb98;
}

.about-hero p {
  color: #aaa;
  margin-top: 10px;
}

/* ================= ABOUT CONTENT ================= */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  gap: 40px;
}

.about-text {
  max-width: 550px;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-text h2 span {
  color: #73b8d8;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #ccc;
}

/* IMAGE */
.about-img img {
  width: 260px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #0b97ce;
  padding: 5px;
  animation: glow 1.2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 10px #0b97ce; }
  to   { box-shadow: 0 0 25px #086386; }
}

/* ================= SKILLS ================= */
.about-skills {
  padding: 60px 40px;
  background: #050505;
  text-align: center;
}

.about-skills h2 {
  margin-bottom: 30px;
  color: #18bb98;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  max-width: 700px;
  margin: auto;
}

.skills-grid span {
  background: #111;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #222;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  border-top: 1px solid #222;
  color: #777;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-img img {
    width: 200px;
    height: 400px;
  }
}

/* ================= LANDSCAPE ================= */
@media screen and (max-width: 900px) and (orientation: landscape) {

  .about-content {
    flex-direction: row;
    padding-top: 40px;
  }

  .about-img img {
    width: 180px;
    height: 400px;
  }
}



