/* HELWA.SHOW - STYLE */

:root {
  --dark: #100716;
  --dark-soft: #1b0b25;
  --gold: #d8ad58;
  --gold-light: #f2d98a;
  --pink: #e83e9f;
  --fuchsia: #b8178e;
  --violet: #5d2da8;
  --white: #ffffff;
  --text-soft: #f4eaf6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--dark);
  color: var(--text-soft);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7%;
  background: linear-gradient(
    to bottom,
    rgba(16, 7, 22, 0.92),
    rgba(16, 7, 22, 0.25)
  );
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(16, 7, 22, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  padding: 10px 7%;
}

.logo {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  color: var(--text-soft);
  transition: 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: 0.3s ease;
}

.main-nav a:hover {
  color: var(--gold-light);
}

.main-nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 7% 90px;
  background:
    linear-gradient(
      90deg,
      rgba(16, 7, 22, 0.95) 0%,
      rgba(16, 7, 22, 0.78) 36%,
      rgba(16, 7, 22, 0.25) 70%,
      rgba(16, 7, 22, 0.75) 100%
    ),
    url("assets/hero.jpg") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(232, 62, 159, 0.35), transparent 36%),
    radial-gradient(circle at 40% 80%, rgba(216, 173, 88, 0.14), transparent 38%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  max-width: 560px;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.95;
  color: var(--white);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h2 {
  margin-top: 14px;
  color: var(--pink);
  font-size: clamp(31px, 4vw, 58px);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-weight: 400;
}

.hero-text {
  margin-top: 28px;
  max-width: 500px;
  font-size: 19px;
  color: #f7eaf4;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 40px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--fuchsia), #741052);
  border: 1px solid var(--gold);
  color: var(--white);
  box-shadow: 0 0 24px rgba(232, 62, 159, 0.32);
}

.btn.secondary {
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

/* SECTIONS */

.intro-section,
.gallery-section,
.contact-section {
  padding: 90px 7%;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(232, 62, 159, 0.16), transparent 38%),
    linear-gradient(180deg, var(--dark), var(--dark-soft));
}

.intro-section h2,
.gallery-section h2,
.contact-section h2 {
  color: var(--gold-light);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.intro-section p,
.contact-section p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 20px;
  color: #eaddea;
}

/* GALLERY */

.gallery-section {
  padding-top: 70px;
}

.gallery-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(216, 173, 88, 0.65);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  transition: 0.35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.035);
  filter: brightness(1.12);
}

/* CONTACT */

.contact-section {
  background:
    linear-gradient(135deg, rgba(92, 24, 107, 0.9), rgba(16, 7, 22, 0.98)),
    url("assets/07.jpg") center / cover no-repeat;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 7, 22, 0.72);
}

.contact-section h2,
.contact-section p,
.social-buttons {
  position: relative;
  z-index: 2;
}

.social-buttons {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 56px;
  border-radius: 50px;
  color: var(--white);
  font-size: 17px;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.32);
  transition: 0.3s ease;
}

.social:hover {
  transform: translateY(-4px);
}

.youtube {
  background: linear-gradient(135deg, #e62117, #8a1010);
}

.facebook {
  background: linear-gradient(135deg, #1877f2, #0d346c);
}

.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.email {
  background: linear-gradient(135deg, #b8178e, #5d123f);
}

/* FOOTER */

.site-footer {
  padding: 26px 7%;
  text-align: center;
  background: #08030c;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  letter-spacing: 1px;
}

/* ANIMAZIONI JS */

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img {
    height: 330px;
  }
}

@media (max-width: 800px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    gap: 14px;
    padding: 18px 5%;
  }

  .site-header.scrolled {
    padding: 14px 5%;
  }

  .logo {
    width: 165px;
  }

  .main-nav {
    gap: 16px;
    font-size: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 190px 6% 80px;
    background:
      linear-gradient(
        180deg,
        rgba(16, 7, 22, 0.78) 0%,
        rgba(16, 7, 22, 0.80) 48%,
        rgba(16, 7, 22, 0.98) 100%
      ),
      url("assets/hero.jpg") center top / cover no-repeat;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
    font-size: 17px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .intro-section,
  .gallery-section,
  .contact-section {
    padding: 70px 6%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: auto;
    max-height: none;
  }

  .social {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .main-nav a {
    padding: 4px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero h2 {
    font-size: 34px;
  }

  .btn {
    width: 100%;
  }

  .intro-section p,
  .contact-section p,
  .hero-text {
    font-size: 16px;
  }
}