/* PAGE */
body{
  margin:0;
  background:#0A1128;
  font-family:sans-serif;

  display:flex;
  justify-content:center;
}

/* MAIN WRAPPER (ALL CREDITS) */
.container-wrapper{
  width:90vw;
  padding:40px;

  display:flex;
  flex-direction:column;
  gap:80px;


  border-radius:12px;

}

/* SECTION TITLE */
.section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.section-title h1{
  color:white;
  font-size:2.5rem;
  margin:0;
}

.line{
  height:2px;
  width:20vw;
  background:linear-gradient(to right,#00BFFF,transparent);
}

.line:first-child{
  transform:rotate(180deg);
}

/* RECTANGLE ROW */
.container{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
}

/* CREDIT CARD */
.rectangle{
  position:relative;
  height:30vh;
  aspect-ratio:9/16;

  border:2px solid grey;
  border-radius:8px;
  overflow:hidden;

  background-size:cover;
  background-position:center;

  transition:border 0.2s ease;
}

.rectangle:hover{
  border:3px solid #00FFFF;
  cursor:pointer;
}

/* HOVER DARKEN */
.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0);
  transition:background 0.3s;
}

.rectangle:hover .overlay{
  background:rgba(0,0,0,0.45);
}

/* TEXT */
.text{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;

  opacity:0;
  transition:opacity 0.3s;
}

.rectangle:hover .text{
  opacity:1;
}

.title{
  color:yellow;
  font-weight:bold;
  font-size:1.2rem;
}

.studio{
  color:white;
  font-size:0.9rem;
}

.year{
  color:pink;
  font-size:0.8rem;
}

.awards{
  color:yellow;
  font-size:0.8rem;
}





/* ================= VARIABLES ================= */
:root {
    --bg: #0a1128;
    --bg2: #0f1a3c;
    --cyan: #00ffe5;
    --magenta: #ff006e;
    --yellow: #ffe600;
    --purple: #9000ff;
    --white: #ffffff;
    --surface: rgba(0, 255, 229, 0.03);
    --surface2: rgba(144, 0, 255, 0.06);
    --border-c: rgb(0, 255, 229);
    --border-m: rgba(255, 0, 110, 0.25);
    --text: #c8f0ec;
    --muted: #6fb0a8;
    --glow-c: 0 0 20px rgba(0, 255, 229, 0.4), 0 0 60px rgba(0, 255, 229, 0.15);
    --glow-m: 0 0 20px rgba(255, 0, 110, 0.4), 0 0 60px rgba(255, 0, 110, 0.15);
    --cat1: #00ffe7;
    --cat2: #ff2d78;
    --cat3: #ffe600;
    --c: #00ffe7;
    --c2: #ff2d78;
    --c3: #ffe600;
    --c4: #7b2fff;
    --panel: rgba(0, 255, 231, 0.03);
    --border: rgba(0, 255, 231, 0.14);
    --border2: rgba(0, 255, 231, 0.4);
    --text2: rgba(142, 207, 204, 0.5);
}

/* ================= NAVIGATION ================= */
nav {
    position: relative;
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-bottom: 1px solid var(--border-c);
    background: rgba(10,17,40,1);
    backdrop-filter: blur(20px);
    padding: 0 3vh;
    z-index: 900;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; gap: 1rem; margin-right: 5vw; }

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
    transform: translateY(-0.5vh);
    text-shadow: var(--glow-c);
    letter-spacing: 0.15em;
}

.nav-logo .slash { color: var(--yellow); margin: 0 4px; animation: pulse 2s ease-in-out infinite; }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Share Tech Mono', monospace;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--muted);
    border: 1px solid transparent;
    position: relative;
    transition: all 0.2s;
    padding: 1vh 1.5vh;
    font-size: 2vh;
}

.nav-links a::before {
    content: '>';
    color: var(--cyan);
    margin-right: 4px;
    opacity: 0;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    color: var(--cyan);
    border-color: var(--border-c);
    text-shadow: var(--glow-c);
    background: rgba(0, 255, 229, 0.25);
}

