@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

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

html, body {
  height: 100%;
  background: #0d0b0c;
  font-family: 'Orbitron', sans-serif;
  color: #e6e6e6;
  text-align: center;
  overflow: hidden;
}

.main-container {
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #0d0b0c, #1c1a1c);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
}

header h1 {
  font-size: 3rem;
  color: #ff9933;
  margin-bottom: 30px;
}

.profile-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  gap: 40px;
  flex-wrap: wrap;
}

.about {
  flex: 1;
  text-align: left;
  max-width: 460px;
  padding: 0 10px;
}

.about h2 {
  font-size: 2rem;
  color: #ff9933;
  margin-bottom: 20px;
  border-bottom: 2px solid #ff9933;
  display: inline-block;
  padding-bottom: 5px;
}

.about p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}

.hero-image img {
  max-width: 340px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 153, 51, 0.5);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
}

.social-buttons {
  margin: 10px 0 5px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.icon-btn {
  background: #ff9933;
  color: #000;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-btn i {
  font-size: 1.2rem;
}

.icon-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

footer {
  font-size: 0.9rem;
  color: #aaa;
}

.square-btn-container {
  margin-top: 20px;
}

.square-btn {
  display: inline-block;
  background-color: #ff9933;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.square-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 153, 51, 0.5);
}

/* New Left-side Vertical Buttons */
.social-sidebar {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
}

.social-sidebar .icon-btn {
  background: #ff9933;
  color: #000;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-sidebar .icon-btn i {
  font-size: 1.2rem;
}

.social-sidebar .icon-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.square-btn-container {
  margin-top: 5px; /* reduce from 20px to 5px */
}
@media (max-width: 768px) {
  html, body {
    overflow: auto;
    padding: 0 10px;
  }

  .main-container {
    padding: 20px 10px;
    justify-content: flex-start;
    height: auto;
  }

  header h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .profile-row {
    flex-direction: column;
    gap: 30px;
  }

  .about {
    text-align: center;
    padding: 0;
  }

  .about h2 {
    font-size: 1.6rem;
  }

  .about p {
    font-size: 0.95rem;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  .social-sidebar {
    display: none; /* hide vertical sidebar on mobile */
  }

  .social-buttons {
    gap: 10px;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .square-btn {
    width: 100%;
    max-width: 300px;
  }
}
