@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Roboto+Slab:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
    /* cursor: none !important; */
}

/* Text selection color */
::selection {
  background: #d8607e;   /* red-pink */
  color: #ffffff;        /* text color while selected */
}

#mainPage{
    height: 100%;
    width: 100%;
}
#navbar {
    /* background-color: red; */
    height: 80px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    /* background-color: red; */
}

.nav-logo {
  /* width: 100px;       desired visible width */
  /* height: 80px;       same as navbar height */
  /* overflow: hidden;   hides top/bottom extra space */
  /* width: 0%; */
  /* background-color: red; */
  display: flex;
  align-items: center;
  justify-content: center;
}
#navbar a{
    text-decoration: none;
    font-family: "Lexend", sans-serif;
    color: #fff;
    font-weight: 300;
}
/* Base link style (if you want) */
#navbar .nav-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  /* color: #b48cff; */       
  /* your purple-ish color maybe */
  font-family: "Lexend", system-ui, sans-serif;
}
/* The main visible text */
#navbar .nav-link span {
  display: block;
  transform: translateY(0%);
  transition: transform 0.3s ease;
}

/* The “clone” text coming from below */
#navbar .nav-link::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;            /* start just below */
  width: 100%;
  transform: translateY(0%);
  transition: transform 0.3s ease;
}

/* Hover effect: original goes up, clone slides into place */
#navbar .nav-link:hover span {
  transform: translateY(-100%);
}

#navbar .nav-link:hover::after {
  transform: translateY(-100%);  /* moves from 100% → 0% */
}


#midLinks{
    width: 14%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* background-color: red; */
}





/* Menu toggle (hamburger / close) */
.menu-toggle {
  position: relative;
  width: 28px;
  height: 20px;
  border: none;
  background: none;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 201; /* above menu */
}

.menu-toggle .bar {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #f9fafb;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease, bottom 0.3s ease;
  position: relative;
}

/* Fullscreen menu overlay */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 10, 0.9); /* low transparency so a bit of page is visible */
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.45s ease;
  z-index: 200;
}

/* Menu content */
.fullscreen-menu ul {
  list-style: none;
  text-align: center;
}

.fullscreen-menu li + li {
  margin-top: 1.5rem;
}

.fullscreen-menu a {
  text-decoration: none;
  font-size: clamp(2rem, 4vw, 3rem); /* big & responsive */
  font-family: "Lexend", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f9fafb;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fullscreen-menu a:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

/* ====== OPEN STATE (when .menu-open is on body) ====== */

body.menu-open {
  overflow: hidden; /* lock scroll when menu is open */
}

/* Slide menu down */
body.menu-open .fullscreen-menu {
  transform: translateY(0);
}

/* Morph hamburger into X */
body.menu-open .menu-toggle .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

body.menu-open .menu-toggle .bar:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* When menu is open, hide logo + normal nav links */
body.menu-open #navbar img,
body.menu-open #navbar a {
  visibility: hidden;      /* or use display:none if you prefer */
  pointer-events: none;    /* so they can't be clicked */
}








/* HERO SECTION */
.hero {
  position: relative;
  margin-top: 80px;                       /* equal to navbar height */
  /* background-color: red; */
  min-height: calc(100vh - 80px);         /* full screen minus navbar */
  padding: 4rem 40px 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* background image or video frame */
  background-image: url('your-hero-image.jpg');  /* change to your file */
  background-size: cover;
  background-position: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}


/* dark overlay on top of image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.1), rgba(0,0,0,0.9));
  pointer-events: none;
}

/* layout of left/right text */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-left {
  max-width: 560px;
}

.hero-rating {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  opacity: 0.8;
}

.hero-sub {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

.hero-heading {
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  font-weight: 600;
}

/* right list */
.hero-right ul {
  list-style: none;
  text-align: right;
}

.hero-right li {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  opacity: 0.85;
}

/* ===== Responsive tweaks ===== */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 20px 4rem;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-right {
    align-self: flex-end;
  }

  .hero-right ul {
    text-align: left;
  }
}


/* ===== FOOTER ===== */

#site-footer {
  background: #050509;
  color: #f9fafb;
  padding: 4rem 40px 2.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* top row – columns aligned to the right */
.footer-top {
  display: flex;
  justify-content: flex-end;  /* keeps left side clean/empty */
}

.footer-columns {
  display: flex;
  gap: 4rem;
  width: 40vw;                /* roughly right 40% look */
  max-width: 460px;
}

.footer-column ul {
  list-style: none;
  margin-top: 0.9rem;
}

.footer-heading {
  font-size: 0.8rem;
  font-family: "Roboto Slab", 'Times New Roman', Times, serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
}

.footer-column li + li {
  margin-top: 0.4rem;
}

.footer-column a {
  text-decoration: none;
  color: #f9fafb;
  font-size: 1.3rem;
  font-family: "Lexend", sans-serif;
  line-height: 1.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover {
  opacity: 0.70;
  transform: translateX(2px);
}

/* middle row – big wordmark */
.footer-logo-row {
  margin-top: 3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding-top: 2.5rem;
}

.footer-brand {
  display: block;
  text-align: center;
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 6rem);
  /* font-size: 100px; */
  letter-spacing: 0.06em;
}

