* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Druk';
  src: url('../fonts/Druk-Bold-Trial.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* HEAVY */

@font-face {
  font-family: 'Druk';
  src: url('../fonts/Druk-Heavy-Trial.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #ffffff;
  --accent-color: #ff6b6b;
  --pink: rgb(255, 0, 153);
  --light-bg: #f8f8f8;
  --text-dark: #1a1a1a;
  --text-light: #666666;
}

body {
  font-family: 'Druk', 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--secondary-color);
  line-height: 1.6;
}

/* NAVIGATION */
nav {
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  padding: 30px 50px;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  text-transform: lowercase;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: var(--accent-color);
}

/* HEADER */
.header {
  padding: 80px 50px 10px 50px;
}

.header h1 {
  font-family: 'Druk', sans-serif;
  font-size: 120px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--primary-color);
}

/* PROJECT IMAGE SECTION */
.project-image-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 50px 30px 50px;
  background-color: var(--secondary-color);
}

.project-image {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 830px;
  object-fit: contain;
}

/* PROJECT INFO SECTION */
.project-info {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding: 50px 50px;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
}

.info-left,
.info-right {
  display: flex;
  flex-direction: column;
}

.info-block {
  margin-bottom: 50px;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-block h3 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.info-block p {
  font-family: 'Inter';
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 400;
}

.info-block:hover {
  transform: translateX(8px);
  transition: transform 0.3s ease;
}

/* PROBLEM STATEMENT */
.problem-statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  margin: 80px 0px;
}

.problem-statement h2,
.user-research h2,
.research h2,
.the-solution h2,
.how-might-we h2,
.competitive-analysis h2,
.final-product-center h2 {
  font-family: 'Druk', sans-serif;
  font-size: 48px;
  font-weight: 900;
  text-transform: lowercase;
  color: var(--primary-color);
}

.problem-statement h3,
.user-research h3,
.the-solution h3,
.research h3,
.competitive-analysis h3,
.the-solution-analysis-box h3,
.final-product-center h3,
.final-product-box-a h3,
.final-product-box-b h3,
.what-i-learned-box h3,
.my-key-takeaways-box h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
  line-height: 1.3;
  max-width: 800px;
}

.problem-statement p,
.user-research p,
.research p,
.the-solution p,
.competitive-analysis p,
.how-might-we p,
.painpoint-box p,
.howmightwe-box p,
.the-solution-analysis-box p,
.final-product-center p,
.final-product-box p,
.what-i-learned p,
.what-i-learned-box p,
.my-key-takeaways-box p,
.final-product-box-a p,
.final-product-box-b p {
  font-family: 'Inter';
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
}

/* USER RESEARCH */
.user-research {
  padding: 50px 50px;
  background-color: var(--bg-section);
  border-bottom: 1px solid var(--border-color);
  width: 780px;
}

/* RESEARCH */
.research {
  padding: 50px 50px;
  background-color: var(--bg-section);
  border-bottom: 1px solid var(--border-color);
  width: 750px;
}

.research h3,
.competitive-analysis h3 {
  font-size: 28px;
}

/* COMPETITIVE ANALYSIS */
.competitive-analysis-section {
  padding: 50px 50px 40px 50px;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
}

.competitive-analysis {
  margin-bottom: 80px;
}

.competitor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.tripadvisor,
.googlemaps,
.agoda,
.traveloka {
  padding: 40px;
  background-color: var(--bg-section);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;

}

.tripadvisor:hover,
.googlemaps:hover,
.agoda:hover,
.traveloka:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid transparent;
  background:
  linear-gradient(#fff, #fff) padding-box,
  linear-gradient(135deg, #ff00cc, #ff66e5, #ff1493) border-box;
}

.tripadvisor img,
.googlemaps img,
.agoda img,
.traveloka img {
  max-width: 200px;
  height: auto;
  margin-bottom: 30px;
  object-fit: contain;
  padding-left: 40px;
}

.pros-cons {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pros h3,
.cons h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.pros p,
.cons p {
  font-family: 'Inter';
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* HOW MIGHT WE */
.how-might-we-section {
  padding: 100px 50px;
  background-color: var(--bg-section);
  border-bottom: 1px solid var(--border-color);
}

.how-might-we {
  margin-bottom: 60px;
  width: 600px;
}

.how-might-we p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  max-width: 900px;
}

/* =========================
HOW MIGHT WE ANALYSIS
========================= */

.how-might-we-analysis{
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 120px;
    margin-top: 80px;
    align-items: center;
    position: relative;
}

/* CENTER CONNECTING LINE */
.how-might-we-analysis::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background:
    linear-gradient(
        to bottom,
        #198CFF,
        #BE3DC5
    );
    opacity: 0.2;
}

/* COLUMNS */
.painpoint,
.howmightwe{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* CARD BASE */
.painpoint-box,
.howmightwe-box{
    position: relative;
    padding: 32px;
    background: white;
    border-radius: 24px;
    transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border 0.4s ease;
    overflow: hidden;
}

/* PAINPOINT */
.painpoint-box{
    border: 1.5px solid rgba(25, 140, 255, 0.3);
    box-shadow: 0 10px 30px rgba(25, 140, 255, 0.06);
}

/* HMW */
.howmightwe-box{
    border: 1.5px solid rgba(190, 61, 197, 0.3);
    box-shadow: 0 10px 30px rgba(190, 61, 197, 0.06);
    width: 600px;
}

/* HOVER EFFECT */
.painpoint-box:hover,
.howmightwe-box:hover{

    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* TOP GLOW LINE */
.painpoint-box::before,
.howmightwe-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
}

/* BLUE */
.painpoint-box::before{
    background:
    linear-gradient(
        90deg,
        #198CFF,
        #66B2FF
    );
}

/* PINK */
.howmightwe-box::before{
    background:
    linear-gradient(
        90deg,
        #BE3DC5,
        #FF5BEF
    );
}

/* TEXT */
.painpoint-box p,
.howmightwe-box p{
    font-family:'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.6;
    color: #1A1A1A;
}

/* LABEL */
.painpoint-box strong{
    display:block;
    margin-bottom:14px;
    font-size:18px;
    color:#198CFF;
    text-transform:uppercase;
}

.howmightwe-box strong{
    display:block;
    margin-bottom:14px;
    font-size:18px;
    color:#BE3DC5;
    text-transform:uppercase;
}

/* SOLUTION */
.solution {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 50px;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
}

.the-solution {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  margin-bottom: 30px;
}

.the-solution h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
  line-height: 1.3;
  max-width: 1000px;
}

.the-solution p {
  width: 1000px;
}

.the-solution-analysis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-top: 80px;
}

