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

.cinematic-text {
  font-weight: 100;
  letter-spacing: 12px;
  text-transform: uppercase;
}
html, body {
  overflow-x: hidden;
}

    table {
      border-collapse: collapse;
    }

    td, th {
      border: 1px solid black;
      padding: 8px;
    }

    html {
  scroll-behavior: smooth;
}

.project-image img {
  transition: 0.5s;
}

.project-image:hover img {
  transform: scale(1.05);
}

.btn {
  padding: 12px 30px;
  border: 1px solid #ff2a7f;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff2a7f;
  box-shadow: 0 0 15px #ff2a7f;
  transform: translateY(-2px);
}


/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* Центруємо текст */
  text-align: center;
  min-height: 100vh;
  background: url("../images2/Main.webp") no-repeat; /* фото на весь екран */
  background-size: cover;
  background-position: calc(50% - 18px) center; 
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
    background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
}
.hero-text {
  position: relative; /* щоб текст був поверх overlay */
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-text h1 {
  font-size: 36px; /* адаптивний розмір заголовку */
  margin-bottom: 30px;
}
.hero-text .btn {
  font-size: 1.2rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-photo {
  width: 50%;
  min-height: 100vh;
  overflow: hidden; 

}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(50% - 1000px) center;
}

/* ===== BUTTON ===== */

/*
.btn:hover {
  background: #ff5fa2;
  box-shadow: 0 0 15px #ff2a7f;
}
*/
.music-links {
  text-align: center;
  padding: 80px 20px;
}

/*
.platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.platforms a {
  padding: 12px 24px;
  border: 1px solid #ff2a7f;
  border-radius: 30px;
  color: #ff2a7f;
  transition: 0.3s;
}
*/

.platforms a:hover {
  background: #ff2a7f;
  color: white;
  box-shadow: 0 0 15px #ff2a7f;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
  padding: 0;
  margin: 0;
}

.portfolio h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

/* Chess-style project layout */
            .project-row {
              display: flex;
              align-items: stretch;
              min-height: 100vh;
            }

            .project-row.reverse {
              flex-direction: row-reverse;
            }

            .project-image,
.project-info {
  width: 50%;
}

.project-image {
  height: auto;
}

                        .project-info {
                          display: flex;
                          flex-direction: column;
                          justify-content: center;
                          align-items: center;
                          text-align: center;
                          padding: 0;
                        }

                        .project-image img {
                          width: 100%;
                          height: 100%;
                          object-fit: cover;
                        }

.project-image {
  position: relative;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-image:hover::after {
  background: rgba(0,0,0,0.05);
}


/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
/*.fade-in {
  opacity: 1 !important;
  transform: none !important;
}*/

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.tight {
  margin: 0;
  line-height: 0.8; /* або 1.0 або навіть менше */
}
.about {
  padding: 60px 20px;
  background-color: #0d0d0d;
  text-align: center;
}

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

.about h2 {
  font-size: 2em;
  margin-bottom: 1px;
}

.about p {
  font-size: 1.1em;
  line-height: 1.6;
}




/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-text,
  .hero-photo {
    width: 100%;
    padding: 20px;
    height: auto;
    text-align: center;
  }

  .hero-photo {
    min-height: auto;
  }

  .hero-photo img {
    height: auto;
  }

}

/* ===== GLOBAL DARK STYLE ===== */

body {
  background: #0a0a0a;
  color: #eaeaea;
  font-family: 'Montserrat', sans-serif;
}

section {
  background: transparent;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 2px;
}

h2 {
  font-weight: 200;
  letter-spacing: 10px;
}



.project-info h3 {
  letter-spacing: 4px;
  font-weight: 200;
}

.project-info p {
  line-height: 1.8;
}

p {
  font-weight: 300;
  color: #ccc;
}

a {
  color: #ff2a7f;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

/* ===== MUSIC SECTION ===== */

.music-links {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to bottom, #0a0a0a, #050505);
}

.music-links h2 {
  font-size: 2rem;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

/* кнопки платформ */
.platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

.platforms a {
  padding: 14px 28px;
  border: 1px solid #ff2a7f;
  border-radius: 30px;
  color: #ff2a7f;
  font-weight: bold;
  transition: all 0.3s ease;
}

.platforms a:hover {
  background: #ff2a7f;
  color: white;
  box-shadow: 0 0 20px #ff2a7f;
  transform: translateY(-2px);
}

/* плеєр */
.player {
  max-width: 600px;
  margin: 0 auto;
}

/* ===== DOSSIER STYLE ===== */

.dossier {
  padding: 100px 20px;
  text-align: center;
}

.dossier h2 {
  margin-bottom: 40px;
  letter-spacing: 4px;
  font-size: 2rem;
}

/* картка */
.dossier-card {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 30px;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 30px rgba(255, 42, 127, 0.1);
}

/* рядок */
.dossier-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #222;
  gap: 20px;
}

/* останній без лінії */
.dossier-row:last-child {
  border-bottom: none;
}

/* лівий стовпець */
.label {
  font-weight: 200;
  letter-spacing: 2px;
  width: 40%;
  text-align: left;
}


/* правий стовпець */


/* акцент */
.highlight {
  color: #ff2a7f;
  font-weight: bold;
  letter-spacing: 2px;
}

/* адаптив */
@media (max-width: 600px) {
  .dossier-row {
    flex-direction: column;
    text-align: left;
  }

}

/* ===== CLASSIFIED DOSSIER ===== */

.classified {
  padding: 120px 20px;
  background: radial-gradient(circle at center, #050505 0%, #000 100%);
  position: relative;
  overflow: hidden;
}

/* шум / grain ефект */
.classified::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  opacity: 0.15;
  pointer-events: none;
}

/* header */
.dossier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #888;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

.dossier-header h2 {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 4px;
}

.tag {
  color: #ff2a7f;
}

.status {
  color: red;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  50% { opacity: 0.3; }
}

/* картка */
/*
.dossier-card {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid #222;
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.8);
  box-shadow: 0 0 40px rgba(255, 42, 127, 0.15);
}
*/

/* glow border */
.dossier-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 42, 127, 0.2);
  pointer-events: none;
}

