/* =====================================================
INSINGIZI WEBSITE STYLES
===================================================== */

/* =====================================================
COLOR SYSTEM
===================================================== */

:root{
  --primary-black:#0a0a0a;
  --earth-brown:#4a2e1f;
  --gold-accent:#c79b57;
  --light-brown:#7a5230;
  --white:#ffffff;
}

/* =====================================================
BASE RESET
===================================================== */

html,body{
  height:100%;
  margin:0;
  font-family:"Helvetica Neue", Arial, sans-serif;
  background:var(--primary-black);
  color:var(--white);
  overflow-x:hidden;
}

/* =====================================================
HERO SECTION
Blurred cinematic background
===================================================== */

.hero{
  position:relative;
  min-height:100vh;
  padding:140px 20px 180px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

/* =====================================================
BLURRED BACKGROUND IMAGE LAYER
===================================================== */

.hero::before{
  content:"";
  position:absolute;
  inset:0;

  background-image:inherit;
  background-size:cover;
  background-position:center;

  filter:blur(2px);

  transform:scale(1.08);

  animation:heroBreathing 8s ease-in-out infinite;

  z-index:0;
}

/* =====================================================
CINEMATIC DARK OVERLAY
===================================================== */

.hero::after{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.75),
    rgba(0,0,0,.85),
    rgba(0,0,0,.75)
  );

  animation:heroLighting 6s ease-in-out infinite;

  z-index:1;
}

@keyframes heroBreathing {

  0%{
    transform:scale(1.08);
  }

  50%{
    transform:scale(1.14);
  }

  100%{
    transform:scale(1.08);
  }

}
@keyframes heroLighting {

  0%{
    opacity:.9;
  }

  50%{
    opacity:1;
  }

  100%{
    opacity:.9;
  }

}

/* =====================================================
HERO TEXT
===================================================== */
#ripple-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;

  z-index:2;

  pointer-events:none;
}

.hero-text{
  position:relative;
  z-index:5;

  max-width:900px;

  animation:fadeUp 1.2s ease;

  padding:30px 40px;
  border-radius:8px;
}

.hero-text h1{

  font-family:'Playfair Display', serif;

  font-size:65px;

  font-weight:700;

  color:#ffffff;

  text-shadow:
  0 10px 40px rgba(0,0,0,0.9),
  0 0 60px rgba(255,255,255,0.15),
  0 0 25px rgba(199,155,87,0.2);

}

.hero-text span{
  color:var(--gold-accent);

  text-shadow:
    0 0 10px rgba(199,155,87,0.7),
    0 0 25px rgba(199,155,87,0.4);
}

.hero-text p{
  color:#ffffff;
  margin-top:20px;
  letter-spacing:6px;
  font-size:14px;
  text-transform:uppercase;
  color:var(--gold-accent);
}

.hero-lead{
  color:#ffffff;
  font-size:18px !important;
  letter-spacing:20px !important;
  text-transform:uppercase;
  margin-bottom:12px;
  opacity:0.95;

  text-shadow:
  0 4px 20px rgba(0,0,0,0.9),
  0 0 20px rgba(255,255,255,0.15);
}

/* divider line */

.hero-divider{
  width:120px;
  height:3px;
  margin:25px auto;

  background:linear-gradient(
    90deg,
    transparent,
    var(--gold-accent),
    transparent
  );
}

/* =====================================================
FLOATING HERO NAVIGATION
Inspired by Peggy Gou / HPC Cockpit
===================================================== */

.hero-navbar{
  position:absolute;
  bottom:100px;
  width:100%;
  display:flex;
  justify-content:center;
  z-index:6;
}

/* remove bootstrap background */

.main-navbar{
  background:none !important;
  border:none;
  box-shadow:none;
}

/* nav container */

.hero-navbar .navbar-nav{

  display:flex;
  align-items:center;
  gap:42px;

  padding:16px 45px;

  border-radius:60px;

  background:none;
  border:none;
  box-shadow:none;

}

/* nav links */

.hero-navbar .nav-link{

  color:#ffffff;
  font-weight:600;
  letter-spacing:2px;
  font-size:15px;

  position:relative;

  transition:all .35s ease;

}

/* glowing underline */

.hero-navbar .nav-link::after{

  content:"";

  position:absolute;

  left:50%;
  bottom:-10px;

  width:0%;
  height:2px;

  background:linear-gradient(
    90deg,
    transparent,
    var(--gold-accent),
    transparent
  );

  transform:translateX(-50%);
  transition:0.4s;

}

.hero-navbar .nav-link:hover::after{
  width:90%;
}

/* glow */

.hero-navbar .nav-link:hover{
  color:var(--gold-accent);
  text-shadow:0 0 10px rgba(199,155,87,0.6);
}

/* active page highlight */

.hero-navbar .active .nav-link{

  color:var(--gold-accent);

}

.hero-navbar .active .nav-link::after{

  width:70%;
}

/* =====================================================
SOCIAL MEDIA ICONS
===================================================== */

.hero-social{

  position:absolute;
  bottom:25px;
  left:50%;

  transform:translateX(-50%);

  display:flex;
  gap:28px;

  z-index:10;

}

