/* --- OSNOVNA PODEŠAVANJA --- */
:root {
  --glass-bg: rgba(
    255,
    255,
    255,
    0.92
  ); /* Malo jača bela za bolju čitljivost */
  --glass-border: rgba(255, 255, 255, 0.5);
  --accent-orange: #d35400;
  --text-dark: #111;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #0b3d41 0%, #0d1a1b 50%, #5d2b15 100%);
  background-attachment: fixed;
  color: white;
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* --- HEADER & NAV --- */
.main-header {
  padding: 15px 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.main-header.scrolled {
  background: rgba(10, 31, 33, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo-icon {
  border: 2px solid white;
  padding: 0 7px;
}

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

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.8;
  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent-orange);
}

/* --- MOBILE MENU --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger {
  width: 30px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

.hamburger::before {
  top: -9px;
}
.hamburger::after {
  top: 9px;
}

.menu-toggle.open .hamburger {
  background: transparent;
}
.menu-toggle.open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.menu-toggle.open .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* --- HERO SEKCIJA --- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.6));
  border-radius: 15px;
  transition: 0.5s;
}

.hero-img:hover {
  transform: scale(1.02);
}

.main-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.subtitle {
  color: var(--accent-orange);
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* --- CONTENT PANEL (GLASSMORPHISM) --- */
.content-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  color: var(--text-dark);
  border-radius: 20px;
  padding: 60px 40px;
  margin-top: -80px;
  margin-bottom: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 30px;
}

/* --- BIOGRAFIJA --- */
.bio-section {
  position: relative;
}

.acab-tag {
  position: absolute;
  top: -15px;
  right: 0;
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
  padding: 2px 10px;
  transform: rotate(12deg);
  background: #fff;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 25px;
  border-bottom: 4px solid var(--accent-orange);
  display: inline-block;
}

.stats-list {
  background: #111;
  color: #fff;
  padding: 25px;
  border-left: 5px solid var(--accent-orange);
  clip-path: polygon(0% 0%, 100% 1%, 99% 99%, 0% 100%);
  margin-bottom: 30px;
  list-style: none;
}

.stats-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.stats-list i {
  color: var(--accent-orange);
}

.drop-cap {
  float: left;
  font-size: 5rem;
  line-height: 0.8;
  font-weight: 900;
  margin-right: 15px;
  color: var(--accent-orange);
}

.bio-text {
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.bio-text strong {
  color: var(--accent-orange);
  text-transform: uppercase;
}

.highlight {
  background: var(--accent-orange);
  color: #fff;
  padding: 0 6px;
  font-weight: 800;
  display: inline-block;
  transform: rotate(-1deg);
}

/* --- KARTICE (DISKOGRAFIJA & TOUR) --- */
.card-label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #666;
}

.card {
  height: 220px;
  border-radius: 15px;
  padding: 25px;
  color: white;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-8px);
}

.bg-gradient-orange {
  background: linear-gradient(45deg, #2c3e50, #d35400);
}
.bg-dark-space {
  background: #000;
  position: relative;
  overflow: hidden;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.status-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 15px;
  border-radius: 10px;
}

.progress {
  width: 85%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 15px #fff;
}

.radar-ping {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: var(--accent-orange);
  border-radius: 50%;
}
.radar-ping::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent-orange);
  border-radius: 50%;
  animation: ping 1.5s infinite;
}

/* --- MEDIA / VIDEO --- */
.media-section {
  grid-column: 1 / -1;
  margin-top: 40px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.video-container {
  background: #000;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.video-container iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}
.video-info {
  padding: 20px;
  background: #fff;
}
.video-info h4 {
  text-transform: uppercase;
  color: #111;
  margin-bottom: 5px;
}

/* --- STREET CONTACT --- */
.street-contact {
  margin-top: 50px;
  grid-column: 1 / -1;
}
.contact-card {
  background: rgba(0, 0, 0, 0.03);
  border: 2px dashed var(--accent-orange);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-item i {
  font-size: 2.5rem;
  color: var(--accent-orange);
}
.contact-item span {
  font-size: 0.7rem;
  font-weight: 800;
  color: #888;
}
.contact-item p {
  font-size: 1.4rem;
  font-weight: 900;
}
.contact-item a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
.contact-item a:hover {
  color: var(--accent-orange);
}

.street-note {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  font-style: italic;
  color: #666;
}

/* --- FOOTER --- */
.panel-footer {
  margin-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.social-links a {
  color: var(--text-dark);
  font-size: 1.8rem;
  margin-right: 20px;
  transition: 0.3s;
}
.social-links a:hover {
  color: var(--accent-orange);
  transform: translateY(-5px);
}
.dev-info p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #888;
}

/* --- ANIMACIJE & RESPONSIVE --- */
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .panel-grid {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-img {
    margin: 0 auto;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 31, 33, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    z-index: 1000;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    margin: 20px 0;
  }
  .nav-links a {
    font-size: 2rem;
  }
  .content-panel {
    padding: 40px 20px;
    margin-top: 20px;
  }
  .panel-footer {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
