/* ------------------------------
   GLOBAL RESET & BASE STYLES
--------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: var(--header-height);
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: #e0e0e0;
  line-height: 1.6;
}

@font-face {
  font-family: 'RobotHeroes';
  src: url('../WebFonts/RobotHeroes-0vy69.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'RobotHeroesIT';
  src: url('../WebFonts/RobotHeroesItalic-gwnJ1.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ------------------------------
   FLEXBOX TOP BAR LAYOUT
--------------------------------*/
:root {
  --header-height-large: 120px;
  --header-height-small: 60px;
  --logo-width: clamp(140px, 12vw, 310px);
}

.page-content {
  padding-top: 160px;
}

/* Full-width flex container */
.top-bar {
  display: flex;
  align-items: center;
  width: 100%;
  height: var(--header-height-large);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.35);
  transition: height 0.4s ease;
  overflow: visible;
}
/* Soft black blurred fade under the top bar */
.top-bar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px; /* sits below the bar */
  width: 100%;
  height: 20px;
  pointer-events: none;

  /* Purple → transparent gradient */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0,1),
    rgba(0, 0, 0, .5)
  );

  /* Soft blur for atmospheric haze */
  filter: blur(12px);

  /* Smooth animation when shrinking */
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    filter 0.4s ease;
}

/* When the bar shrinks, fade becomes lighter + pulls upward */
.top-bar.shrink::after {
  opacity: 0.6;
  transform: translateY(-6px);
  filter: blur(8px);
}

.top-bar.shrink .site-header {
  align-items: flex-start;
  padding-top: 0;
}

.top-bar.shrink nav ul {
  margin-top: -35px;
}


/* Hide the title when header shrinks */
.top-bar.shrink .nav-left h1 {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.nav-left h1 {
  font-family: 'RobotHeroesIT', sans-serif;
  letter-spacing: 2px; /* optional but looks great with display fonts */
  font-size: 32px;     /* adjust as needed */
  text-transform: uppercase;
}

/* Shrinked header when scrolling */
.top-bar.shrink {
  height: var(--header-height-small);
}

/* Header fills remaining space */
.site-header {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 20px 5px;
}

/* Nav column */
.nav-left h1 {
  transition: opacity 0.4s ease, transform 0.4s ease;
}


/* Logo container stays fixed width */
.logo-container {
  width: var(--logo-width);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
}

/* Logo scaling */
:root {
  --logo-width: clamp(160px, 18vw, 260px);
}

.logo-container {
  width: var(--logo-width);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 10px;
}

.header-logo {
  width: var(--logo-width);
  position: relative;
  top: 30px;
  transform-origin: top top;
  transition: transform 0.6s ease;
}

.top-bar.shrink .header-logo {
  transform: scale(0.75);
}

nav ul {
  transition: margin 0.6s ease;
  white-space: nowrap; /* prevents wrapping */
  flex-wrap: nowrap;
}


/* Nav styling */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

nav a {
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(0,0,0,0.2); /* subtle dark glass */
    box-shadow: 0 0 8px rgba(25,236,13,.75); /* green glow */
    transition: box-shadow 0.2s ease, background 0.2s ease;
    font-family: 'Exo 2', sans-serif;
    color: #D2D1D1;
    font-weight: 500;
    letter-spacing: 1px;
    -webkit-box-shadow: 0 0 8px rgba(25,236,13,.75);
    text-decoration: none;
    font-size: 12px; /* try 12–16px range */
    padding: 4px 8px; /* smaller button area */
}


nav a:hover {
    background: rgba(1,1,1,0.8);
    box-shadow: 0px 0px 4px 16px rgba(25,236,13,1.00);
    -webkit-box-shadow: 0px 0px 16px rgba(25,236,13,1.00);
    color: inherit;
}


/* ------------------------------
   HERO SECTION — LOCKED OVERLAY
--------------------------------*/
.hero {
  position: relative;
  height: 95vh; /* adjust to match your background focal point */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  /* Remove padding so text doesn't drift */
  padding: 0;
  margin: 0;

  /* Background removed so scroll-zoom image shows */
  background: none;
}

/* HEADLINE — LOCKED TO FOCAL POINT */
.hero h2 {
    position: absolute;
    top: 25%;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    font-size: clamp(32px, 7vw, 80px);
    color: #FFFFFF;
    text-shadow: 0 0 10px #000000;
    margin: 0;
    white-space: nowrap;
}

/* SUBHEADLINE — LOCKED UNDER HEADLINE */
.hero p {
    position: absolute;
    top: 45%; /* adjust to sit under headline */
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(16px, 2vw, 26px);
    max-width: 744px;
    color: #FFFD00;
    margin: 0;
    text-shadow: 
	0 0 14px #000,
	0 0 15px #000,
    0 0 16px #000,
    0 0 24px #000;
    text-decoration: 1;
    /*background: rgba(0, 0, 0, 0.25);*/
	/*padding: 6px 12px;*/
    /*border-radius: 6px;*/
}


/* ------------------------------
   SCROLL-ZOOM BACKGROUND
--------------------------------*/
.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-image: url('../Images/bkg3.1.1.png');
  background-size: 100%;
  background-position: center 20%;
  background-repeat: no-repeat;
  z-index: -3;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  z-index: -2;
  pointer-events: none;
  transition: background 0.25s linear;
}

/* ------------------------------
   FEATURES SECTION
--------------------------------*/
.features {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-shadow: 
	0 0 14px #000,
	0 0 15px #000,
    0 0 16px #000,
    0 0 24px #000;
  font-size: 20px;
}

.features h3 {
  font-size: 36px;
  color: #ffff33;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 0 6px #ffff33;
  text-shadow: 
	0 0 18px #000,
	0 0 17px #000,
    0 0 19px #000,
    0 0 28px #000;
}

.features ul {
  list-style: none;
  font-size: 20px;
}

.features li {
  margin: 30px 0 0;
  padding-left: 15px;
  border-left: 6px solid #39ff14;
}

/* ------------------------------
   GALLERY SECTION
--------------------------------*/
.gallery {
    padding: 60px 20px;
    /* [disabled]background: #111; */
}

.gallery h3 {
    font-size: 42px;
    color: #ffff33;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 6px #ffff33;
	text-shadow: 
	0 0 18px #000,
	0 0 17px #000,
    0 0 19px #000,
    0 0 28px #000;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    align-items: center;
}

.image-grid img {
    width: 100%;
    border-radius: 28px;
    border: 2px solid #3300cc;
    box-shadow: 0 0 12px #3300cc;
    transition: 0.3s;
}

.image-grid img:hover {
  transform: scale(1.03);
}
.image-grid a img {
}


/* ------------------------------
   CALL TO ACTION
--------------------------------*/
.cta {
  text-align: center;
  padding: 60px 20px;
  font-size: 24px;
  text-shadow: 
	0 0 18px #000,
	0 0 17px #000,
    0 0 19px #000,
    0 0 28px #000;
  
}

.cta h3 {
    font-size: 48px;
    color: #ffff33;
    margin-bottom: 250px;
    text-shadow: 0 0 8px #ffff33;
    margin-top: -50px;
	text-shadow: 
	0 0 18px #000,
	0 0 17px #000,
    0 0 19px #000,
    0 0 28px #000;
}

.cta a {
    color: #000;
    background: #39ff14;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 0 10px #39ff14;
    transition: 0.2s;
    position: relative;
    top: 30px;
	text-shadow: none;
	
}

.cta a:hover {
  background: #66ff66;
  box-shadow: 0 0 14px #66ff66;
}

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #888888;
    font-size: 14px;
}