/* icons */

.hero-social a{

  color:#ffffff;
  font-size:20px;

  opacity:0.85;

  transition:all .35s ease;

}

/* hover interaction */

.hero-social a:hover{

  color:var(--gold-accent);

  transform:translateY(-4px) scale(1.15);

  opacity:1;

}

.hero-social a:nth-child(1):hover{ color:#e72323; }   /* YouTube */
.hero-social a:nth-child(2):hover{ color:#ff6767; }   /* Apple */
.hero-social a:nth-child(3):hover{ color:#1db954; }   /* Spotify */
.hero-social a:nth-child(4):hover{ color:#1877f2; }   /* Facebook */
.hero-social a:nth-child(5):hover{ color:#ffffff; }   /* X */
.hero-social a:nth-child(6):hover{ color:#e4405f; }   /* Instagram */

/* =====================================================
SCROLL INDICATOR
===================================================== */

.scroll-indicator{
  position:absolute;
  bottom:120px;
  left:50%;
  transform:translateX(-50%);
}

.scroll-indicator span{
  width:26px;
  height:40px;

  border:2px solid #fff;
  border-radius:20px;

  display:block;
  position:relative;
}

.scroll-indicator span::after{
  content:"";
  position:absolute;

  top:8px;
  left:50%;

  width:4px;
  height:8px;

  background:white;

  transform:translateX(-50%);
  animation:scroll 2s infinite;
}

@keyframes scroll{
  0%{opacity:0; transform:translate(-50%,0);}
  50%{opacity:1;}
  100%{opacity:0; transform:translate(-50%,15px);}
}

/* =====================================================
RESPONSIVE
===================================================== */

@media(max-width:900px){

  .hero-text h1{
    font-size:44px;
  }

  .hero-navbar ul{
    gap:25px;
  }

  }

  @media(max-width:600px){

  .hero-text h1{
    font-size:32px;
  }

  .hero-text p{
    font-size:12px;
  }

  .hero-navbar ul{
    gap:18px;
    padding:10px 20px;
  }

}

/* =====================================================
RESPONSIVE DESIGN
===================================================== */

/* ===============================
TABLET (1024px and below)
=============================== */

@media (max-width:1024px){

  .hero{
    padding:120px 20px 140px;
  }

  .hero::before{

    animation:heroPan 25s ease-in-out infinite;

    transform:none;

    background-size:cover;

    background-position:30% center;

  }

  @keyframes heroPan{

    0%{
      background-position:20% center;
    }

    50%{
      background-position:80% center;
    }

    100%{
      background-position:20% center;
    }

  }

  /* hero text */

  .hero-text{
    max-width:650px;
    padding:20px;
  }

  .hero-text h1{
    font-size:48px;
    line-height:1.2;
  }

  .hero-lead{
    letter-spacing:12px !important;
    font-size:16px !important;
  }

  /* navigation */

  .hero-navbar{
    bottom: 100px;
  }

  .hero-navbar .navbar-nav{
    gap:28px;
    padding:12px 32px;
  }

  /* social icons */

  .hero-social{
    bottom:18px;
  }

}


/* ===============================
SMALL TABLETS (900px and below)
=============================== */

@media (max-width:900px){

  .hero::before{

    animation:heroPan 25s ease-in-out infinite;

    transform:none;

    background-size:cover;

    background-position:30% center;

  }

  @keyframes heroPan{

    0%{
      background-position:20% center;
    }

    50%{
      background-position:80% center;
    }

    100%{
      background-position:20% center;
    }

  }

  .hero-text h1{
    font-size:42px;
  }

  .hero-navbar .navbar-nav{
    gap:22px;
  }

}


/* ===============================
MOBILE (768px and below)
=============================== */

@media (max-width:768px){

.hero{
  padding:110px 20px 120px;
}

.hero::before{

  animation:heroPan 25s ease-in-out infinite;

  transform:none;

  background-size:cover;

  background-position:30% center;

}

@keyframes heroPan{

  0%{
    background-position:20% center;
  }

  50%{
    background-position:80% center;
  }

  100%{
    background-position:20% center;
  }

}

/* hero text */

.hero-text{
  padding:0 10px;
}

.hero-text h1{
  font-size:34px;
  line-height:1.3;
}

.hero-lead{
  letter-spacing:8px !important;
  font-size:14px !important;
}

/* vertical nav */

.hero-navbar{
  position:relative;
  bottom:auto;
  margin-top:40px;
}

.hero-navbar .navbar-nav{
  flex-direction:column;
  gap:20px;
  padding:0;
}

/* nav links */

.hero-navbar .nav-link{
  font-size:14px;
  letter-spacing:3px;
}

/* social icons */

.hero-social{
  bottom:18px;
  gap:22px;
}

.hero-social a{
  font-size:18px;
}

}


/* ===============================
SMALL PHONES (480px and below)
=============================== */

@media (max-width:480px){

.hero-text h1{
  font-size:28px;
}

.hero-lead{
  letter-spacing:6px !important;
}

.hero-navbar .nav-link{
  font-size:13px;
}

}