/* рядки */
/*
.dossier-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #111;
  transition: 0.3s;
}
*/

/* hover ефект */
.dossier-row:hover {
  background: rgba(255, 42, 127, 0.05);
}

/* label */
/* value */
/*
.label {
  font-weight: 200;
  letter-spacing: 2px;
}
*/
.value {
  font-weight: 300;
    width: 60%;
  text-align: left;
}

.btn {
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}
.hero-text .btn {
  padding: 10px 25px;   /* було 12px 30px */
  font-size: 12px;     /* було 14px */
}

/* highlight */
/*
.highlight {
  color: #ff2a7f;
  font-weight: bold;
  text-shadow: 0 0 10px #ff2a7f;
}
*/

/* scan line animation */
.classified::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(255, 42, 127, 0.3);
  top: 0;
  left: 0;
  animation: scan 4s linear infinite;
}

@keyframes scan {
  0% { top: 0; }
  100% { top: 100%; }
}



/* ===== RELEASE BLOCK ===== */

.release {
  padding: 100px 20px;
  background: linear-gradient(to bottom, #000, #0a0a0a);
}

.release-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto 50px;
  flex-wrap: nowrap;
}

/* обкладинка */
.release-cover {
  width: 50%;
  height: 100vh; /* 🔥 половина екрану по висоті */
  overflow: hidden;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* щоб красиво заповнювало */
  border-radius: 0; /* опціонально, якщо хочеш як hero */
}

/* текст */
.release-info {
  width: 50%;
  height: 100%;

  display: flex;
  justify-content: center;  /* по горизонталі */
  align-items: center;      /* по вертикалі */
}
.follow-title {
  font-size: 20px;
  letter-spacing: 8px;
  font-weight: 200;
  color: #fff;
  opacity: 0.8;
}
.social-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px; /* 🔥 відстань між заголовком і кнопками */
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 220px; /* 🔥 фіксована ширина */
}
.social-links a:hover {
  background: #ff2a7f;
  color: #fff;
  box-shadow: 0 0 15px #ff2a7f;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 100%;
  padding: 12px;

  border: 1px solid #ff2a7f;
  border-radius: 25px;

  color: #ff2a7f;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 12px;

  transition: 0.3s;
}

