:root {
  --text-color: #1a1c20;
  --link-color: #4a76ee;
  --background-color: #eeeff1;
}
 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
html {
  scroll-behavior: smooth;
}
 
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
}
 
a {
  color: var(--link-color);
  text-decoration: none;
}
 
/* ================================
   TYPOGRAPHY UTILITIES
================================ */
.h1 {
  text-align: center;
  margin: 1%;
}
 
.big {
  font-size: 50px;
  margin-bottom: 2%;
}
 
.small {
  font-size: 30px;
  font-weight: 400;
}
 
.para {
  text-align: center;
  margin-bottom: 5px;
  padding: 0 5%;
}
 
.boosted-link {
  text-align: center;
  margin-bottom: 30px;
}
 
/* ================================
   NAVBAR
================================ */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  height: 80px;
}
 
nav .left a {
  color: var(--text-color);
  font-size: 30px;
  font-weight: 600;
}
 
nav .right a {
  color: var(--text-color);
  margin: 0 10px;
}
 
nav .right a span {
  margin-left: 5px;
}
 
/* ================================
   MED PARA
================================ */
.med-para {
  text-align: center;
  font-size: 20px;
  margin: 0 5% 40px;
}
 
/* ================================
   VIDEO EMBED
================================ */
.video-embed {
  padding: 0 40px;
  margin-bottom: 20px;
}
 
.video-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
 
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
 
/* ================================
   SECTION LABEL
================================ */
.section-label {
  padding: 40px 40px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 0 40px;
}
 
/* ================================
   STILLS GRID (9 images)
================================ */
.stills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 20px 40px 60px;
}
 
.still-item {
  overflow: hidden;
}
 
.still-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(10%);
}
 
.still-item img:hover {
  transform: scale(1.03);
  filter: grayscale(0%);
}
 
/* 7th image spans 2 columns */
.still-wide {
  grid-column: span 2;
}
 
.still-wide img {
  aspect-ratio: 16 / 7;
}
 
/* ================================
   BTS GRID (4 images, 2 columns)
================================ */
.bts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px 40px 60px;
}
 
.bts-item {
  overflow: hidden;
}
 
.bts-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
 
.bts-item img:hover {
  transform: scale(1.02);
}
 
/* ================================
   INSTAGRAM GRIDS
================================ */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 40px 40px;
}
 
.instagram-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 60px;
}
 
.embed-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
 
.embed-wrapper blockquote.instagram-media {
  margin: 0 !important;
}
 
/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1000px) {
  .instagram-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }
 
  .instagram-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
 
@media (max-width: 900px) {
  .stills-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 20px 40px;
  }
 
  .still-wide {
    grid-column: span 2;
  }
 
  .still-wide img {
    aspect-ratio: 16 / 7;
  }
 
  .bts-grid {
    padding: 20px 20px 40px;
  }
 
  .video-embed {
    padding: 0 20px;
  }
 
  .instagram-grid {
    padding: 20px 20px 40px;
  }
 
  .instagram-grid-2 {
    padding: 20px 20px 60px;
  }
 
  .section-label {
    margin: 0 20px;
    padding: 30px 0 12px;
  }
}
 
@media (max-width: 860px) {
  nav .right a {
    font-size: 22px;
  }
 
  nav .right a span {
    display: none;
  }
}
 
@media (max-width: 700px) {
  .bts-grid {
    grid-template-columns: 1fr;
  }
 
  .big {
    font-size: 32px;
  }
 
  .small {
    font-size: 20px;
  }
}
 
@media (max-width: 600px) {
  .stills-grid {
    grid-template-columns: 1fr;
  }
 
  .still-wide {
    grid-column: span 1;
  }
 
  .still-wide img {
    aspect-ratio: 3 / 2;
  }
}
 
@media (max-width: 480px) {
  nav {
    padding: 0 20px;
  }
 
  nav .left a {
    font-size: 15px;
  }
 
  nav .right a {
    font-size: 15px;
    margin: 0 5px;
  }
 
  .big {
    font-size: 25px;
  }
}