﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: white;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  transition: opacity 0.2s ease;
}

.text-link {
  color: #00ffff;
  text-decoration: none;
  transition: 0.3s ease;
  text-shadow: 0 0 5px rgba(0,255,255,0.5);
}

  .text-link:hover {
    color: #d946ef;
    text-shadow: 0 0 10px #d946ef, 0 0 20px #d946ef;
  }
  
  /* AMBIENT GLOW */

.ambient-glow {
  position: fixed;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient( circle, rgba(0,255,255,0.12) 0%, rgba(217,70,239,0.08) 40%, transparent 70% );
  filter: blur(120px);
  z-index: -1;
  animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {

  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* HEADER */

header {
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.logo img {
  height: 60px;
  object-fit: contain;
}

/* NAVIGATION */

nav {
  display: flex;
  gap: 30px;
}

  nav a {
    color: #00ffff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
  }

    nav a:hover {
      color: #d946ef;
      text-shadow: 0 0 10px #d946ef, 0 0 20px #d946ef, 0 0 40px #d946ef;
    }

    nav a.active {
      color: #d946ef;
      text-shadow: 0 0 10px #d946ef, 0 0 20px #d946ef, 0 0 40px #d946ef;
    }
    
/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #00ffff;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffff;
  }

/* HERO */

.hero {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 90px;
  min-height: 100vh;
}

/* SLIDER */

.slider {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: calc(100vh - 180px);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide-link {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

  .slide-link.active {
    opacity: 1;
    pointer-events: auto;
  }

.slide {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  margin: auto;
  box-shadow: 0 0 20px rgba(0,255,255,0.3), 0 0 50px rgba(0,255,255,0.2);
}
  .slide:hover {
    transform: scale(1.01);
  }
  
  /* SLIDE TITLE */

.slide-title {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  color: #00ffff;
  font-size: 18px;
  font-weight: 500;
  text-shadow: 0 0 5px #00ffff, 0 0 15px #00ffff;
  border: 1px solid rgba(0,255,255,0.2);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.slide-link.active .slide-title {
  opacity: 1;
}

/* SLIDE INDICATORS */

.indicators {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: 0.3s ease;
}

  .indicator.active {
    background: #00ffff;
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  }

  .indicator:hover {
    background: #d946ef;
    box-shadow: 0 0 10px #d946ef, 0 0 20px #d946ef;
  }

/* SLIDER BUTTONS */

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #00ffff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0,255,255,0.4);
}

  .nav-btn:hover {
    background: rgba(217,70,239,0.15);
    color: #d946ef;
    box-shadow: 0 0 15px rgba(217,70,239,0.8), 0 0 30px rgba(217,70,239,0.6);
  }

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* FOOTER */

footer {
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 1000;
}

.footer-left {
  width: 120px;
}

.footer-center {
  display: flex;
  gap: 25px;
}

  .footer-center a {
    color: #00ffff;
    font-size: 22px;
    transition: 0.3s ease;
    text-decoration: none;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
  }

    .footer-center a:hover {
      color: #d946ef;
      transform: scale(1.15);
      text-shadow: 0 0 10px #d946ef, 0 0 20px #d946ef, 0 0 40px #d946ef;
    }

.footer-right {
  width: 120px;
  text-align: right;
  color: #00ffff;
  font-size: 14px;
  text-shadow: 0 0 5px rgba(0,255,255,0.6);
}

/* CONTACT */

.contact-container,
.legal-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 20px 100px;
}

.contact-form,
.legal-box {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,255,255,0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0,255,255,0.2);
  animation: fadeIn 1.2s ease;
}

  .contact-form h1,
  .legal-box h1 {
    text-align: center;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: white;
    border-radius: 10px;
    outline: none;
    transition: 0.3s ease;
  }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #00ffff;
      box-shadow: 0 0 10px rgba(0,255,255,0.5);
    }

  .contact-form button {
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #00ffff;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
  }

    .contact-form button:hover {
      background: #d946ef;
      color: white;
      box-shadow: 0 0 20px rgba(217,70,239,0.7);
    }

/* CHECKBOX */

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

  .checkbox-container input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #00ffff;
    cursor: pointer;
    flex-shrink: 0;
  }

  .checkbox-container span {
    margin-top: 1px;
  }

/* LEGAL */

.legal-box p {
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

/* ANIMATION */

@keyframes fadeIn {

  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  animation: pageFade 0.25s ease;
}

@keyframes pageFade {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* MOBILE */

@media (max-width: 768px) {

  header {
    padding: 15px 20px;
  }

  .logo img {
    height: 45px;
  }

  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 80px;
    right: 20px;
    flex-direction: column;
    background: rgba(0,0,0,0.95);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(0,255,255,0.2);
    display: none;
  }

    nav.active {
      display: flex;
    }

  .slider {
    height: calc(100vh - 220px);
  }

  .slide-title {
    font-size: 15px;
    padding: 8px 16px;
    bottom: 60px;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  footer {
    padding: 12px 20px;
  }

  .footer-center {
    gap: 18px;
  }

    .footer-center a {
      font-size: 20px;
    }

  .footer-right {
    font-size: 12px;
  }

  .contact-form,
  .legal-box {
    padding: 25px;
  }
}