.the-solution-analysis-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.the-solution-analysis-box p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
}

/* SITEMAP, PROTOTYPING, VISUAL IDENTITY, HI-FI */
.sitemap,
.prototyping,
.visual-identity,
.hi-fi {
  padding: 80px 50px;
  border-bottom: 1px solid var(--border-color);
  min-height: 400px;
}

.sitemap,
.visual-identity {
  background-color: var(--bg-section);
}

.prototyping,
.hi-fi {
  background-color: var(--secondary-color);
}

.sitemap h2,
.prototyping h2,
.visual-identity h2,
.hi-fi h2 {
  font-family: 'Druk', sans-serif;
  font-size: 48px;
  font-weight: 900;
  text-transform: lowercase;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.sitemap img,
.prototyping img,
.visual-identity img,
.hi-fi img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* FINAL PRODUCT */
.final-product {
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
  padding-left: 20px;
}

.final-product-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  margin-bottom: 50px;
}

/* =========================
FINAL PRODUCT ANALYSIS
========================= */

.final-product-analysis{
    display:flex;
    flex-direction:column;
    gap:40px;
    margin-top:80px;
}

/* CARD BASE */
.final-product-box-a,
.final-product-box-b{

    width: 50%;
    padding:40px;
    border-radius:10px;
    background:white;
    transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
    position:relative;
    overflow:hidden;
}

/* LEFT */
.final-product-box-a{
    align-self:flex-start;
    border:1.5px solid rgba(25,140,255,0.3);
    box-shadow:
    0 10px 40px rgba(25,140,255,0.08);
}

/* RIGHT */
.final-product-box-b{
    align-self:flex-end;
    border:1.5px solid rgba(190,61,197,0.3);
    box-shadow:
    0 10px 40px rgba(190,61,197,0.08);
}

/* TOP GRADIENT LINE */
.final-product-box-a::before,
.final-product-box-b::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
}

.final-product-box-a::before{
    background:
    linear-gradient(
        90deg,
        #198CFF,
        #66B2FF
    );
}

.final-product-box-b::before{
    background:
    linear-gradient(
        90deg,
        #BE3DC5,
        #FF5BEF
    );
}

/* HOVER */
.final-product-box-a:hover,
.final-product-box-b:hover{
    transform:translateY(-8px);
    box-shadow:
    0 25px 70px rgba(0,0,0,0.08);
}

/* TITLE */
.final-product-analysis h3{
    font-size:36px;
    line-height:1.1;
    margin-bottom:20px;
    font-family:'Druk', sans-serif;
    text-transform:uppercase;
    letter-spacing:-1px;
}

/* TEXT */
.final-product-analysis p{
    font-size:20px;
    line-height:1.7;
    font-family:'Inter', sans-serif;
    color:#1A1A1A;
}

/* RESPONSIVE */
@media(max-width:768px){

    .final-product-box-a,
    .final-product-box-b{

        width:100%;

        padding:28px;
    }

    .final-product-analysis h3{
        font-size:24px;
    }

    .final-product-analysis p{
        font-size:16px;
    }
}

/* KEY TAKEAWAYS */
.my-key-takeaways {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 70px 50px 50px 30px;
  background-color: var(--bg-section);
  border-bottom: 1px solid var(--border-color);
}

.my-key-takeaways-box {
  padding: 40px;
  background-color: var(--secondary-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

/* WHAT I LEARNED */
.what-i-learned-from-this-project {
  padding: 50px 50px;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
}

.what-i-learned {
  margin-bottom: 80px;
  max-width: 900px;
}

.what-i-learned h2 {
  font-family: 'Druk', sans-serif;
  font-size: 48px;
  font-weight: 900;
  text-transform: lowercase;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.what-i-learned-analysis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 100px;
  margin-top: 60px;
}

.what-i-learned-box {
  padding: 40px;
  background-color: var(--bg-section);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .project-info {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 60px 30px;
  }
  
  .header h1 {
    font-size: 80px;
  }
  
  nav {
    gap: 20px;
    padding: 20px 30px;
  }
  
  .how-might-we-analysis {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 48px;
  }
  
  nav {
    gap: 15px;
    padding: 15px 20px;
    font-size: 12px;
  }
  
  .project-info {
    padding: 40px 20px;
    gap: 40px;
  }
  
  .competitor {
    grid-template-columns: 1fr;
  }
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 20px 20px;
  text-align: center;
}

.footer-content {
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  gap: 330px;
}

.footer-title {
  font-size: 230px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.footer-title:hover {
  color: var(--pink);
}

.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact a {
  font-size: 60px;
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-credit {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}