/* ====================  E Y E  S T U N N E R S  ====================
   
   ███████╗██╗   ██╗███████╗███████╗████████╗███╗   ██╗███╗   ██╗
   ██╔════╝╚██╗ ██╔╝██╔════╝██╔════╝╚══██╔══╝████╗  ██║████╗  ██║
   █████╗   ╚████╔╝ █████╗  ███████╗   ██║   ██╔██╗ ██║██╔██╗ ██║
   ██╔══╝    ╚██╔╝  ██╔══╝  ╚════██║   ██║   ██║╚██╗██║██║╚██╗██║
   ███████╗   ██║   ███████╗███████║   ██║   ██║ ╚████║██║ ╚████║
   ╚══════╝   ╚═╝   ╚══════╝╚══════╝   ╚═╝   ╚═╝  ╚═══╝╚═╝  ╚═══╝
                         RB3RGONE • 2025
   ----------------------------------------------------------------
   (If you're seeing this, you're part of the curious few…)  
=================================================================== */

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

html, body {
  height: 100%;
 
}


body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  background: #0d0e14;
  color: #e5e5e5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  height: 100%;
    overscroll-behavior-y: none;
}

.page-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}


.pulse {
    animation: glow 3s ease-in-out infinite;
}
@keyframes glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

main, header, section, footer {
  position: relative;
  z-index: 1;
}

  /* ---------------------------------
    🔺 SITE HEADER + NAVIGATION
  ---------------------------------- */

  /* Header wrapper */
  header,
  .site-header {
    background: #000;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 9999;
  }

  /* Inner layout: brand + hamburger */
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* Brand section */
  .brand {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .brand-link {
  text-decoration: none;
  color: #fff;
  display: inline-block;
}


  .logo {
    height: 70px;
  }

  .company-name {
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: scaleX(1.2);
      text-decoration: none;
    color: inherit;
  }

  /* Hamburger button */
  .menu-icon {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }

  /* Main nav layout */
  .nav-menu,
  .nav-menu ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    padding: 1rem 0 0;
  }

  

  .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .nav-menu a:hover,
  .nav-menu a:focus {
    color: #00BFFF; /* Star Blue hover */
}

  .nav-menu .nav-divider {
  width: 1px;
  background-color: #444;
  height: 24px;
  align-self: center;
}

  .nav-menu .nav-email {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
}



.nav-menu .nav-email a {
  color: #00bfffd8;
  font-weight: bold;
  text-decoration: none;
}

.nav-menu .nav-email a:hover {
  color: #00BFFF; 
} 

.nav-menu .nav-email small {
  font-size: 0.75rem;
  color: #aaa;
}

.mobile-divider {
  display: none;
}

  /* ---------------------------------
    📱 MOBILE NAV OVERLAY
  ---------------------------------- */
  @media (max-width: 768px) {
    .menu-icon {
      display: block !important;
      position: relative;
      z-index: 10002;
    }

    .nav-menu {
      position: fixed !important;
      top: 0;
      left: 0;
      width: 100% !important;
      height: 100vh;
      background: #111;
      display: none;
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      box-sizing: border-box;
      overflow-y: auto;
      z-index: 10001;
      
    }

    .nav-menu.active {
      display: flex;
    }

    .nav-menu ul {
      flex-direction: column;
      gap: 1.5rem;
      padding: 0;
      margin: 0;
    }

    .nav-menu a {
      font-size: 1rem;
    }

    .nav-menu .nav-email {
    align-items: flex-start;
  }

    .nav-menu .nav-divider {
    display: none; /* Hide divider on mobile */
  }

    .mobile-divider {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #444;
    margin: 1rem 0 0.5rem;
  }

  /* Ensure library content stays below overlay */
  .track,
  .waveform,
  .library {
    position: relative;
    z-index: auto !important;
  }

  .waveform {
  position: relative !important;
  z-index: 0 !important;
}


}

