/* === COLORS === */
:root {
  --dark-purple: #120018;
  --orange: #f27745;
  --text-light: #eee;
  --bg-overlay: rgba(255, 255, 255, 0.05);
  --neon-pink: #ff77bb;
}

/* === GENERAL === */
body {
  font-family: 'Inter', sans-serif;
  background-image: url('../images/staticdarkbackground.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  letter-spacing: 0.3px;
  font-size: 1rem;
  scroll-behavior: smooth;
}

/* === HEADING STYLES === */
h1 {
  font-family: 'Play', sans-serif;
  color: white;
}

h2 {
  font-family: 'Play', sans-serif;
  color: white;
  font-size: 2.5rem;
  margin: 0;
}

h3 {
  font-family: 'BioRhyme', serif;
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  font-family: 'BioRhyme', serif;
  font-weight: 300;
  color: #ccc;
}

/* === HEADER === */
.hero {
  background-color: var(--dark-purple);
  text-align: center;
  padding: 90px 0;
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hero.shrink {
  padding: 8px 0;
}

.logo {
  max-width: 300px;
  transition: max-width 0.3s ease;
}

.hero.shrink .logo {
  max-width: 140px;
}

.hero h1 {
  font-size: 0.01rem;
  color: transparent;
  height: 0;
  overflow: hidden;
  margin: 0;
}

/* === TAGLINE === */
.hero h2.tagline,
.hero p.tagline {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero.shrink .tagline {
  font-size: 0.01rem;
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
  pointer-events: none;
}

/* === CTA BUTTON === */
.cta-button {
  display: inline-block;
  margin: 2rem auto;
  background: var(--neon-pink);
  color: #fff;
  font-family: 'Play', sans-serif;
  font-size: 1.4rem;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 0 10px var(--neon-pink);
}

.cta-button:hover {
  background: #ff98cb;
}

.hero.shrink .cta-button {
  display: none;
}

/* === SWIPER SECTION === */
.swiper-section {
  padding: 120px 15px 60px;
  text-align: center;
}

.mySwiperA,
.mySwiperB {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.6;
}

.swiper-slide-active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}

.swiper-slide img,
.swiper-slide video {
  max-width: 100%;
  max-height: 350px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid var(--orange);
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.watermarked-image {
  position: relative;
  display: inline-block;
}

.watermarked-image::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 48px;
  height: 48px;
  background: url('../images/watermark-corner.png') no-repeat center center;
  background-size: contain;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--orange) !important;
  filter: drop-shadow(0 0 2px black);
}

.swiper-pagination-bullet {
  background-color: white !important;
  opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--orange) !important;
  opacity: 1 !important;
}

/* === MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 0, 20, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 1rem;
}

.modal-overlay.visible {
  display: flex;
}

.modal-body {
  font-family: 'Play', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  background-color: #1a001f;
  border: 2px solid var(--orange);
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0,0,0,0.7);
  position: relative;
  color: var(--text-light);
  text-align: center;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-body h3 {
  font-family: 'Play', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--orange);
}

.modal-body p {
  margin-top: 1rem;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--orange);
}

.modal-close:hover {
  color: #fff;
}

/* === CONTACT SECTION === */
.contact {
  background-color: var(--bg-overlay);
  padding: 60px 15px;
}

.contact input,
.contact textarea {
  font-family: 'Play', sans-serif;
  background-color: #222;
  border: 1px solid #444;
  color: white;
  padding: 10px;
  border-radius: 4px;
}

.contact label {
  font-family: 'Play', sans-serif;
  font-size: 1.5rem;
}

.contact button {
  font-family: 'Play', sans-serif;
  font-size: 1.5rem;
  background-color: var(--orange);
  border: none;
  padding: 10px 20px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background-color: #ff8c3b;
}

/* === FOOTER === */
footer {
  background-color: var(--dark-purple);
  color: var(--text-light);
  padding: 20px 0;
  text-align: center;
}

footer img {
  height: 24px;
  vertical-align: middle;
  margin-left: 10px;
}

footer a {
  text-decoration: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }

  .hero.shrink {
    padding: 10px 0;
  }

  .logo {
    max-width: 180px;
  }

  .hero.shrink .logo {
    max-width: 60px;
  }

  .swiper-slide {
    width: 100% !important;
    opacity: 1 !important;
    transform: none !important;
    justify-content: center;
  }

  .swiper-slide img,
  .swiper-slide video {
    max-height: 250px;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}

/* === Anchor Target Scroll Offset Fix === */
:target::before {
  content: "";
  display: block;
  height: 120px;
  margin-top: -120px;
}

.reset-arrow {
  display: none; /* hidden by default */
}

.hero.shrink .reset-arrow {
  display: inline-flex;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  width: 30px;
  height: 30px;
  background: var(--neon-pink);
  color: #fff;
  font-size: 1rem;
  border-radius: 50%;
  box-shadow: 0 0 15px #cc33ff;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.reset-arrow:hover {
  background: #ff99ff;
  transform: translateY(2px);
}
