/* ============================================
   GHOST ANIMAE - Clean Cinematic Landing Page
   ============================================ */

body{
   background: black;
}

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

/* ============================================
   COLOR VARIABLES
   ============================================ */
:root {
  --plum: #942192;
  --plum-glow: rgba(148, 33, 146, 0.6);
  --fire-orange: #ffb347;
  --white: #f5f5f5;
  --bg: #000;
}

/* ============================================
   BASE
   ============================================ */
html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--bg);
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  color: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* BACKGROUND VIDEO */
.back_video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.72) contrast(1.05);
  opacity: 1;
}

/* DARK OVERLAY */
.hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.75)
  );
  z-index: -1;
}

/* ============================================
   NAVIGATION
   ============================================ */
.top_nav {
  position: absolute;
  top: 1%;
  left: 0;
  width: 100%;
  padding: 0 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

/* OPTIONAL IMAGE LOGO SUPPORT */
.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 8px var(--plum-glow));
}

.logo img:hover {
  transform: rotate(180deg) scale(1.1);
  filter: drop-shadow(0 0 15px var(--plum));
}

/* TEXT LOGO */
.logo-link {
  color: var(--plum);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 0 10px var(--plum-glow);
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.logo-link:hover {
  color: var(--fire-orange);
  text-shadow: 0 0 18px rgba(255, 179, 71, 0.8);
  transform: scale(1.03);
}

/* NAV LINKS */
.top_nav ul {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.top_nav ul li a {
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.top_nav ul li a:hover {
  color: var(--plum);
  text-shadow: 0 0 10px var(--plum-glow);
}

/* NAV BUTTON */
.top_nav button {
  padding: 9px 25px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--plum);
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-left: 25px;
}

.top_nav button:hover {
  background: linear-gradient(135deg, var(--plum), var(--fire-orange));
  box-shadow: 0 0 25px var(--plum-glow);
  color: #1a1a1a;
}

/* ============================================
   HERO CONTENT
   ============================================ */
.content {
  text-align: center;
  z-index: 5;
  padding: 20px;
}

.content h1 {
  font-size: clamp(60px, 10vw, 150px);
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.25);
  line-height: 1.1;
  margin-bottom: 20px;
}

.content h1 .main-title {
  display: block;
  font-size: 1.1em;
  color: var(--white);
  text-shadow: 0 0 20px var(--plum-glow);
}

.content h1 .sub-title {
  display: block;
  font-size: 0.85em;
  color: var(--fire-orange);
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(255, 179, 71, 0.6);
}

/* HERO BUTTON */
.content a {
  text-decoration: none;
  display: inline-block;
  color: var(--white);
  font-size: 1.2rem;
  border: 2px solid var(--white);
  padding: 14px 70px;
  border-radius: 50px;
  margin-top: 25px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.content a:hover {
  background: linear-gradient(135deg, var(--plum), var(--fire-orange));
  color: #1a1a1a;
  box-shadow: 0 0 25px var(--plum-glow),
              0 0 50px rgba(255, 179, 71, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  text-align: center;
  font-size: 13px;
  color: #c9b7d9;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.78);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}

.modal-content {
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(12px) saturate(180%);
  border-radius: 20px;
  border: 1px solid rgba(148, 33, 146, 0.3);
  padding: 30px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  color: var(--white);
  box-shadow: 0 0 25px var(--plum-glow);
  position: relative;
}

.modal-content h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: var(--white);
}

.modal-content p {
  margin-bottom: 20px;
  color: rgba(245, 245, 245, 0.8);
  font-size: 0.95rem;
}

/* CLOSE BUTTON */
.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  line-height: 1;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.close:hover {
  color: var(--fire-orange);
  transform: scale(1.1);
}

/* FORM FIELDS */
.input_box {
  margin-bottom: 15px;
}

.input_box input,
.input_box textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 33, 146, 0.3);
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.input_box input::placeholder,
.input_box textarea::placeholder {
  color: rgba(245, 245, 245, 0.65);
}

.input_box input:focus,
.input_box textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 12px var(--plum-glow);
  background: rgba(0, 0, 0, 0.72);
}

.input_box textarea {
  resize: none;
  min-height: 110px;
}

/* SUBMIT BUTTON */
.button2 {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--plum);
  border-radius: 50px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button2:hover {
  background: linear-gradient(135deg, var(--plum), var(--fire-orange));
  box-shadow: 0 0 20px var(--plum-glow);
  color: #1a1a1a;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .top_nav {
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    gap: 12px;
  }

  .top_nav ul {
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .content h1 {
    font-size: 80px;
  }
}

@media (max-width: 600px) {
  .content h1 {
    font-size: 60px;
  }

  .content a {
    font-size: 1rem;
    padding: 10px 35px;
  }

  .top_nav ul {
    gap: 20px;
  }

  .top_nav button {
    margin-left: 0;
  }

  .logo-link {
    font-size: 1.35rem;
  }

  .modal-content {
    padding: 24px 20px;
  }
}
