:root {
  --aged-brass: #b8924e;
  --off-white: #f5f1e8;
  --charcoal: #1c1c1c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- SIDEBAR --- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 80px;
  background-color: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
  z-index: 1000;
}

.sidebar.closed {
  transform: translateX(-100%);
}


.nav-icons {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 60%;
  width: 100%;
}

.nav-link {
  color: var(--off-white);
  font-size: 1.6rem;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--aged-brass);
  transform: scale(1.2);
}


.toggle-btn {
  position: fixed;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  background-color: var(--charcoal);
  border: 2px solid var(--aged-brass);
  color: var(--off-white);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 1100;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background-color: var(--aged-brass);
  color: #000;
}


.sidebar.closed ~ .toggle-btn {
  left: 10px;
}

.sidebar.closed ~ .toggle-btn i {
  transform: rotate(180deg);
}


.hero-section {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  background-image: url("images/Tattoo_heroImg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-left: 80px;
  transition: padding-left 0.4s ease;
}

.sidebar.closed ~ .hero-section {
  padding-left: 0;
}

.hero-content {
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--off-white);
  letter-spacing: 8px;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
  
}

.hero-subtitle {
  font-size: clamp(1.8rem, 3vw, 1.9rem);
  color: var(--off-white);
  font-weight: 600;
  letter-spacing: 3px;
  font-style: italic;
  text-orientation: upright;
}


.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .sidebar {
    width: 60px;
  }
  .toggle-btn {
    left: 60px;
  }
  .sidebar.closed ~ .toggle-btn {
    left: 10px;
  }
  .hero-section {
    padding-left: 60px;
  }
  
}

@media (max-width: 1000px) {
.hero-section p{
    display: none;
  }
}


.hero-tagline {
  position: absolute;
  right: 60px;
  top:12%;
  writing-mode: vertical-rl;
  transform-origin: right center;
  color: var(--aged-brass);
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-style: italic;
  opacity: 0.8;
  white-space: nowrap;
  text-orientation: upright;
}


@media (max-width: 768px) {
  .hero-tagline {
    right: 10px;
    font-size: 0.8rem;
    letter-spacing: 2px;
  }
}
