/* === GLOBAL === */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0E0D0C;
  color: #8A7964;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* === HEADER === */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background-color: #0E0D0C;
  border-bottom: 1px solid #3C362D;
}

.logo-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
}

.logo.small {
  width: 42px;
  height: 42px;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

.header-name {
  font-size: 1.5rem;
  color: #FF5C1B;
  font-weight: bold;
  line-height: 1;
  margin: 0;
}

.nav-menu {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.nav-button {
  color: #4E4436;
  background-color: #1E1C1A;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  pointer-events: none;
  cursor: default;
  position: relative;
}

.nav-button:hover::after {
  content: attr(title);
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #FF5C1B;
  color: #0E0D0C;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  white-space: nowrap;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

/* === HERO + LAYOUT === */
.container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.hero {
  text-align: center;
  max-width: 600px;
}

.logo {
  width: 200px;
  margin-bottom: 2rem;
}

.title {
  font-size: 3rem;
  color: #FF5C1B;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  color: #4E4436;
  margin-bottom: 2rem;
}

.cta {
  background-color: #FF5C1B;
  color: #0E0D0C;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.cta:hover {
  background-color: #e65017;
}

/* === FOOTER === */
.footer {
  background-color: #0E0D0C;
  text-align: center;
  padding: 1rem;
  color: #3C362D;
  font-size: 0.9rem;
  border-top: 1px solid #3C362D;
}

/* === ABOUT SECTION === */
.about {
  background-color: #141312;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  border-top: 1px solid #3C362D;
  border-bottom: 1px solid #3C362D;
}

.about-inner {
  max-width: 800px;
  width: 100%;
  color: #8A7964;
  font-size: 1.1rem;
  line-height: 1.75;
  background-color: #1a1816;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-logo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  margin-bottom: 1rem;
  display: block;
  border-radius: 50%;
  box-shadow: 0 0 12px #FF5C1B;
}

.about-name {
  font-size: 2.4rem;
  font-weight: bold;
  color: #FF5C1B;
  margin-bottom: 2rem;
  text-align: center;
}

.about-box {
  background-color: #1f1d1b;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #3C362D;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
  width: 100%;
}

.about-box h2 {
  font-size: 1.75rem;
  color: #FF5C1B;
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-box p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Lighter header container */
.site-header {
  background-color: #181715;
  padding: 1rem 2rem;
  border-bottom: 1px solid #3C362D;
}

.header-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1rem;
    overflow: hidden;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}
@media (max-width: 600px) {
  .about-box p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .about-inner {
    padding: 2rem 1rem;
  }

  .about-box {
    padding: 1.5rem 1rem;
  }
}
.skills-page {
  background-color: #141312;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
}

.skills-inner {
  max-width: 900px;
  width: 100%;
  color: #8A7964;
  font-size: 1.05rem;
  line-height: 1.7;
}

.skills-logo {
  width: 140px;
  height: 140px;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 50%;
  box-shadow: 0 0 12px #FF5C1B;
  object-fit: cover;
}

.skills-title {
  text-align: center;
  font-size: 2.5rem;
  color: #FF5C1B;
  margin-bottom: 3rem;
}

.skill-category {
  margin-bottom: 2.5rem;
}

.skill-category h2 {
  color: #FF5C1B;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #3C362D;
  padding-bottom: 0.5rem;
}

.skill-category ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.skill-category li {
  margin-bottom: 0.5rem;
}

.nav-button:not(.disabled) {
  background-color: #FF5C1B;
  color: #0E0D0C;
  pointer-events: auto;
  cursor: pointer;
  transition: background-color 0.3s;
}

.nav-button:not(.disabled):hover {
  background-color: #e65017;
}
.logo-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-name:hover {
  opacity: 0.85;
  text-decoration: none;
}
a {
  text-decoration: none;
}
a.logo-name {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

a.logo-name:hover {
  opacity: 0.9;
}