body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'SF Pro Display', -apple-system, sans-serif;
  
  
}

/* Premium Static Paper Texture */
body {
  background-image: url("https://www.transparenttextures.com/patterns/p6.png");
  background-repeat: repeat;
  background-attachment: fixed;
  background-blend-mode: multiply;
}

/* =========================================================================== */



/* Main Container */
.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--global-padding);
  box-sizing: border-box;
}

.top-section {
  width: 100%;
  max-width: 1600px;
}

.top-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}



/* =========================================================================== */




/* ========================= */
/* Landing Page Typography   */
/* ========================= */

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem; /* Spacing between the mono text and giant text */
  width: 100%;
  margin-top: 2rem; /* Gives it breathing room below the navbar */
}

/* 1. Monospace Intro */
.mono-intro h1 {
  font-family: 'iA Writer Duospace', monospace;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-color);
  opacity: 0.7;
  letter-spacing: 0.05em;
  margin: 0;
}

/* 2. Massive Brutalist Nav */
.massive-hero-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.giant-link {
  font-family: 'SF Pro Display', sans-serif;
  font-size: clamp(4rem, 10vw, 12rem); 
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--text-color);
  text-decoration: none;
  /* Removed the transform transition, matching the Writing page exactly */
  transition: opacity 0.4s ease, color 0.4s ease;
  width: max-content;
}

/* Focus Hover Effect (Smooth Fade, No Movement) */
.massive-hero-nav:hover .giant-link {
  opacity: 0.3; /* Gently dims the un-hovered links */
}

.massive-hero-nav .giant-link:hover {
  opacity: 1;
  color: var(--accent-color);
  /* The transform: translateX nudge has been completely removed */
}

.adjustmentfont{
  font-family: 'iA Writer Duospace', monospace;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-color);
  opacity: 0.7;
  letter-spacing: 0.05em;
  margin: 0
  
}

/* =========================================================================== */




/* ========================= */
/* Journey Projection (Hook) */
/* ========================= */

.journey-projection {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  /* The Animation Setup */
  opacity: 0;
  clip-path: inset(0 100% 0 0); /* Hides the text by clipping the right side */
  transition: opacity 0.4s ease, clip-path 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}

.journey-projection.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0); /* Wipes open to reveal the text */
}

#journey-text {
  font-family: 'iA Writer Duospace', monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
  opacity: 0.9;
  
  /* Minimalist framing */
  padding-left: 1rem;
  border-left: 2px solid var(--text-color);
}


/* ----------------------------------------- */
/* 1. MASSIVE MONITORS (1400px and up)       */
/* Sits in the center-right void             */
/* ----------------------------------------- */
@media (min-width: 1400px) {
  .journey-projection {
    right: 8vw;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 340px;
  }
  #journey-text {
    padding-left: 1.5rem;
    border-left: 1px solid var(--accent-color);
    text-align: left;
  }
}

/* ----------------------------------------- */
/* 2. LAPTOPS & TABLETS (900px to 1399px)    */
/* Anchors to bottom-right to avoid overlap  */
/* ----------------------------------------- */
@media (max-width: 1399px) and (min-width: 900px) {
  .journey-projection {
    right: var(--global-padding);
    bottom: 4.5rem; /* Floats perfectly above your footer */
    top: auto;
    transform: none;
    max-width: 300px;
  }
  #journey-text {
    font-size: 0.85rem; /* Scales down slightly for tighter screens */
    padding-right: 1.5rem;
    border-left: none; /* Removes left border */
    border-right: 1px solid var(--accent-color); /* Adds right border */
    text-align: right; /* Flips the text alignment to hug the screen edge */
  }
}

/* ----------------------------------------- */
/* 3. MOBILE SCREENS (Below 900px)           */
/* Hidden, as hover doesn't exist on touch   */
/* ----------------------------------------- */
@media (max-width: 899px) {
  .journey-projection {
    display: none;
  }
}


/* =========================================================================== */



/* 3. Monospace Utility & Socials */
.mono-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem; 
  margin-top: 1.5rem;
}

.mono-utility a {
  font-family: 'iA Writer Duospace', monospace;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text-color);
  padding: 0 0 0.3rem 0; 
  border-bottom: 1px solid rgba(26, 26, 26, 0.2); 
  transition: all 0.3s ease;
  opacity: 0.8;
}

.mono-utility a:hover {
  opacity: 1;
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.mono-utility a.fika-link {
  font-weight: 700;
  color: var(--accent-color);
  border-bottom-color: rgba(200, 90, 50, 0.3); 
  opacity: 1;
}

.mono-utility a.fika-link:hover {
  border-bottom-color: var(--accent-color);
}

/* ========================= */
/* Mobile Adjustments        */
/* ========================= */
@media (max-width: 600px) {
  
  
  .hero-content-wrapper {
    margin-top: 2rem; /* Push down further to clear mobile navbar */
    gap: 1.5rem;
  }
  
  .mono-utility {
    gap: 1rem;
    flex-direction: column; /* Stack socials on mobile for easier tapping */
  }
}



/* =========================================================================== */




/* ========================= */
/* Buttons & Quick Links     */
/* ========================= */

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem 1.5rem; 
  justify-content: flex-start; 
  width: 100%;
}

/* Keeping the static minimalist underline */
.quick-links a {
  font-size: var(--shared-text-size);
  text-decoration: none;
  color: var(--text-color);
  padding: 0 0 0.3rem 0; 
  border-bottom: 1px solid rgba(26, 26, 26, 0.2); 
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.quick-links a:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

/* The Fika Link */
.quick-links a.fika-link {
  font-weight: 700;
  color: var(--accent-color);
  border-bottom-color: rgba(200, 90, 50, 0.3); 
}

.quick-links a.fika-link:hover {
  border-bottom-color: var(--accent-color);
}



/* =========================================================================== */



















