/* ---------- GLOBAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Anton',sans-serif;
  background: #02091b;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

/* ---------- NAVBAR ---------- */
    /* Mobile menu animation */
.menu-toggle span {
      transition: all 0.3s;
    }
    
.menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
.menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
.menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }   

    
/* Hamburger animation */
        .hamburger span {
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Prevent body scroll when menu is open */
        body.menu-open {
            overflow: hidden;
        }

/* ---------- HERO SECTION ---------- */
.hero-wrapper {
  min-height: 80vh;
  padding-bottom: 0px; /* Remove bottom padding of Hero */
  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(65px, 6vw, 90px); 
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 200;
  margin-bottom: 24px;
}

.hero-title span {
  color: #ff6b3c; /* orange CATCH */
}

.hero-subtitle {
  font-family: "Bricolage Grotesque";
  font-weight: 70;
  font-size: 62px;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 0.95;
  margin-bottom: 24px;
}

.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 {
  padding-top: 10px; /* Reduced from 40px to pull the gallery up */
  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 SECTION - FIXED RESPONSIVE */
/* ==================================== */
.more-projects-section {
  background: #010a19;
  color: #fff;
  padding: 40px 40px; /* Consistent padding */
}

.more-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  justify-items: center;
}

.more-project-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.1);
  transition: all 0.3s ease;
}

.more-project-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.more-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Desktop Responsive View - UPDATED */
@media (min-width: 768px) {
  .more-projects-section {
    /* Reduced horizontal padding from 200px to 80px */
    padding: 40px 80px; 
  }

  .more-projects-grid {
    grid-template-columns: repeat(3, 1fr);
    /* Reduced gap from 30px to 20px for tighter spacing */
    gap: 20px !important; 
  }
}

/* Hover effects */
@media (hover: hover) {
  .more-project-card:hover {
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.3);
    transform: translateY(-5px);
  }

  .more-project-card:hover .more-project-img img {
    transform: scale(1.1);
  }

  .more-project-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 255, 157, 0.4), transparent);
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
}

/* 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: #00c38f;
}

.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;
}
