@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

:root {
  --bg-main: #000;
  --bg-alt: #050505;
  --bg-card: #101010;
  --text-muted: #b3b3b3;
  --border-soft: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 0 40px rgba(0, 0, 0, 0.8);
}

.noise-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.08;
  background-image: #000;
  background-size: cover;
  mix-blend-mode: screen;
  z-index: 1;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0));
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.logo-mark {
  padding: 6px 12px;
  border: 1px solid var(--border-soft);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.top-nav nav a {
  margin-left: 24px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  position: relative;
}

.top-nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.top-nav nav a:hover {
  color: #fff;
}

.top-nav nav a:hover::after {
  width: 100%;
}

.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
  background: radial-gradient(circle at top left, #222 0, #000 45%, #000 100%);
  overflow: hidden;
}

.hero-overlay-grid {
  position: absolute;
  inset: -100px;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.18;
  animation: gridMove 22s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate3d(0,0,0); }
  100% { transform: translate3d(-80px,-80px,0); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 720px;
}

.hero-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-logo-glitch {
  margin-top: 22px;
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  animation: glitch 2.8s infinite alternate;
}

.hero-logo-glitch::before,
.hero-logo-glitch::after {
  content: "Above The Hood";
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.6;
}

.hero-logo-glitch::before {
  transform: translate3d(-2px, -1px, 0);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 50%);
}

.hero-logo-glitch::after {
  transform: translate3d(2px, 1px, 0);
  clip-path: polygon(0 50%, 100% 45%, 100% 100%, 0 100%);
}

@keyframes glitch {
  0%, 20% { transform: translate3d(0,0,0); }
  21% { transform: translate3d(-2px, 1px, 0); }
  22% { transform: translate3d(3px, -2px, 0); }
  23%, 100% { transform: translate3d(0,0,0); }
}

.hero-sub {
  margin-top: 20px;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  padding: 14px 30px;
  font-size: 0.85rem;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255,255,255,0.16);
}

.scroll-indicator {
  position: absolute;
  right: 2%;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.7));
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: #fff;
  animation: scrollDot 1.4s linear infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(60px); opacity: 0; }
}

.section {
  padding: 96px 10%;
  position: relative;
  z-index: 2;
}

.section:nth-of-type(odd) {
  background: var(--bg-main);
}

.section:nth-of-type(even) {
  background: var(--bg-alt);
}

.section-header {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-header h2 {
  font-size: 2.3rem;
  margin-top: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-header p {
  color: var(--text-muted);
}

.section-grid .members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.card {
  background: var(--bg-card);
  border-radius: 18px;
  padding: 18px 18px 22px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transform: translateY(12px);
  opacity: 0;
  animation: cardIn 0.9s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.card::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at top, rgba(255,255,255,0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover::before {
  opacity: 1;
}

.card-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 14px;
}

.card img {
  width: 100%;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  transform: scale(1.03);
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.08);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.discography {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.album {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.album-art {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.album-border {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.28);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

.album img {
  width: 100%;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.album:hover img {
  transform: scale(1.08) rotate(-0.5deg);
}

.album-meta h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.album-year {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.album-meta p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.section-manifesto {
  background: radial-gradient(circle at top, #141414 0, #000 50%);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.manifesto-text p {
  margin-top: 10px;
  color: var(--text-muted);
}

.manifesto-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.block {
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  padding: 20px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(0,0,0,0.9));
  box-shadow: 0 0 25px rgba(0,0,0,0.85);
  animation: pulseBlock 3.5s ease-in-out infinite;
}

.block:nth-child(2) { animation-delay: 0.5s; }
.block:nth-child(3) { animation-delay: 1s; }

@keyframes pulseBlock {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-4px); opacity: 0.9; }
}

.section-contact {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-form {
  max-width: 520px;
  margin-top: 20px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: #050505;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255,255,255,0.5);
}

footer {
  padding: 32px 10%;
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .top-nav {
    display: none;
  }

  .top-nav nav a {
    margin-left: 14px;
    font-size: 0.7rem;
  }

  .hero-inner {
    text-align: left;
  }

  .hero-logo-glitch {
    font-size: 2.4rem;
    letter-spacing: 0.18em;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-indicator {
    right: 100%;
    left: 80%;
    transform: translateX(-50%);
    bottom: 30px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
  }
}


.section-merch .merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.merch-item h3 {
  margin-top: 12px;
  text-transform: uppercase;
  font-size: 1rem;
}

.merch-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.merch-img img {
  width: 100%;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  transition: transform 0.6s ease;
}

.merch-item:hover img {
  transform: scale(1.06);
}

.price {
  margin-top: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.hero video.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.45; /* άλλαξε το όπως θες */
}
