* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Noto Sans Greek", sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url("images/achilleas-hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.04), transparent 40%),
    linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.9));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  text-align: center;
  padding: 40px 20px;
}

.signature {
  width: clamp(260px, 50vw, 700px);
}

  opacity: 0;
  transform: translateY(-10px);

  filter:
    drop-shadow(0 8px 25px rgba(0,0,0,0.8))
    drop-shadow(0 0 8px rgba(255,255,255,0.12));

  animation:
    signatureFade 1.2s ease forwards,
    glowPulse 4s ease-in-out infinite 2s;
}

@keyframes signatureFade {
  to {
    opacity: 0.95;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%, 100% {
    filter:
      drop-shadow(0 8px 25px rgba(0,0,0,0.8))
      drop-shadow(0 0 8px rgba(255,255,255,0.12));
  }
  50% {
    filter:
      drop-shadow(0 8px 25px rgba(0,0,0,0.8))
      drop-shadow(0 0 14px rgba(255,255,255,0.25));
  }
}



h1 {
  font-size: clamp(3rem, 10vw, 7.2rem);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 12px 40px rgba(0,0,0,0.75);
color: #ffffff;
}

.hero h1 {
  font-family: "Cinzel", serif;
  letter-spacing: 2px;
  text-transform: uppercase;
color: #ffffff;
}

.hero h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
color: #ffffff;
}

@keyframes titleFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.intro {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  letter-spacing: 0.3px;
color: #ffffff;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 34px;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 34px;
}

.social-icon-btn {
  width: 150px;
  height: 150px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;   /* ❗ αφαιρεί το γκρι */
  border: none;              /* ❗ αφαιρεί περίγραμμα */
  box-shadow: none;          /* ❗ αφαιρεί glow/inner shadow */

  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.social-icon-btn img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  display: block;
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.social-icon-btn:hover {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Icon hover */
.social-icon-btn:hover img {
  transform: scale(1.08);
  opacity: 0,8;
}
.social-icon-btn.tiktok:hover {
  box-shadow:
    0 0 30px rgba(0,242,234,0.28),
    0 0 38px rgba(255,0,80,0.18);
}

.social-icon-btn.instagram:hover {
  box-shadow:
    0 0 34px rgba(225,48,108,0.28),
    0 0 42px rgba(252,175,69,0.18);
}

.social-icon-btn.youtube:hover {
  box-shadow:
    0 0 36px rgba(255,0,0,0.30);
}

.social-icon-btn.spotify:hover {
  box-shadow:
    0 0 36px rgba(30,215,96,0.30);
}

.social-icon-btn.facebook:hover {
  box-shadow:
    0 0 36px rgba(24,119,242,0.30);
}

@media (max-width: 768px) {

  .socials {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;

    justify-content: center !important;
    align-items: center !important;

    gap: 8px !important;
    max-width: 260px;
    margin: 20px auto 0;
  }

  .social-icon-btn {
    width: 64px;
    height: 64px;
  }

}

.main-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn {
  padding: 17px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.25s ease;
}

.primary-btn {
  background: #09da22;
  color: #111111;
}

.secondary-btn {
  color: #ffffff;
  border: 1px solid rgba(255,0,0,0.35);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.music-section {
  padding: 90px 22px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.music-section h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
}

.music-section p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  margin-bottom: 34px;
}

.embed-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  background: #111;
}

.embed-box iframe {
  width: 100%;
  height: 100%;
}

footer {
  padding: 34px 20px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding: 18px;
    background-position: center top;
  }

 .hero-content {
  padding: 12vh 6px 30px;
}

  .socials {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .social-btn {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .scroll-indicator {
    display: none;
  }
}
footer {
  color: #000000 !important;
}
.section-header h2 {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 1px;

  text-shadow:
    0 0 8px rgba(255,255,255,0.08),
    0 0 18px rgba(214,181,109,0.18);

  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  display: block;

  width: 60px;
  height: 2px;

  margin: 14px auto 0;

  background: linear-gradient(
    90deg,
    transparent,
    #d6b56d,
    transparent
  );

  opacity: 0.8;
}
.section-header h2 {
  opacity: 0;
  transform: translateY(20px);
  animation: titleReveal 1s ease forwards;
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gallery-section {
  padding: 110px 22px;
  background:
    radial-gradient(circle at top, rgba(214,181,109,0.08), transparent 35%),
    #050505;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-kicker {
  color: #d6b56d;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1;
  margin-bottom: 18px;
}

.section-header p {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.7;
}

.gallery-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0,0,0,0.38);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  filter: brightness(0.92) contrast(1.06);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,0.35));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.02) contrast(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 230px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .gallery-section {
    padding: 80px 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
    gap: 14px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}
@media (max-width: 768px) {
  .hero-content {
    padding: 10vh 6px 20px;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.75);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 46px;
  cursor: pointer;
  line-height: 1;
}