/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #000000;
  --color-bg-alt: #0a0a0a;
  --color-surface: #111111;
  --color-surface-light: #1a1a1a;
  --color-green: #2d5a27;
  --color-green-light: #3a7a32;
  --color-green-bright: #4CAF50;
  --color-white: #ffffff;
  --color-gray: #888888;
  --color-gray-light: #cccccc;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --nav-height: 60px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 24px;
  left: 50px;
  right: 50px;
  z-index: 1000;
  background: transparent;
  backdrop-filter: invert(1) blur(12px);
  -webkit-backdrop-filter: invert(1) blur(12px);
  border-radius: 8px;
  transition: all 0.3s ease;
  user-select: none;
}

.navbar.scrolled {
  top: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 12px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #000000;
}

.logo-accent {
  color: #333333;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: #000000;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  line-height: 64px;
}

.nav-links li a::after {
  display: none;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #000000;
  opacity: 0.7;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.hero-bg-img img {
  width: 70%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: calc(100dvh - 64px);
  min-height: 436px;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
  position: relative;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}

.hero-logo {
  min-width: 50%;
  max-width: 480px;
  margin-left: auto;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.88;
  letter-spacing: -1px;
  text-align: right;
}

.title-line {
  display: block;
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.title-line.accent {
  font-size: clamp(3.5rem, 8vw, 8.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 4px;
}

.scramble-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.scramble-text {
  font-family: monospace;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 30px;
  letter-spacing: 1px;
  min-height: 1.5em;
  text-align: right;
}

.scramble-text .scramble-char {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SERVICES ROW
   ============================================ */
.services-row {
  position: absolute;
  top: 0;
  z-index: 200;
  display: flex;
  width: 100%;
  height: 64px;
  background: #000;
}

.service-btn {
  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.333%;
  height: 64px;
  opacity: 1 !important;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid #333333;
  border-radius: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* ============================================
   PHONE FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  animation: pulseWhite 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  margin-top: 2px;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .nav-container {
    padding: 0 12px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .title-line {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
  }

  .title-line.accent {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
  }

  .service-btn {
    font-size: 14px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 50px;
  }

  .navbar {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #000;
  }

  .nav-container {
    height: 50px;
  }

  .logo-text {
    color: #ffffff;
  }

  .logo-accent {
    color: rgba(255, 255, 255, 0.7);
  }

  /* Mobile nav */
  .hamburger {
    display: flex;
  }

  .hamburger span {
    background: #ffffff;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li a {
    color: #ffffff;
    line-height: normal;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 14px 0;
    font-size: 1.2rem;
  }

  /* Mobile hero */
  .hero {
    height: 100vh;
    height: 100dvh;
  }

  .hero-bg-img img {
    width: 100%;
    object-position: 30% center;
  }

  .hero-content {
    height: calc(100dvh - 50px);
    padding: 0 16px;
  }

  .hero-logo {
    min-width: 70%;
    max-width: 100%;
  }

  .title-line {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
  }

  .title-line.accent {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
    letter-spacing: 3px;
  }

  .scramble-text {
    font-size: 0.8rem;
    margin-top: 16px;
  }

  /* Mobile services */
  .services-row {
    gap: 4px;
    height: 64px;
  }

  .service-btn {
    font-size: 12px;
    letter-spacing: 0;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .title-line {
    font-size: clamp(2.2rem, 16vw, 4rem);
  }

  .title-line.accent {
    font-size: clamp(2.2rem, 16vw, 4rem);
    letter-spacing: 4px;
  }
}

/* ============================================
   NEW SECTIONS (PORTFOLIO, ABOUT, CONTACT)
   ============================================ */
.services-row {
  position: relative !important;
  margin-top: -64px;
}

.section {
  padding: 100px 24px;
  background-color: var(--color-bg);
  position: relative;
  z-index: 10;
}

.section:nth-child(even) {
  background-color: var(--color-bg-alt);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 2px;
}

.section-title .accent {
  color: rgba(255, 255, 255, 0.5);
}

/* Portfolio */
.portfolio-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.artist-row {
  display: flex;
  background: var(--color-bg);
  border: 1px solid #333;
  min-height: 500px;
}

.artist-image {
  flex: 0 0 45%;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: #222;
}

.artist-content {
  flex: 0 0 55%;
  padding: 50px;
  display: flex;
  flex-direction: column;
}

.artist-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.artist-name {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1;
}

.artist-badge {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: right;
}

.badge-text {
  font-size: 0.85rem;
  line-height: 1.2;
  color: var(--color-white);
}

.badge-text strong {
  font-weight: 700;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  color: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.artist-desc {
  font-size: 0.95rem;
  color: var(--color-gray-light);
  line-height: 1.6;
  margin-bottom: 40px;
  flex-grow: 1;
}

.artist-desc p {
  margin-bottom: 15px;
}

.artist-desc p:last-child {
  margin-bottom: 0;
}

.artist-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}

.artist-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--color-gray);
}

.artist-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.artist-logo .logo-text {
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 1px;
}

.artist-logo .logo-accent {
  color: var(--color-white);
}

.artist-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--color-gray);
}

/* About */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-gray-light);
}

.about-content p {
  margin-bottom: 20px;
}

/* Contact */
.contact-content {
  display: flex;
  justify-content: center;
  text-align: center;
}

.contact-item h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-item p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-item a {
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--color-gray);
}

@media (max-width: 768px) {
  .section {
    padding: 60px 16px;
  }
  
  .artist-row {
    flex-direction: column;
  }

  .artist-image {
    height: 300px;
    flex: none;
  }

  .artist-content {
    padding: 30px 20px;
  }

  .artist-header {
    flex-direction: column;
    gap: 20px;
  }

  .artist-name {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  .artist-badge {
    align-self: flex-start;
    text-align: left;
    flex-direction: row-reverse;
  }

  .artist-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .artist-logo {
    align-items: flex-start;
  }
}
