/* =========================================
   GLOBAL RESET
========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  overflow-x:hidden;
}

body{
  font-family:'Fredoka',sans-serif;
  background:linear-gradient(135deg,#07111f,#0f172a,#111827);
  color:white;
  position:relative;
}

/* =========================================
   BACKGROUND GRID
========================================= */

.creative-bg{
  position:fixed;
  inset:0;
  background-image:
  radial-gradient(rgba(0,212,255,0.08) 1px, transparent 1px);
  background-size:26px 26px;
  z-index:-1;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:30px 8%;
  gap:20px;
}

.logo{
  font-family:'Bangers',cursive;
  font-size:2.2rem;
  letter-spacing:2px;
  line-height:1;
}

nav{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

nav a{
  text-decoration:none;
  color:white;
  font-weight:600;
  transition:0.3s;
  white-space:nowrap;
}

nav a:hover,
nav .active{
  color:#ff0000;
}

/* =========================================
   HERO
========================================= */

.hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:50px 8%;
  gap:60px;
  flex-wrap:wrap;
}

.hero-left{
  flex:1;
  min-width:300px;
}

.archive-badge{
  display:inline-block;
  background:#ff0037;
  color:black;
  padding:12px 18px;
  border-radius:50px;
  border:4px solid black;
  box-shadow:6px 6px 0 black;
  font-weight:700;
  margin-bottom:25px;
}

.hero h1{
  font-family:'Bangers',cursive;
  font-size:6rem;
  line-height:0.9;
  margin-bottom:25px;
  text-shadow:5px 5px 0 black;
}

.hero p{
  font-size:1.2rem;
  line-height:1.8;
  color:#d1d5db;
  max-width:620px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:35px;
  flex-wrap:wrap;
}

.main-btn,
.secondary-btn,
.watch-btn{
  text-decoration:none;
  color:white;
  padding:16px 28px;
  border-radius:18px;
  border:4px solid black;
  box-shadow:6px 6px 0 black;
  font-weight:700;
  transition:0.3s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.main-btn{
  background:#ff0000;
  color:black;
}

.secondary-btn{
  background:#111827;
}

.watch-btn{
  background:black;
}

.main-btn:hover,
.secondary-btn:hover,
.watch-btn:hover{
  transform:translateY(-6px);
  box-shadow:0 0 20px rgba(0,212,255,0.5);
}

/* =========================================
   HERO RIGHT
========================================= */

.hero-right{
  flex:1;
  min-width:300px;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
}

/* =========================================
   HERO IMAGE CARD
========================================= */

.hero-image-card{
  position:relative;
  width:100%;
  max-width:520px;
  border-radius:26px;
  overflow:hidden;
  border:4px solid #ff0000;
  background:#111;
  box-shadow:
    0 0 25px rgba(255,204,0,0.25),
    0 0 60px rgba(255,204,0,0.12);
  transition:0.4s ease;
  transform:rotate(-2deg);
}

.hero-image-card:hover{
  transform:rotate(0deg) scale(1.03);
}

.hero-image-card img{
  width:100%;
  display:block;
  object-fit:cover;
}

.image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(255,204,0,0.15),
    transparent
  );
  pointer-events:none;
}

.hero-image-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(
    circle at top left,
    rgba(255,255,255,0.15),
    transparent 60%
  );
  pointer-events:none;
}

/* =========================================
   MOODBOARD
========================================= */