.nav-links a:hover::before { opacity: 1; }

.nav-links a.active {
    color: var(--yellow);
    text-shadow: 0 0 10px var(--yellow), 0 0 20px rgba(255, 230, 0, 0.5);
    border: none;
    background: none;
}

.nav-links a.active::before { content: '>'; color: var(--yellow); opacity: 1; }

/* Glowing block logo */
.logo-container {
    position: relative;
    display: inline-block;
}

.nav-block-logo {
    height: 80%;
    width: auto;
    position: relative;
    z-index: 2;
    object-fit: contain;
    transform: translateY(-20%);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0,150,255,0.7))
            drop-shadow(0 0 20px rgba(0,150,255,0.5))
            drop-shadow(0 0 30px rgba(0,150,255,0.4));
}
.nav-block-logo {
    height: 5vh;       /* limit logo height to 5vh */
    width: auto;
    position: relative;
    z-index: 2;
    object-fit: contain;
    transform: translateY(-20%);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0,150,255,0.7))
            drop-shadow(0 0 20px rgba(0,150,255,0.5))
            drop-shadow(0 0 30px rgba(0,150,255,0.4));
}


.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: rgba(0,150,255,0.6);
    border-radius: 50%;
    filter: blur(25px);
    z-index: 1;
}

/* Main nav layout */
.main-nav {
    display: grid;
    grid-template-columns: 7fr 3fr;
    align-items: center;
    width: 100%;
    position: relative;
}

.main-nav::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--cyan);
    position: absolute;
    bottom: 0;
    left: 0;
}
/* change this */
.main-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;   /* was 100vw */
  padding: 0 3vh; /* adjust padding, keep inside 100% */
}



/* Mobile layout */
@media (max-width: 768px) {
    .nav-left {
        display: none; /* hide links */
    }

    .nav-right {
        justify-content: space-between; /* logo left, hamburger right */
        width: 100%;
    }

    .nav-block-logo,
    .nav-logo {
        order: 1; /* stay on left */
    }

    .hamburger {
        display: flex;
        order: 2; /* move to right */
        cursor: pointer;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background: white;
        border-radius: 2px;
    }
}


/* change body */
body {
  display: block;  /* was flex + justify-content:center */
  margin: 0;
  overflow-x: hidden; /* prevents accidental horizontal scroll */
}
.container-wrapper {
  margin: 0 auto;  /* instead of flex centering on body */
}
/* ================= GLOBAL ================= */
html, body {
    height: 100%;
    margin: 0;
    background-color: #03080F;
    font-family: 'Rajdhani', sans-serif;
    scroll-behavior: smooth;
}


body {
    background: #090F23;
}

/* Radial glow layer */
.bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: 
        radial-gradient(ellipse 60% 40% at 15% 20%, rgba(144, 0, 255, 0.12) 0%, transparent 80%),  /* purple */
        radial-gradient(ellipse 50% 50% at 85% 70%, rgba(0, 255, 229, 0.08) 0%, transparent 60%),  /* cyan */
        radial-gradient(ellipse 40% 30% at 50% 100%, rgba(255, 0, 110, 0.1) 0%, transparent 80%);  /* pink */
    pointer-events: none;
}

/* Moving grid overlay */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(0,255,229,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,229,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

/* Grid animation */
@keyframes gridMove {
    from { transform: translateY(0); }
    to   { transform: translateY(60px); }
}

/* Scanlines */
.scanlines {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(
        rgba(0,255,229,0.02) 0 1px,
        transparent 1px 4px
    );
}


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




/* ─── footer-style.CSS - BEGIN */


footer {
    margin-bottom: -15vh;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border-c);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-family: 'Share Tech Mono', monospace;
    color: var(--muted);
    background-color: rgba(10, 17, 40, 1);
    min-height: 0vh;
        transform: translateY(0vh); /* move footer up by 20% of viewport height */
}
.footer-brand {
    font-size: 2vw;
    letter-spacing: 0.2em;
    color: #ffffff;

}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.footer-links a {
    font-size: 1.5vw;
    text-decoration: none;
    color: var(--muted);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-bar {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    box-shadow: 0 0 6px var(--cyan);
    margin: 1rem 0;
}

.footer-bottom {
    font-size: 1vw;
    letter-spacing: 0.2em;
    margin-top: -1.5rem;
        margin-top: 1vh;
}


/* ─── GLOBAL ─── */
body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  background-color: #090F23;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.container-wrapper {
  width: 90%;
  max-width: 700px;
}

