/* Aidev - Personal Site */

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  background: #000;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* ========== SIDEBAR ========== */
.sidebar {
  position: fixed;
  left: 40px;
  top: 40px;
  width: 60px;
  z-index: 100;
}

.logo {
  width: 50px;
  height: 50px;
  display: block;
}

.logo img {
  width: 100%;
  height: auto;
}

.sidebar-links {
  margin-top: 30px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.sidebar-links a {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}

.sidebar-links a:hover {
  opacity: 0.5;
}

/* ========== HERO ========== */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-title {
  font-family: 'Iceland', sans-serif;
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin-bottom: 20px;
  color: #fff;
}

/* ========== FOOTER ========== */
.footer {
  position: fixed;
  bottom: 40px;
  left: 40px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  line-height: 1.8;
}

.footer a {
  color: #999;
  text-decoration: none;
  display: block;
}

.footer a:hover {
  opacity: 0.5;
}

.footer span {
  display: block;
}

/* ========== MOBILE ========== */
@media (max-width: 900px) {
  .sidebar {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .sidebar-links {
    writing-mode: horizontal-tb;
    transform: none;
    margin-top: 20px;
  }
  
  .sidebar-links a {
    display: inline-block;
    margin: 0 15px;
  }
  
  .logo {
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: clamp(48px, 14vw, 80px);
  }
  
  .footer {
    position: relative;
    bottom: auto;
    left: auto;
    text-align: center;
    margin-top: 40px;
    padding: 20px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  
  .container {
    padding: 40px 15px;
  }
}
