/* ==== Fonts ==== */
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins-v21-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('fonts/poppins-v21-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==== Global ==== */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: #f7f7f7;
  line-height: 1.6;
  max-width: 100vw;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}

/* ==== Hero ==== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #000), url('img/havoc-hero-bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero .overlay {
  z-index: 2;
  padding: 2rem;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #b80000;
  margin: 0.5rem 0;
  position: relative;
  display: inline-block;
  cursor: default;
}
.hero h1::before,
.hero h1::after {
  color: #fca311;
  font-weight: 700;
}
.hero h1::before {
  content: "[ ";
  margin-right: 0.25rem;
}
.hero h1::after {
  content: " ]";
  margin-left: 0.25rem;
}
.hero .subtitle {
  font-size: 1.2rem;
  color: #fca311;
}
.quote {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fca311;
}
.logo {
  max-width: 160px;
  margin: 0 auto 1rem;
}

/* ==== General Section Style ==== */
section:not(#artworks):not(.about):not(.connect):not(.feetrecords) {
  padding: 4rem 2rem;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #161616, #1e1e1e);
  background-blend-mode: overlay;
}
section > *:not(.video-wrapper) {
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  section > *:not(.video-wrapper) {
    max-width: 80%;
  }
}

/* ==== Headings ==== */
h2, h3, h4, h5, h6 {
  font-size: 2rem;
  color: #fca311;
  margin-bottom: 1rem;
  text-align: center;
}
.portrait {
  border-radius: 1rem;
  width: 100%;
  max-width: 300px;
  margin: 1rem auto;
  display: block;
}

/* ==== Links ==== */
a:link,
a:visited {
  color: #fca311;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #b80000;
}

/* ==== About ==== */
.about {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
              url('img/havoc-content-bg.jpg') center center / cover no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #111;
  color: #f7f7f7;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}


/* ==== Gallery ==== */
#artworks.gallery {
  min-height: 100vh;
  height: auto;
  max-width: 1920px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background: linear-gradient(-45deg, #0a0a0a, #3f0d3c, #b80000, #1a1a1a);
  background-size: 400% 400%;
  animation: cyberpunkShift 20s ease infinite;
}
@keyframes cyberpunkShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.lightbox-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1280px;
  justify-content: center;
  align-items: start;
  padding-bottom: 2rem;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.05);
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 0, 100, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(255, 70, 180, 0.6);
}
@media (max-width: 768px) {
  .lightbox-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item img {
    height: auto;
  }
}

/* ==== FeetRecords ==== */
.feetrecords {
  background: linear-gradient(to bottom, #141414, #0f0f0f);
  color: #f7f7f7;
  width: 100%;
  padding: 4rem 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ==== Connect ==== */
.connect {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}
.connect .video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.connect .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.4);
  pointer-events: none;
}
.connect-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.connect-content > * {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.connect-content h2,
.connect-content p,
.connect-content a {
  margin-bottom: 1.5rem;
}
.connect-content .button {
  background-color: #b80000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}
.connect-content .button:hover {
  background-color: #fca311;
  color: #111;
}

/* ==== Button Group ==== */
.button {
  display: inline-block;
  background-color: #b80000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  margin-top: 1rem !important;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s;
}
.button:hover {
  background-color: #fca311;
  color: #111;
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem;
  margin-top: 1rem !important;
}
.button-group .button {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .button-group .button {
    width: 100%;
    max-width: 320px;
    word-wrap: break-word;
    text-align: center;
  }
}

/* ==== Footer ==== */
footer {
  width: 100%;
  padding: 2rem;
  background-color: #000;
  color: #888;
  font-size: 0.875rem;
  text-align: center;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subtitle {
    display: block;
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

