* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #0d0d0d;
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  opacity: 1;
  will-change: letter-spacing;
}

/* Loader Styles */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0d0d0d;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.loader-name {
  font-size: 8vw;
  font-weight: 600;
  text-align: center;
  white-space: nowrap; /* Prevents text from wrapping during expansion */
  display: inline-block;
  letter-spacing: 50px;
  /* Offset the right-side spacing to keep it mathematically centered */
  text-indent: 50px;
}

/* Hero Section */
.hero {
  opacity: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  font-size: 0.8rem;
  font-weight: 600;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  margin-right: 30px;
  transition: letter-spacing 0.4s ease;
}

.navbar a:hover {
  letter-spacing: 2px;
}

.hero-content {
  text-align: center;
  margin-top: 5vh;
  justify-content: center;
  align-content: center;
  margin-bottom: 4vh;
}

.main-title {
  font-size: 11.5vw;
  font-weight: 600;
  line-height: 0.9;
}

.hero-description {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* Clamp logic:
     Minimum: 20px (Safe margin for mobile)
     Preferred: 4vw (Scales with your title size)
     Maximum: 80px (Prevents it from looking too inset on ultra-wide monitors)
  */
  padding-left: clamp(30px, 4vw, 90px);
  padding-right: clamp(30px, 4vw, 90px);
  /* Vertical spacing from the title */
  margin-top: 3vh;
  text-align: left;
  font-size: clamp(1rem, 1.2vw, 1.5rem); /* Scalable font size too */
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1;
  color: #9e9e9e;
}

#desc-col3 {
  text-align: right;
}

/* Slider / Carousel */
/* Container for the loop */
.slider-container {
  width: 100%;
  overflow: hidden;
  margin-top: 5vh; /* Adjust based on your text height */
  padding-bottom: 20px;
  cursor: grab;
}

.slider-container:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  /* This gap matches the narrow spacing in your design */
  gap: 15px;
  width: max-content;
  will-change: transform;
}

.slide {
  /* Adjust width to control how many images are visible at once */
  width: 22vw;
  min-width: 280px;
  /* Matches the vertical 'card' look in your screen recording */
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Optional: subtle scale on load */
  transform: scale(1.1);
  transition: transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.slide:hover img {
  transform: scale(1); /* Smooth zoom-out effect on hover */
}

.process-section {
  padding: 15vh clamp(20px, 5vw, 100px);
  padding-bottom: 2%;
  background-color: #0d0d0d;
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10vh;
}

.process-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.process-dash {
  width: 6em;
  height: 2em;
  background-color: #fff;
  display: block;
}

.process-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
  /* Starting state: wide and invisible */
  letter-spacing: 40px;
  text-indent: 40px;
  opacity: 0;
  will-change: letter-spacing, text-indent, opacity;
}

.process-subtitle {
  max-width: 40%;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  line-height: 1.4;
  text-transform: uppercase;
  text-align: left;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5vw;
}

.process-image-box {
  width: 100%;
  aspect-ratio: 1/1.1;
  background-color: #d9d9d9;
  overflow: hidden;
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
}

.process-item h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.process-item p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #a9a9a9;
  margin-bottom: 3rem;
}

.process-image-box img {
  width: 100%;
  height: 120%; /* Taller than container for vertical movement */
  object-fit: cover;
  position: absolute;
  top: -10%;
}

.projects-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.projects-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
}

.projects-section {
  padding: 10vh clamp(20px, 5vw, 100px);
  background: #0d0d0d;
  height: 100vh;
  margin-top: 5%;
  margin-bottom: 5%;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5vh;
}

/* Filter Styles */
.filter-controls {
  display: flex;
  gap: 30px;
}

.filter-btn {
  background: none;
  border: none;
  color: #666;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
  color: #fff;
}

/* Slider Controls */
.slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 30px;
}

.nav-arrow {
  background: #1a1a1a;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 0.7rem;
  cursor: pointer;
}

/* Card Hover Effects */
.card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 19/17;
  background: #222;
  overflow: hidden;
  border-radius: 2px; /* Subtle high-end rounding */
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  z-index: 2;
}

.card-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.project-card:hover .card-image-wrapper::after {
  opacity: 0.8;
}

.view-btn {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 15px 30px;
  background: #fff;
  color: #000;
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  pointer-events: none; /* Let the mouse move through it */
  opacity: 0;
  transform: scale(0);
}

.project-card:hover .view-btn {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.project-card:hover .placeholder-img {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.projects-slider-container {
  width: 100%;
  overflow: hidden; /* Hide the overflow but allow dragging */
  cursor: grab;
  padding-bottom: 50px;
}

.projects-slider-container:active {
  cursor: grabbing;
}

.projects-wrapper {
  display: flex;
  gap: 30px;
  width: max-content; /* Critical for Draggable to work */
  will-change: transform;
}

.project-card {
  width: clamp(450px, 45vw, 900px);
  flex-shrink: 0; /* Prevent cards from squishing */
  transition: transform 0.5s ease;
  cursor: pointer;
}

#homespace {
  width: 100%;
  height: 100%;
  background: url(../assets/images/homespacemin.jpg);
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

#collab {
  width: 100%;
  height: 100%;
  background: url(../assets/images/colbamin.jpg);
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

#fungames {
  width: 100%;
  height: 100%;
  background: url(../assets/images/fungames.jpg);
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

#wassa {
  width: 100%;
  height: 100%;
  background: url(../assets/images/wassa.jpg);
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

#cozycup {
  width: 100%;
  height: 100%;
  background: url(../assets/images/slider-2.jpg);
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

#thenest {
  width: 100%;
  height: 100%;
  background: url(../assets/images/the-nest.jpg);
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

#mikytrip {
  width: 100%;
  height: 100%;
  background: url(../assets/images/mikytrip.jpg);
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Card image placeholder */
.placeholder-img {
  width: 100%;
  height: 100%;
  background: url(../assets/images/fungames.jpg);
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.card-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-card:hover .placeholder-img {
  transform: scale(1.1);
}

.p-meta {
  color: #666;
}

.project-card:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.card-description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 20px;
  max-width: 90%;
  text-transform: uppercase;
}

.small-view-btn {
  align-self: flex-start;
  padding: 10px 20px;
  background: #fff;
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.small-view-btn:hover {
  transform: scale(1.05);
}

.logofolio-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-block;
}

.logofolio-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 8vh;
}

.logofolio-section {
  padding: 100px clamp(20px, 6vw, 120px);
  background: #0d0d0d;
  margin-bottom: 5%;
}

.logofolio-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.8fr; /* More space for the bento showcase */
  gap: 40px;
  align-items: stretch;
  margin-top: 9%;
}

