
@font-face {
  font-family: 'Micaelasfont-Regular';
  src: url('../fonts/Micaelasfont-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  box-sizing: border-box;
  height: 100%;
  overflow-x: hidden;
  background: url('../imgs/VertBGShort.png') center top/cover no-repeat;
}

*, *::before, *::after { 
  box-sizing: inherit; 
}

/* ============================================
   CUSTOM SCROLLBAR - DSK PINK THEME
   ============================================ */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ea71c5, #c753a4);
  border-radius: 10px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #c753a4, #a54186);
  box-shadow: 0 8px 20px rgba(234, 113, 197, 0.3);
}

::-webkit-scrollbar-corner {
  background: #ffffff;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #ea71c5 #ffffff;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100dvh;
  height: 100%;
  font-family: 'Sora';
  color: #000000;
  overflow-x: hidden;
}

.vertical-scroll {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3 {
  font-family: 'Micaelasfont-Regular', sans-serif;
  color: black;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 5rem);
  margin-top: 60px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  color: black;
  font-weight: 600;
  margin: 0;
}

p {
  font-size: 16px;
  width: 35%;
  font-family: "Sora", sans-serif;
  line-height: 1.6;
  color: black;
  margin: 0;
}
.section-content {
  max-width: 1200px;
  margin-right: 10%;
  margin-top: 20px;    
  margin-bottom: 20px;
}

/* ============================================
   KEYWORDS SECTION
   ============================================ */

.keywords-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 80%;
  justify-content: flex-start;
}

.keyword-tag {
  background: #ea71c5;
  color: rgb(0, 0, 0);
  padding: 12px 24px;
  border-radius: 25px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.keyword-tag:hover {
  background: #c753a4;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px #8213619e
}

/* ============================================
   DSK PROJECT PAGE STYLES - MATCHING REFERENCE DESIGN
   ============================================ */

/* Reset and Base Styles */
.dsk-main {
  padding-top: 80px;
  min-height: 100vh;
  font-family: 'Sora', sans-serif;
}

/* Project Header Section */
.project-header {
  max-width: 1200px;
  margin: 0 auto;
}

.header-content {
  position: relative;
}

/* Cassette Illustrations */
.cassette-illustrations {
  position: absolute;
  top: -40%;
  right: 25%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 30%;
}


/* Intended Audience */
.intended-audience {
  margin-top: 40px;
  max-width: 500px;
}

.intended-audience h3 {
  margin-bottom: 15px;
  text-transform: uppercase;
}

.intended-audience p {
  line-height: 1.6;
  width: 100%;
}

/* Overview Cards Section */
.overview-cards {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.overview-card {
  border-radius: 5px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  background-color:#ea71c5;
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.overview-card h2 {
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-content p {
  line-height: 1.6;
  width: 100%;
}

.overview-card:hover {
  transform: translateY(-8px) rotate(0deg);
  box-shadow: 0 20px 40px #8213619e;
}

/* Section Container */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Section Titles */
.section-title h2{
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Storyboards Section */
.storyboard-placeholder {
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.storyboard-placeholder img {
  max-width: 75%;
  height: auto;
}

/* Character Design Section */
.character-placeholder {
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  max-width: 75%;
  margin: 0 auto;
}

.character-placeholder img {
  max-width: 100%;
  height: auto;
}

/* Environments Section */
.environment-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.environment-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.environment-row:first-child .environment-item {
  width: 300px;
  height: 225px;
}

.environment-row:last-child .environment-item {
  width: 300px;
  height: 225px;
}

.environment-item {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.environment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Assets and Typography Section */
.assets-typography-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* Assets Column */
.assets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.asset-item {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asset-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* Typography Column */
.typography-content p {
  line-height: 1.6;
  margin-bottom: 20px;
  width: 100%;
  align-items: left;
}


.DSKText{
    width: 70%;
    height: auto;
}

/* Style Frames Section */
.styleframes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.styleframe-row {
  display: contents;
}

.styleframe-item {
  width: 100%;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.styleframe-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Final Video Section */
.final-video-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.video-description p {
  line-height: 1.6;
  margin-top: 20px;
  width: 100%;
}

.video-placeholder {
  text-align: center;
    /* Polaroid styling */
  border-top: 15px solid #ffffff;
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff;
  border-bottom: 15px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 
              0 0 0 1px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.video-placeholder video {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cassette-illustrations {
    position: static;
    margin: 20px 0;
    max-width: none;
  }
  
  .assets-typography-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .final-video-content {
    grid-template-columns: 1fr;
  }
  
  .environment-row {
    flex-wrap: wrap;
  }
  
  .styleframes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .project-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .environment-row:first-child .environment-item {
    width: 225px;
    height: 150px;
  }
  
  .environment-row:last-child .environment-item {
    width: 180px;
    height: 120px;
  }
  
  .styleframes-grid {
    grid-template-columns: 1fr;
  }
  
  .assets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