/* ---------------------------------
   👤 INTRO SECTION
---------------------------------- */
.intro {
  padding: 4rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-columns {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.intro-columns .col {
  flex: 1;
  color: #ddd;
}

.intro-columns .col.quote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: #fff;
  font-weight: 300;
  padding-left: 1.5rem;
  border-left: 4px solid #555;
  position: relative;
}

.intro-columns .col.quote::before {
  content: "“";
  font-size: 4rem;
  color: #888;
  position: absolute;
  left: -10px;
  top: -20px;
}

img.profile {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
  border: 2px solid #444;
}

img.signature {
  padding-top: 60px;
}

.profile-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.signature-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Content Cols below 1025px */
@media (max-width: 1024px) {
  .intro-columns {
    flex-wrap: wrap;
    justify-content: center;
  }

  .intro-columns .col {
    flex: 1 1 45%;
    max-width: 45%;
    text-align: center;
  }

  .intro-columns .col.quote {
    flex: 1 1 100%;
    max-width: 700px;
    margin: 2rem auto 0;
    text-align: left;
  }

  .img.profile,
  .img.signature {
    margin-left: auto;
    margin-right: auto;
  }

  img.signature {
  padding-top: 60px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
}

/* Below 385px */
@media (max-width: 385px) {
  .profile-signature {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: left;
  }

  .signature-block {
    align-items: flex-start;
  }

  img.profile {
    width: 120px;
    height: 120px;
  }

  img.signature {
    max-width: 100px;
    padding-top: 0;
  }

  .tagline {
    font-size: 0.85rem;
    color: #ccc;
  }
}



/* ---------------------------------
   🎵 LIBRARY & TRACKS
---------------------------------- */
.library {
  flex: 1;
  padding: 2rem;
  position: relative;
  z-index: 5;
}

.track {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.track img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.track-info {
  min-width: 150px;
}

.track-title {
  font-weight: bold;
  color: #fff;
}

.track-category {
  color: #aaa;
}

.track-artist {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 4px;
  font-style: italic;
  letter-spacing: 0.3px;
}

.waveform {
  flex: 1 1 auto;
  height: 60px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(255,255,255,0.05);
}

.play-btn {
  background: #333;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Cards on mobile */
.track-library {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.track-card {
  flex: 1 1 300px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 🎵 Track layout on mobile */
@media (max-width: 800px) {
  .track {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .track img {
    width: 100%;
    max-width: 300px;
    height: auto;
  }

  .waveform {
    width: 100%;
    margin: 0.5rem 0;
  }

  .play-btn {
    margin-top: 0.5rem;
  }

  .track-info {
    flex: 0 0 auto;
    min-width: 70px;
  }
  
}

/* ----------------------------------
     ORIGINS AND MISSION
----------------------------------- */

.content-section{
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
  line-height: 1.8;
  font-size: 1rem;
  color: #ddd;
  /* font-family: 'Georgia', serif; */
}

.content h1 {
  font-size: 2.2rem;
  margin-bottom: 2rem;  
  color: #00BFFF;
  border-left: 4px solid #00BFFF;
  padding-left: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}


.what-we-do-section {
  background: #000;
  color: #ccc;
  padding: 5rem 2rem;
  /* font-family: 'Georgia', serif; */
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.what-we-do-content {
  max-width: 800px;
  margin: 0 auto;
}

.what-we-do-content h2 {
  font-size: 2rem;
  color: #00BFFF;
  text-transform: uppercase;
  border-left: 4px solid #00BFFF;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

/* ---------------------------------
   🔻 SWIPES
---------------------------------- */
.swiper-pagination-bullet {
  background-color: white !important;
   opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #00bfff !important;
   opacity: 1;
}
.swiper-pagination-active{
  background-color: #00BFFF; /* bright blue active dot */
}

.about-swiper {
  width: 100%;
  overflow: hidden;
  position: relative
  }

.swiper-wrapper {
  display: flex;
  flex-wrap: nowrap }

.swiper-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  box-sizing: border-box;
}

.slide-content {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;              /* centers the content */
  padding: 0 1rem;             /* adds side padding for mobile */
  box-sizing: border-box;      /* ensures padding doesn't break layout */
}

@media (max-width: 768px) {
  .slide-content {
    max-width: 90%;
    padding: 0 1rem;
        font-size: 14px;      /* smaller font */
    line-height: 1.3;     /* tighter lines */
    padding: 10px 15px; 
  }
}

/* Swiper Arrows */
.swiper-button-prev,
.swiper-button-next {
  color: white;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
  width: 44px;
  height: 44px;
}

/* Centered content is 800px + 2rem padding (~880px total) */
.swiper-button-prev {
  left: calc(50% - 460px); /* 800 / 2 + 60 buffer */
}

.swiper-button-next {
  right: calc(50% - 460px);
}

@media (max-width: 900px) {
  .swiper-button-prev {
    left: 1rem;
  }

  .swiper-button-next {
    right: 1rem;
  }
}





/* ---------------------------------
   🧱 FOOTER
---------------------------------- */
.footer-divider {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: visible;
  line-height: 0;
}

.footer-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

footer {
  background: #000;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  z-index: 10;
  margin-top: auto;
  width: 100%;
}

footer img.logo {
  height: 60px;
}

footer .links a {
  color: white;
  margin: 0 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-address {
  color: #555555;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}


.footer-banner {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
}


@media (max-width: 480px) {
.footer-banner {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

}






/* ---------------------------------
   🌌 STARFIELD BACKGROUND
---------------------------------- */
.starfield {
  position: fixed;
  inset: 0;
  width: 200%;
  height: 200%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.3; }
}

/* ---------------------------------
   🌌 NEBULA BACKGROUND
---------------------------------- */
.nebula-bg {
  position: fixed;
  inset: 0;
  width: 200%;
  height: 200%;
  background: url("img/nebula4.jpg") center/cover no-repeat;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
  animation: nebulaDrift 90s ease-in-out infinite;
}

@keyframes nebulaDrift {
  0% { transform: scale(1) translate(0,0); }
  50% { transform: scale(1.1) translate(-2%, -2%); }
  100% { transform: scale(1) translate(0,0); }
}

