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

/* --- Background --- */
body {
    background: url("../src/aboutbg.png") no-repeat center center/cover;
    height: 100vh;
    color: white;
    position: relative;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  z-index: 1000;
  background-color: transparent;
}

.logo-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #46266B;
  transition: opacity 0.3s ease;
}

.logo-link:hover {
  opacity: 0.6;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background-color: #252526;
  transition: all 0.3s ease;
}

.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-list a {
  font-size: 14px;
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s ease;
}

.nav-list a:hover {
  opacity: 0.6;
}

/* --- Main Content --- */
.content {
    position: relative;
    display: flex;
    height: calc(100vh - 150px);
    padding-left: 60px;
    padding-top: 230px;
}

/* text block */
.text-block {
    width: 40%;
    line-height: 1.7;
    font-size: 16px;
    z-index: 2;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 20px 30px;
  z-index: 1000;
  background-color: transparent
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.6;
}

.copyright {
  color: #666;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    top: 60px;
    right: -100%;
    flex-direction: column;
    background-color: #f9f8f3;
    padding: 30px;
    gap: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    min-width: 200px;
  }

  .nav-list.active {
    right: 0;
  }

  /* text block */
.text-block {
    width: 90%;
    padding-top: 10px;
    line-height: 1.7;
    font-size: 16px;
    z-index: 2;
}

body {
    height: 150vh;
}

}