/* Zone 1: Precise Logo Grid */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #222;
  border-left: 1px solid #222;
  height: 100%;
}

.logo-item {
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  background: #0f0f0f;
  cursor: pointer;
}

/* Grayscale + Opacity Filter from your request */
.logo-item img {
  width: 50%;
  filter: grayscale(1) brightness(0.5);
  opacity: 0.4;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.logo-item:hover img, .logo-item.active img {
  filter: grayscale(0) brightness(1.2);
  opacity: 1;
  transform: scale(1.1);
}

/* Zone 2: Revised Bento Map */
.bento-grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr); /* 3 rows to match 3 logo rows */
  gap: 20px;
}

.bento-slot {
  background-color: #151515;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  /* Prevents layout break */
}

/* Bento Area Definitions */
.slot-tall {
  grid-column: 1/2;
  grid-row: 1/4;
}

.slot-wide {
  grid-column: 2/5;
  grid-row: 1/2;
}

.slot-square:nth-of-type(3) {
  grid-column: 2/3;
  grid-row: 2/4;
}

.slot-square:nth-of-type(4) {
  grid-column: 3/4;
  grid-row: 2/3;
}

.slot-small:nth-of-type(5) {
  grid-column: 3/4;
  grid-row: 3/4;
}

.slot-small:nth-of-type(6) {
  grid-column: 4/5;
  grid-row: 2/4;
}

.contact-section {
  padding: 10vh clamp(20px, 5vw, 100px);
  background: #0d0d0d;
  margin-bottom: 5%;
}

/* Consistent Header Layout */
.contact-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 8vh;
}

.contact-title {
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
}

/* Contained Banner */
.contact-banner {
  width: 100%;
  margin-bottom: 6vh;
}

.banner-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 21/5; /* Cinematic contained ratio */
  overflow: hidden;
  background: #1a1a1a;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.banner-dakuma {
  font-size: 8vw;
  font-weight: 900;
  text-transform: uppercase;
}

.banner-subtitle {
  font-size: 1rem;
  color: #e2ff00; /* Matching yellow accent from design */
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Form Styles */
.contact-divider {
  border: 0;
  height: 1px;
  background: #333;
  margin: 20px 0 40px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 8vw;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: #151515;
  border: none;
  padding: 20px;
  color: #fff;
  margin-bottom: 15px;
  font-family: inherit;
}

.send-btn {
  width: 100%;
  padding: 18px;
  background: #fff;
  color: #000;
  font-weight: 900;
  border: none;
  cursor: pointer;
}

.scroll-top-btn {
  position: fixed;
  bottom: 40px;
  right: clamp(20px, 5vw, 100px);
  background: #fff;
  color: #000;
  padding: 12px 24px;
  font-weight: 900;
  cursor: pointer;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none; /* Prevents clicking while invisible */
  transform: translateY(30px);
  transition: background 0.3s ease, color 0.3s ease;
}

.scroll-top-btn:hover {
  background: #e2ff00; /* Matching your yellow accent */
}

.scroll-top-btn .arrow {
  font-size: 1rem;
}

.qr-img {
  width: 100%;
}

.qr-codes {
  width: 30%;
  display: flex;
  gap: 1rem;
  text-align: left;
  place-self: start;
  margin-top: 14%;
}

.social-icon {
  width: 1.7rem;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 1vh;
}

.site-footer {
  position: relative;
  background-color: #0d0d0d;
  border-top: solid 1px #2a2929;
  padding: 120px 0 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5%;
}

/* 1. The Large Background Watermark */
.footer-bg-text {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.035); /* Extremely faint architectural text */
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  letter-spacing: -0.02em;
}

/* 2. The Inner Navigation Box */
.footer-inner-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1400px;
  background-color: #1a1a1a; /* Lighter grey than the background */
  padding: 80px 60px 40px;
  margin-bottom: 50px;
}

.footer-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

/* 3. Back to Top Button Styling */
.back-to-top-btn {
  background: #f4f4f4;
  color: #000;
  border: none;
  padding: 18px 35px;
  display: flex;
  align-items: center;
  gap: 50px;
  cursor: pointer;
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-arrow svg {
  width: 22px;
  height: 22px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* 4. Bottom Information Bar */
.footer-bottom-info {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  color: #555;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-link {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0px; /* Starting state */
  text-indent: 0px; /* Starting state */
  transition: color 0.3s ease;
  cursor: pointer;
}/*# sourceMappingURL=app.css.map */