/* bottom row – centered copyright */
.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* responsive tweaks */
@media (max-width: 900px) {
  #site-footer {
    padding: 3.5rem 20px 2rem;
  }

  .footer-top {
    justify-content: flex-start;
  }

  .footer-columns {
    width: 100%;
  }

  .footer-brand {
    text-align: left;
  }
}







.submitbutton {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: #0f1923;
  cursor: pointer;
  position: relative;
  padding: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all .15s ease;
}

.submitbutton::before,
.submitbutton::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  height: calc(50% - 5px);
  border: 1px solid #7D8082;
  transition: all .15s ease;
}

.submitbutton::before {
  top: 0;
  border-bottom-width: 0;
}

.submitbutton::after {
  bottom: 0;
  border-top-width: 0;
}

.submitbutton:active,
.submitbutton:focus {
  outline: none;
}

.submitbutton:active::before,
.submitbutton:active::after {
  right: 3px;
  left: 3px;
}

.submitbutton:active::before {
  top: 3px;
}

.submitbutton:active::after {
  bottom: 3px;
}

.button_lg {
  position: relative;
  display: block;
  padding: 10px 20px;
  color: #fff;
  background-color: #0f1923;
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
}

.button_lg::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #0f1923;
}

.button_lg::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: #0f1923;
  transition: all .2s ease;
}

.button_sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: tomato;
  transform: skew(-15deg);
  transition: all .2s ease;
}

.button_text {
  position: relative;
}

.submitbutton:hover {
  color: #0f1923;
}

.submitbutton:hover .button_sl {
  width: calc(100% + 15px);
}

.submitbutton:hover .button_lg::after {
  background-color: #fff;
}








/* ===== Complaint Modal ===== */

.complaint-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.complaint-box {
  background: #050509;
  padding: 30px;
  width: 420px;
  border-radius: 12px;
  position: relative;
  font-family: "Lexend", sans-serif;
}

.complaint-box h2 {
  margin-bottom: 20px;
  font-weight: 500;
}

.complaint-box input,
.complaint-box textarea,
.complaint-box select {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  background: #0f1923;
  border: 1px solid #2a2a2a;
  color: #fff;
  border-radius: 2px;
  font-family: "Lexend", sans-serif;
}

.complaint-box textarea {
  resize: none;
  height: 100px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 22px;
  opacity: 0.7;
}

.modal-close:hover {
  opacity: 1;
}

.hidden {
  display: none;
}

/* ===== Success Popup ===== */

.success-popup {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f1923;
  padding: 14px 25px;
  border-radius: 8px;
  font-family: "Lexend", sans-serif;
  z-index: 1000;
}
























/* ===== ADMIN DASHBOARD ===== */

.admin-title {
  padding: 40px;
  font-size: 2rem;
}

/* .complaint-container {
  max-width: 900px;
  margin: auto;
  padding: 0 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
} */
 .complaint-container {
  max-width: 900px;
  margin: auto;
  padding: 20px 40px 80px;
}


.complaint-card {
  background: radial-gradient(
    circle at top left,
    #0a0f1c,
    #050509 70%
  );
  border: 1px solid #1f2937;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}


.complaint-card h3 {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.complaint-desc {
  font-family: "Lexend", sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 14px;
}

.complaint-meta {
  font-family: "Lexend", sans-serif;
  font-weight: 200;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 10px;
}

.status-badge {
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 500;
  margin-bottom: 14px;
  display: inline-block;
  font-family: "Roboto Slab", 'Times New Roman', Times, serif;
}

.status-Pending {
  background: #f97316;
  color: #1c0f02;
}

.status-Published {
  background: #22c55e;
  color: #022c14;
}

.status-Rejected {
  background: #ef4444;
  color: #2c0202;
}


.admin-actions {
  display: flex;
  gap: 12px;
}

.admin-actions button {
  background: #0f1923;
  border: 1px solid #2a2a2a;
  color: #e5e7eb;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.75rem;
  cursor: pointer;
}

.admin-actions button:hover {
  background: #1f2937;
}
.admin-actions button:last-child {
  border-color: #7f1d1d;
  color: #fecaca;
}



.complaint-card textarea {
  background: #0f1923;
  font-family: "Lexend", sans-serif;
  border: 1px solid #2a2a2a;
  color: white;
  padding: 8px;
  border-radius: 6px;
  resize: vertical;
}


.admin-feedback {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.admin-feedback textarea {
  flex: 1;
  background: #0f1923;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 10px;
  font-size: 0.8rem;
}





/* ===== FILTER BAR ===== */

.filter-bar {
  display: inline-flex;
  background: #050509;
  border: 1px solid #1f2937;
  border-radius: 999px;
  padding: 6px;
  gap: 4px;
}

.filter-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  color: white;
}

.filter-btn.active {
  background: #0f1923;
  color: #e5e7eb;
  box-shadow: inset 0 0 0 1px #2a2a2a;
}

.admin-controls {
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 0 40px;

  display: flex;
  justify-content: center;
}









/* ===== PUBLIC COMPLAINTS MODAL ===== */

.complaint-box.large {
  width: 900px;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.public-complaints-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.public-card {
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 20px;
  background: #050509;
}

.public-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.public-desc {
  opacity: 0.85;
  margin-bottom: 10px;
}

.public-meta {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-bottom: 10px;
}

.admin-comment {
  background: #0f1923;
  border-left: 4px solid #22c55e;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.8rem;
}
body.modal-open {
  overflow: hidden;
}


