:root { --primary: #6a0dad; }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Montserrat', sans-serif; }

    header {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 1000;
      background: transparent;
      transition: all 0.4s ease;
    }
    header.scrolled {
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .header-container {
      max-width: 1044px;
      margin: 0 auto;
      padding: 0 20px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.4s ease;
    }
    header.scrolled .header-container {
      height: 55px;
    }
    .logo img {
      width: 200px;
      transition: all 0.4s ease;
      filter: brightness(0) invert(1);
    }
    header.scrolled .logo img {
      filter: none;
    }
    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .main-menu {
      display: flex;
      list-style: none;
      gap: 20px;
      flex: 1;
    }
    .main-menu li {
      position: relative;
    }
    .main-menu li a {
      color: white;
      font-weight: 500;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    header.scrolled .main-menu li a {
      color: var(--primary);
    }
    .search-toggle {
      cursor: pointer;
      font-size: 18px;
      color: white;
      margin-left: 20px;
      flex-shrink: 0;
      transition: color 0.3s ease;
    }
    header.scrolled .search-toggle {
      color: var(--primary);
    }

    .hero {
      height: 100vh;
      background: url('/assets/img/slide1-face.jpg') no-repeat center center / cover;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      position: relative;
    }
    .hero-overlay {
      background: rgba(0,0,0,0.5);
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 20px;
    }
    .hero-content h1 {
      font-size: 60px;
      font-weight: 400;
    }
    .hero-content h1 .bold {
      font-weight: 700;
    }
    .hero-content h2 {
      font-size: 60px;
      font-weight: 700;
      margin-top: 10px;
    }
    .hero-content p {
      margin-top: 20px;
      font-family: 'Raleway', sans-serif;
      font-weight: 300;
      font-size: 1.5rem;
      line-height: 1.6;
    }

    section {
      scroll-margin-top: 75px;
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .fade-in-up {
      opacity: 0;
      animation: fadeInUp 1s ease-out forwards;
    }
#about {
  height: 100vh;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 25px 20px 60px;
  background: #f9f9f9;
  margin-top: -60px;
}