.moodboard{
  width:420px;
  max-width:100%;
  background:#111827;
  padding:25px;
  border-radius:35px;
  border:5px solid black;
  box-shadow:12px 12px 0 black;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.rotate1{ transform:rotate(-3deg); }
.rotate2{ transform:rotate(2deg); }
.rotate3{ transform:rotate(-2deg); }

.pin-card{
  background:linear-gradient(135deg,#ff0022,#eb253f);
  padding:30px 20px;
  border-radius:20px;
  border:3px solid black;
  text-align:center;
  font-weight:700;
}

/* =========================================
   SPEECH BUBBLE
========================================= */

.speech-bubble{
  position:absolute;
  bottom:-25px;
  right:-10px;
  background:linear-gradient(135deg,#ff0000,#ff0000);
  color:#000;
  padding:14px 22px;
  border-radius:18px;
  font-weight:800;
  font-size:0.9rem;
  box-shadow:0 10px 30px rgba(255,204,0,0.35);
  max-width:260px;
}

/* =========================================
   GALLERY
========================================= */

.gallery-section{
  padding:100px 8%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:40px;
}

.gallery-card{
  background:#111827;
  padding:40px 30px;
  border-radius:30px;
  border:5px solid black;
  box-shadow:10px 10px 0 black;
  transition:0.3s;
}

.gallery-card:hover{
  transform:translateY(-10px);
}

.gallery-icon{
  font-size:3rem;
  margin-bottom:20px;
}

.gallery-card h2{
  font-size:2rem;
  margin-bottom:18px;
}

.gallery-card p{
  line-height:1.8;
  color:#d1d5db;
}

/* =========================================
   CREATIVE SECTION
========================================= */

.creative-section{
  padding:80px 8%;
  display:flex;
  justify-content:center;
}

.creative-box{
  width:100%;
  max-width:950px;
  background:linear-gradient(135deg,#ff0000,#eb2525);
  padding:50px;
  border-radius:40px;
  border:5px solid black;
  box-shadow:12px 12px 0 black;
  text-align:center;
}

.creative-box h2{
  font-family:'Bangers',cursive;
  font-size:4rem;
  margin-bottom:40px;
  color:white;
  text-shadow:4px 4px 0 black;
}

.creative-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:25px;
  margin-bottom:40px;
}

.creative-item{
  background:#111827;
  padding:30px 20px;
  border-radius:25px;
  border:4px solid black;
  transition:0.3s;
}

.creative-item:hover{
  transform:translateY(-8px);
}

.creative-item h3{
  font-size:2rem;
  margin-bottom:10px;
}

/* =========================================
   PINTEREST RED FIX
========================================= */

.pinterest-card,
.pinterest-btn{
  background:#E60023;
  color:white;
  border:4px solid black;
  box-shadow:6px 6px 0 black;
  font-weight:700;
  transition:0.3s;
}

.pinterest-card h2,
.pinterest-btn span{
  color:white;
}

.pinterest-card:hover,
.pinterest-btn:hover{
  transform:translateY(-6px);
  box-shadow:0 0 25px rgba(230,0,35,0.6);
  filter:brightness(1.05);
}

/* =========================================
   FOOTER
========================================= */

footer{
  text-align:center;
  padding:40px 20px;
  color:#9ca3af;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width:768px){

  .navbar{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    padding:25px 20px;
  }

  nav{
    justify-content:center;
    gap:14px;
  }

  .hero{
    flex-direction:column;
    text-align:center;
    padding:50px 20px;
    gap:50px;
  }

  .hero-left,
  .hero-right{
    width:100%;
    min-width:100%;
  }

  .hero h1{
    font-size:4rem;
  }

  .hero p{
    margin:auto;
    font-size:1.05rem;
  }

  .hero-buttons{
    justify-content:center;
  }

  .speech-bubble{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:20px;
    max-width:100%;
  }

  .gallery-section{
    padding:80px 20px;
  }

  .creative-section{
    padding:70px 20px;
  }

  .creative-box{
    padding:40px 25px;
  }

  .creative-box h2{
    font-size:3rem;
  }

  .moodboard{
    width:100%;
  }

}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width:576px){

  .logo{
    font-size:1.8rem;
  }

  nav a{
    font-size:0.9rem;
  }

  .hero{
    padding:40px 16px;
  }

  .hero h1{
    font-size:3rem;
    text-shadow:4px 4px 0 black;
  }

  .hero p{
    font-size:0.95rem;
    line-height:1.6;
  }

  .archive-badge{
    font-size:0.82rem;
    padding:9px 14px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
    width:100%;
  }

  .main-btn,
  .secondary-btn,
  .watch-btn{
    width:100%;
    max-width:320px;
  }

  .moodboard{
    grid-template-columns:1fr;
    padding:20px;
  }

  .pin-card{
    padding:24px 18px;
  }

  .gallery-card{
    padding:30px 22px;
  }

  .gallery-card h2{
    font-size:1.6rem;
  }

  .gallery-card p{
    font-size:0.95rem;
  }

  .gallery-icon{
    font-size:2.5rem;
  }

  .creative-box{
    border-radius:30px;
    padding:35px 18px;
  }

  .creative-box h2{
    font-size:2.2rem;
  }

  .creative-item{
    padding:24px 16px;
  }

  .creative-item h3{
    font-size:1.5rem;
  }

}

/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media (max-width:400px){

  .hero h1{
    font-size:2.4rem;
  }

  .creative-box h2{
    font-size:1.8rem;
  }

}