.social-links a:hover {
  background: #ff2a7f;
  color: #fff;
  box-shadow: 0 0 15px #ff2a7f;
}

.release-label {
  color: #ff2a7f;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.release-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.release-desc {
  color: #ccc;
  margin-bottom: 25px;
}

/* кнопки */
.release-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.release-buttons a {
  padding: 10px 20px;
  border: 1px solid #ff2a7f;
  border-radius: 25px;
  color: #ff2a7f;
  transition: 0.3s;
}

.release-buttons a:hover {
  background: #ff2a7f;
  color: #fff;
  box-shadow: 0 0 15px #ff2a7f;
}

/* відео */
.release-video {
  max-width: 900px;
  margin: 0 auto;
}

.release-video iframe {
  border-radius: 12px;
}

/* адаптив */


@media (max-width: 768px) {
    .project-row {
    min-height: auto;
  }

    .release-container {
    flex-direction: column;
    text-align: center;
  }

  .release-buttons {
    justify-content: center;
  }
/*
  .contact-section .hero-photo,
  .contact-section {
    width: 100%;
    height: auto;
  }
  
    .contact-section {
    flex-direction: column;
  }
  */

    .dossier-row {
    flex-direction: column;
    gap: 10px;
  }

  .dossier-header {
    flex-direction: column;
    gap: 10px;
  }
}
/*
.contact-section .hero-photo,
.contact-section .hero-text {
  width: 50%;
}
*/


.hero-links {
  position: absolute;
  top: 30px;
  right: 30px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  z-index: 3;
  opacity: 0.85;
}

.hero-links a {
  padding: 10px 18px;
  border: 1px solid rgba(255, 42, 127, 0.6);
  border-radius: 20px;

  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;

  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);

  transition: 0.3s;
}

.hero-links a:hover {
  background: #ff2a7f;
  box-shadow: 0 0 10px #ff2a7f;
}
/*
.contact-section {
  display: flex;
  min-height: 100vh;
}

*/

/* права частина */
.contact-section .hero-text {
  width: 50%;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: 60px;

  background: #0a0a0a;
  color: #eaeaea;
}
.contact-section h2 {
  font-size: 22px;
  letter-spacing: 6px;
  margin-bottom: 40px;
}

.contact-section p {
  margin-bottom: 15px;
  font-size: 14px;
  letter-spacing: 2px;
}
.contact-section a {
  color: #ff2a7f;
  text-decoration: none;
  margin-left: 10px;
}

.contact-section a:hover {
  text-decoration: underline;
}


.contact-section {
  display: flex;
  flex-wrap: nowrap; /* ❗ КЛЮЧ */
  width: 100%;
  height: 100vh;
}
.contact-section .hero-photo {
  width: 50%;
  height: 100vh;
  background: url("../images2/Сontacts.webp") center / cover no-repeat;
}
@media (max-width: 768px) {
  .release-cover {
    width: 100%;
    height: auto;
  }

  .release-cover img {
    height: auto;
    object-fit: contain;
  }
}
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-section .hero-photo,
  .contact-section .hero-text {
    width: 100%;
    height: auto;
    min-height: 250px;
  }
    .contact-section .hero-photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .contact-section .hero-text {
    align-items: center;
    text-align: center;
    padding: 30px;
  }

  .contact-section p {
    text-align: center;
    word-break: break-word;
  }

  .contact-section a {
    margin-left: 0;
  }
}
.contact-section p {
  letter-spacing: 1px;
}
.contact-section .hero-photo,
.contact-section .hero-text {
  box-sizing: border-box;
}
.contact-section {
  display: flex;
}

.contact-section .hero-photo,
.contact-section .hero-text {
  flex: 1;
}
.contact-section {
  gap: 0;
}

