/* ---------- GLOBAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Anton',sans-serif;
  background: #02091b;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

/* ---------- NAVBAR ---------- */
.navbar {
  width: 100%;
  background: rgba(0, 0, 0, 0.2); /* 🔥 make it semi-transparent */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);     /* 🔥 adds the blur effect */
  -webkit-backdrop-filter: blur(15px); /* for Safari support */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* optional subtle border */
}

.logo {
  font-family: "Anton", sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
}

.logo span {
  color: #00ff9d;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-family:"Bricolage Grotesque";
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  font-size: 1.2rem;
  position: relative;
  transition: color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #00ff9d;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #00ff9d;
}



/* ---------- HERO SECTION ---------- */
.hero-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 5vw;
  background: radial-gradient(circle at 20% 10%, #00ffae 0, #02091b 55%)
    no-repeat;
  overflow: hidden;
}

.hero {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

/* Character Design pill */
.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(5, 48, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Left text block */
.hero-content {
  flex: 0 0 40%;
  z-index: 2;
}

.hero-title {
  font-size: clamp(55px, 4.2vw, 48px);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 200;
  margin-bottom: 18px;
}

.hero-title span {
  color: #ff6b3c; /* orange CATCH */
}

.hero-subtitle {
  font-family: "Bricolage Grotesque";
  font-weight: 70;
  font-size: 19px;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}

.hero-button {
  display: inline-flex;
  margin-top: 26px;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #ff6b3c;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.6);
  background: #ff855f;
}

/* Right artwork */
.hero-art {
  flex: 0 0 55%;
  position: relative;
  height: clamp(260px, 50vh, 420px);
  border-radius: 10px;
  overflow: hidden;
  background: radial-gradient(circle at 20% 0, #3f8cff, #051632 60%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.7);
}

/* Vignette overlay */
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, transparent 0 40%, rgba(0, 0, 0, 0.45) 80%);
  pointer-events: none;
}

/* ---------- LONG IMAGE PLACEHOLDER SECTION ---------- */

.shots-vertical {
  background: #02091b;
  padding: 40px 0;
  display: flex;
  flex-direction: column;   /* vertical stacking */
  justify-content: center;
  align-items: center;
  gap: 10px;                /* spacing between images */
}

.shots-vertical img {
  width: 1200px;             /* same width for all images */
  object-fit: cover;
  box-shadow: 0 10px 35px rgba(0,0,0,0.4);
  display: block;
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-content {
    flex-basis: auto;
  }

  .hero-subtitle {
    margin: 0 auto;
  }
}


/*-----------More projects & footer-----------*/

/* 🧱 PROJECTS SECTION */
.projects-section {
  background: #010a19;
    margin-top: 60px;
  color: #fff;
  padding: 100px 80px;
}

.projects-heading {
  font-family: "Anton", sans-serif;
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 30px;
  font-weight: 100;
  letter-spacing:1px;
}

.projects-heading span {
   color: #00ff9d;
}

/* Grid layout */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Project card */
.project-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 0 10px rgba(0, 255, 157, 0.4);

}

/* Image container with fade bottom */
.project-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgb(0, 170, 119), transparent);
  transition: opacity 0.3s ease;
}

.project-card:hover .project-img::after {
  opacity: 0.1; /* 🔥 fade effect decreases on hover */
}

/* Image zoom */
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.1);
}

/* Info area */
.project-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.project-info h3 {
  font-size: 1.3rem;
  font-weight: 100;
  margin-bottom: 15px;
}


/* Arrow button */
.arrow-btn {
  position: absolute;
  bottom: 15px;
  right: -100px;
  background: #00ff9d;
  color: #000;
  border-radius: 50%;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0 15px #00ff9d;
  transition: 0.3s ease;

}

.arrow-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 25px #00ff9d;
}


/* FOOTER */
.bottom-links {
  display: flex;
  font-family: "Anton", sans-serif;
  justify-content: space-between;
  align-items: center;
  padding: 50px 100px;
  background: #000;
}

.bl-logo {
  font-size: 40px;
  font-weight: 100;
  color: #fff;
}

.bl-logo span {
  color: #4dffd0;
}

.bl-right {
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;  /* row gap | column gap */
}

.bl-right a {
  font-size: 23px;
  font-weight: 100;
  color: white;
  text-decoration: none;
  transition: 0.2s;
}

.bl-right a:hover {
  color: #00ffa6;
}
