/* ─────────────────────────────────────────
   SECTION 1: LANDING
───────────────────────────────────────── */

.landing {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.landing::after {
  content: '';
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url('../assets/M@NLogo.png');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.studio-name {
  position: absolute;
  bottom: 100px;
  left: 20px;
  z-index: 1;
}

.studio-name h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3em;
  font-weight: 400;
  color: white;
  margin: 0;
  letter-spacing: 0.05em;
}

.studio-name h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  color: #cc44cc;
  font-style: italic;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.studio-name h3::after {
  content: '';
  display: inline-block;
  width: 40vw;
  height: 1px;
  background-color: white;
  opacity: 0.5;
}

/* ─────────────────────────────────────────
   SECTION 2: STUDIO OVERVIEW
───────────────────────────────────────── */

.studiooverview {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(to right, #6a2a9a 0%, #1a2f6a 100%);
  isolation: isolate;
}

.studiooverview::after {
  display: none;
}

.so-container {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 60px 0;
}

/* ── Banner row — full bleed edge to edge ── */
.bannerdiv {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  margin-bottom: 48px;
  margin-top: -40px;
  min-height: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.bannerdiv h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.2em, 2.8vw, 2.2em);
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: #6a2a9a;
  padding: 18px 50px 18px 20px;
  clip-path: polygon(0 0, 97% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.bannerdiv img {
  display: none;
}
.bannerdiv::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/pac-2.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  opacity: 0.25;
  z-index: 0;
}


/* ── Content row ── */
.so-content-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 24px;
  max-width: 960px;
  margin: 0 auto;
}

.leftcontent {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 600px;
  margin-top: -10px;
  padding-top: 90px;
}

.leftcontent p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(.8em, 1.6vw, 1em);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  margin: 0;
  max-width: 100%;
  text-align: center;
  
}

.teambutton {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95em;
  font-weight: 500;
  color: white;
  background: rgba(207, 59, 227, 0.6);
  border: none;
  outline: none;
  border-radius: 40px;
  padding: 14px 36px;
  cursor: pointer;
  width: fit-content;
  align-self: center;
  transition: background 0.2s;
  text-decoration: none;
}

.teambutton:hover {
  background: rgba(151, 103, 228, 0.8);
}

.rightcontent {
  display: flex;
  align-items: center;
}

.textdiv {
  background: rgba(160, 165, 200, 0.4);
  border: 1px solid rgba(200, 200, 230, 0.25);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 520px;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.textdiv p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.95em, 1.5vw, 1.1em);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

.ech8button {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95em;
  font-weight: 500;
  color: white;
  background: #1a2a5e;
  border: none;
  border-radius: 40px;
  padding: 14px 36px;
  cursor: pointer;
  width: fit-content;
  align-self: center;
  transition: background 0.2s;
  text-decoration: none;
}

.ech8button:hover {
  background: #1c3bc3;
}


/* ── MID-SIZE SCREENS ── */
@media (min-width: 768px) and (max-width: 1100px) {
  .so-content-box {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .leftcontent {
    margin-left: 0 !important;
  }
  
  .leftcontent p {
    text-align: left;
  }

  .rightcontent {
    margin-left: 20px !important;
  }
}

/* ─────────────────────────────────────────
   DESKTOP
───────────────────────────────────────── */
@media (min-width: 768px) {
  .studio-name {
    bottom: 120px;
    left: 60px;
  }

  .studio-name h1 {
    font-size: 6em;
  }

  .studio-name h3 {
    font-size: 1.8em;
  }

  .studio-name h3::after {
    width: 50vw;
  }

  .so-container {
    padding: 80px 0;
  }

  .bannerdiv h1 {
    padding: 20px 60px 20px 60px;
  }

  .so-content-box {
    flex-direction: row;
    gap: 80px;
    align-items: center;
    padding-left: 120px !important;
    padding-right: 60px !important;
  }

  .leftcontent {
    flex: 1;
    max-width: 600px;
  }

  .leftcontent p {
    text-align: left;
  }

  .rightcontent {
    flex: 1;
    margin-top: 60px;
    margin-left: 80px;
  }
}

/* ─────────────────────────────────────────
   SECTION 3: APPROACH
───────────────────────────────────────── */

.approach {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(to right, #0d0d2b 0%, #0a1535 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-top: 2px solid rgba(160, 100, 255, 0.4);
}

.approach-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imgdiv {
  width: 100%;
  padding: 40px 24px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
}

.imgdiv img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  display: block;
}

.approach-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px 120px;
  gap: 24px;
}

.approach-text h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.6em, 3vw, 2.4em);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.approach-text p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.95em, 1.5vw, 1.1em);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin: 0;
  max-width: 500px;
}

.readmore {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95em;
  font-weight: 500;
  color: white;
  background: rgba(120, 130, 180, 0.45);
  border: none;
  outline: none;
  border-radius: 40px;
  padding: 14px 48px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.readmore:hover {
  background: rgba(140, 150, 200, 0.6);
}

.bottom-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.bottom-img img {
  width: 130%;
  display: block;
  margin-left: -15%;
}

/* ── DESKTOP ── */
@media (min-width: 768px) {
  .approach-content {
    flex-direction: row;
    align-items: center;
    padding: 60px;
    gap: 60px;
    min-height: 100vh;
    box-sizing: border-box;
  }

  .imgdiv {
    flex: 1;
    padding: 0;
  }

  .imgdiv img {
    max-width: 100%;
    border-radius: 24px;
  }

  .approach-text {
    flex: 1;
    padding: 0 0 60px 0;
    align-items: center;
  }
}

/* ─────────────────────────────────────────
   SECTION 4: EVENTS & SHOWCASES
───────────────────────────────────────── */

.events {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(to right, #2a1a5a 0%, #0f1f4a 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.top-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.top-img img {
  width: 130%;
  display: block;
  margin-left: -15%;
}

.events-text-div {
  position: relative;
  z-index: 1;
  padding: 180px 40px 40px;
  max-width: 800px;
}

.events-text-div h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.6em, 3vw, 2.4em);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 24px 0;
}

.events-text-div p {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.95em, 1.5vw, 1.1em);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin: 0;
}

.badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px 80px;
  margin: 0 auto;
  max-width: 900px;
}

.badges img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  padding: 12px;
}

.badges .duke {
  border-radius: 16px;
  background: white;
  padding: 8px;
  overflow: hidden;
}

/* ── DESKTOP ── */
@media (min-width: 768px) {
  .events-text-div {
    padding: 200px 80px 40px;
  }

  .badges {
    padding: 60px 40px 80px;
    justify-content: center;
    gap: 60px;
    margin: 0 auto;
    max-width: 900px;
  }

  .badges img {
    height: 100px;
    padding: 16px;
  }
}