:root {
  --bg-1: #2a2000;
  --bg-2: #000000;
  --text: #fff9e6;
  --muted: #d9c873;
  --accent: #ffd700;
  --accent-2: #ffea70;
  --card: #3b2f00;
  --card-2: #ffffff;
  --shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, Cantarell, 'Noto Sans', sans-serif;
  background: var(--bg-1);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Background with animated stars */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at top, var(--bg-2) 0%, var(--bg-1) 100%);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(2px 2px at 20px 30px, var(--accent), transparent),
    radial-gradient(2px 2px at 40px 70px, var(--accent-2), transparent),
    radial-gradient(1px 1px at 90px 40px, var(--accent), transparent),
    radial-gradient(1px 1px at 130px 80px, var(--accent-2), transparent),
    radial-gradient(2px 2px at 160px 30px, var(--accent), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: stars 20s linear infinite;
  opacity: 0.3;
  z-index: -1;
}

@keyframes stars {
  from { transform: translateY(0px); }
  to { transform: translateY(-100px); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-top: -10px;
  margin-bottom: 50px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  padding: 0 15px;
  line-height: 1,8;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.logo-accent {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(15px, 3vw, 30px);
}

.nav-link {
  color: #888888;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.nav-link.active,
.nav-link:hover {
  color: white;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: #888888;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: slideInLeft 1s ease-out;
}

.greeting {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 15px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-quote {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-social.small {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-social.small a {
  background: var(--accent);
  color: #000000;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.hero-social.small a:hover {
  background: var(--accent-2);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.hero-social.small span {
  color: var(--muted);
  font-weight: 500;
}

/* Avatar and Solar System */
.hero-visual {
  display: flex;
  justify-content: center;
  animation: slideInRight 1s ease-out;
}

.avatar-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun-core {
  width: clamp(120px, 20vw, 168px);
  height: clamp(120px, 20vw, 168px);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid #FFD700;
  box-shadow:
    0 0 40px rgba(255, 215, 0, 0.8),
    0 0 80px rgba(255, 215, 0, 0.5),
    0 0 120px rgba(255, 215, 0, 0.3),
    inset 0 0 30px rgba(255, 215, 0, 0.4);
  animation: sunGlow 3s ease-in-out infinite alternate;
  cursor: pointer;
  transition: transform 0.3s ease;
  overflow: hidden;
  z-index: 10;
}

.sun-core img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.sun-core:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.orbit-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.tech-icon {
  position: absolute;
  width: clamp(35px, 6vw, 50px);
  height: clamp(35px, 6vw, 50px);
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6px, 1.5vw, 8px);
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.tech-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tech-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  border-color: var(--accent-2);
}

.orbit-item {
  animation: orbit 20s linear infinite;
}

.orbit-item[data-orbit="1"] {
  animation-delay: 0s;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.orbit-item[data-orbit="2"] {
  animation-delay: -3.33s;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.orbit-item[data-orbit="3"] {
  animation-delay: -6.66s;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.orbit-item[data-orbit="4"] {
  animation-delay: -10s;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.orbit-item[data-orbit="5"] {
  animation-delay: -13.33s;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.orbit-item[data-orbit="6"] {
  animation-delay: -16.66s;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(clamp(150px, 25vw, 180px)) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(clamp(150px, 25vw, 180px)) rotate(-360deg);
  }
}

@keyframes sunGlow {
  0% {
    box-shadow:
      0 0 40px rgba(255, 215, 0, 0.8),
      0 0 80px rgba(255, 215, 0, 0.5),
      0 0 120px rgba(255, 215, 0, 0.3),
      inset 0 0 30px rgba(255, 215, 0, 0.4);
  }
  100% {
    box-shadow:
      0 0 50px rgba(255, 215, 0, 1),
      0 0 100px rgba(255, 215, 0, 0.7),
      0 0 150px rgba(255, 215, 0, 0.4),
      inset 0 0 40px rgba(255, 215, 0, 0.6);
  }
}

.sun-core:hover ~ .orbit-icons .orbit-item {
  animation-play-state: paused;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* BUTTONS */
.btn {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}

.glow-genz-button {
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 12px;
  color: var(--accent);
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  padding: clamp(10px, 2vw, 12px) clamp(24px, 4vw, 36px);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.glow-genz-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--accent), var(--accent-2), #FF7F7F, #FF3838);
  background-size: 400% 400%;
  animation: glowGradient 4s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-genz-button:hover {
  color: white;
  border-color: var(--accent-2);
  box-shadow: 0 0 25px rgba(255, 252, 56, 0.6), 0 0 50px rgba(255, 92, 92, 0.4);
  transform: scale(1.05);
}

.glow-genz-button:hover::before {
  opacity: 1;
}

@keyframes glowGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.outline-button {
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 12px;
  color: #000000;
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  padding: clamp(10px, 2vw, 12px) clamp(24px, 4vw, 36px);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.outline-button:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ABOUT SECTION */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

.skills {
  margin-top: 30px;
}

.skills h3 {
  color: var(--text);
  margin-bottom: 20px;
  font-size: clamp(1.1rem, 2vw, 1.2rem);
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: rgba(255, 252, 56, 0.1);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
  border: 1px solid rgba(255, 248, 56, 0.3);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: var(--accent);
  color: #000000;
  transform: scale(1.05);
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.code-animation {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 252, 56, 0.3);
  border-radius: 12px;
  padding: clamp(20px, 3vw, 30px);
  font-family: 'Courier New', monospace;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: #d4d4d4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
}

.code-line {
  margin-bottom: 8px;
  word-break: break-word;
}

.code-line.indent {
  margin-left: clamp(15px, 3vw, 20px);
}

.code-keyword {
  color: #569cd6;
}

.code-class {
  color: #4ec9b0;
}

.code-string {
  color: #ce9178;
}

/* PROJECTS SECTION */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.project-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 235, 56, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 248, 56, 0.2);
  border-color: var(--accent);
}

.project-image {
  width: 100%;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-content h3 {
  color: var(--text);
  margin-bottom: 15px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.project-content p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  flex: 1;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.project-tech span {
  background: rgba(255, 228, 56, 0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: clamp(0.75rem, 1.3vw, 0.8rem);
  border: 1px solid rgba(255, 252, 56, 0.3);
}

.project-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.project-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
}

.project-link:hover {
  background: var(--accent);
  color: #000000;
}

/* CONTACT SECTION */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  text-align: center;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  justify-content: center;
}

.contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item span {
  font-weight: 500;
  word-break: break-word;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-2);
}

.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links.small {
  align-items: center;
}

.social-links.small a {
  background: var(--accent);
  color: #000000;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.85rem, 1.5vw, 0.9rem);
}

.social-links.small a:hover {
  background: var(--accent-2);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.social-links.small span {
  color: var(--muted);
}

.contact-form {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 252, 56, 0.2);
  border-radius: 12px;
  padding: clamp(25px, 4vw, 30px);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 238, 56, 0.3);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(255, 242, 56, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ANIMATIONS */
.slide-in-left {
  transform: translateX(-30px);
  opacity: 0;
  transition: all 1.5s ease;
}

.slide-in-right {
  transform: translateX(30px);
  opacity: 0;
  transition: all 1.5s ease;
}

.slide-in-up {
  transform: translateY(30px);
  opacity: 0;
  transition: all 1.5s ease;
}

/* RESPONSIVE BREAKPOINTS */

/* Large tablets and small laptops (1024px and below) */
@media (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-social.small {
    justify-content: center;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .code-animation {
    max-width: 100%;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 252, 56, 0.1);
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: 15px;
    font-size: 1.1rem;
  }

  .nav-social {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .hero-content {
    gap: 40px;
  }

  .avatar-container {
    max-width: 350px;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  @keyframes orbit {
    0% {
      transform: rotate(0deg) translateX(130px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(130px) rotate(-360deg);
    }
  }

  .about-content,
  .contact-content {
    gap: 40px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

    #projects .section-title {
      margin-top: 40px;
      margin-bottom: 65px; /* Mais espaço em mobile */
  }

    #projects .section-subtitle {
    margin-top: -15px;
    line-height: 1.8; /* Melhora o espaçamento entre linhas */
  }
}


/* Mobile devices (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section {
    padding: 40px 0;
  }

  .nav-container {
    padding: 12px 15px;
  }

  .hero {
    padding: 90px 0 40px;
  }

  .hero-content {
    gap: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .avatar-container {
    max-width: 280px;
  }

  @keyframes orbit {
    0% {
      transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
  }

  .skills-grid {
    justify-content: center;
  }

  .code-animation {
    padding: 15px;
  }

  .projects-grid {
    gap: 20px;
    margin-top: 20px;
  }

  .project-content {
    padding: 20px;
  }

  .project-links {
    flex-direction: column;
  }

  .project-link {
    text-align: center;
  }

  .contact-form {
    padding: 20px;
  }

  .social-links {
    justify-content: center;
  }

  #projects .section-title {
    margin-top: 50px;
    margin-bottom: 70px; /* Ainda mais espaço em telas muito pequenas */
  }

  #projects .section-subtitle {
    margin-top: -10px;
    padding: 0 25px; /* Mais padding nas laterais */
    line-height: 1.9;
  }
}

/* Extra small devices (360px and below) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .glow-genz-button,
  .outline-button {
    font-size: 0.85rem;
    padding: 10px 20px;
    letter-spacing: 1px;
  }

  .avatar-container {
    max-width: 240px;
  }

  @keyframes orbit {
    0% {
      transform: rotate(0deg) translateX(85px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(85px) rotate(-360deg);
    }
  }

  .tech-icon {
    width: 30px;
    height: 30px;
  }

  .section-title {
    margin-bottom: 30px;
  }
}

/* Landscape orientation for mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 0 40px;
  }

  .nav-menu {
    height: auto;
    max-height: calc(100vh - 68px);
  }
}