/* ─── SECTION TITLE ─── */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.section-title h1 {
  font-size: 2.5rem;
  color: #fff;
}

.line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, #00BFFF, transparent);
}

.line:first-child {
  transform: rotate(180deg);
}

/* ─── CONTACT FORM ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── CONTACT CARD / INPUTS / SELECT / TEXTAREA ─── */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  position: relative; /* needed for custom select arrow */
}

.contact-card label {
  font-size: 0.9rem;
  color: #c8f0ec;
}

.contact-card input,
.contact-card textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #00FFE5;
  border-radius: 6px;
  background: rgba(0, 255, 229, 0.05);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.2s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #00FFFF;
  box-shadow: 0 0 8px #00FFFF;
}

/* ─── NEON SELECT / DROPDOWN ─── */
.contact-card select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #00FFE5;
  border-radius: 6px;
  background-color: #0A1128; /* navy background */
  color: #00FFE5;           /* cyan text */
  font-size: 1rem;
  font-family: 'Rajdhani', sans-serif;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-card select:focus {
  border-color: #00FFFF;
  box-shadow: 0 0 8px #00FFFF;
}

/* Custom arrow */
.contact-card select::after {
  content: "▼";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #00FFE5;
  font-size: 0.8rem;
}

/* Remove default arrow for IE */
.contact-card select::-ms-expand {
  display: none;
}

/* ─── BUTTONS ─── */
.contact-btn {
  padding: 1rem 2rem;
  background: rgba(255, 230, 0, 0.1);
  border: 1px solid #FFE600;
  color: #FFE600;
  font-family: 'Share Tech Mono', monospace;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
  align-self: flex-start;
}

.contact-btn:hover {
  color: #fff;
  background: rgba(255, 230, 0, 0.25);
  box-shadow: 0 0 12px #FFE600;
}

/* ─── ACTIONS: BUTTON + DIRECT LINK ─── */
.contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.direct-link {
  color: #00FFE5;
  font-family: 'Share Tech Mono', monospace;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.direct-link:hover {
  text-shadow: 0 0 8px #00FFE5, 0 0 20px rgba(0,255,229,0.5);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .section-title h1 {
    font-size: 2rem;
  }

  .row {
    flex-direction: column;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .direct-link {
    text-align: left;
  }
}
body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  background-color: #090F23;
  color: #fff;
  display: block;
  padding: 2rem;
}

.container-wrapper {
  width: 90%;
  max-width: 700px;
  margin: 0 auto; /* centers it */
}
.section-title {
  margin-top: 4rem; /* pushes the title down */
}
/* Fix for header positioning */
header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
}

/* Ensure proper spacing and layout */
.hl-topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  padding: 1rem 2rem !important;
  z-index: 10 !important;
}

/* Reset any conflicting styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 0;
}

/* Ensure content doesn't get pushed down */
.hl-content {
  margin-top: 5rem !important;
}
/* Fix for header positioning */
header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  z-index: 1000 !important;
}

/* Ensure proper spacing and layout */
.hl-topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  padding: 0rem 0rem !important;
  z-index: 10 !important;
}

/* Reset any conflicting styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 0;
}

/* Ensure content doesn't get pushed down */
.hl-content {
  margin-top: 5rem !important;
}
header {
  width: 100vw !important;
}

.hl-topbar {
  width: 100vw !important;
}
nav {
  width: 100vw !important;
}

.navbar {
  width: 100vw !important;
}

.navigation {
  width: 100vw !important;
}
nav {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.navbar {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.navigation {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
