
/*------------------------Google Fonts-----------------------*/
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Faster+One&family=Mouse+Memoirs&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*------------------------Variables css-----------------------*/
:root {
  --header-height: 3.5rem;
  /*========Colors========*/
  /* Color mode HSL (hue, saturation, lightness)*/
  --primary-color: #070066;
  --primary-color-alt: #88a0ff;
  --title-color: #c48c51;
  --text-color: #a0522d;
  --text-color-light: #9a1107;
  --body-color: #d0d0d2;
  --container-color: #a0a0a0;
  /*============Font and Typography==========*/
  /*.5rem =8px | 1rem = 16px ... */
  --body-font: "Poppins", sans-serif;
  --title-font: "Mouse Memoirs", cursive;
  --subtitle-font:"Dancing Script", cursive;
  --font-2xl: 2.5rem;
  --font-xl: 2rem;
  --font-lg: 1.25rem;
  --font-md: 1rem;
  --font-sm: 0.938rem;
  --font-xm: 0.813rem;
  /*==========Font weight===========*/
  --font-medium: 500;
  --font-semi-bold:600;
}

@media screen and (min-width: 1024px) {
  :root {
    --font-2xl: 5rem;
    --font-xl: 3rem;
    --font-lg: 1.5rem;
    --font-md: 1.25rem;
    --font-sm: 1rem;
    --font-xm: 0.875rem;
  }
}
/*------------------------Base-----------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--font-sm);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background 0.2s;
}

h1,
h2,
h3 {
  color: var(--text-color-light);
  font-weight: var(--font-medium);
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

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

/*------------------------Theme-----------------------*/
.nav-buttons {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.change-theme {
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: color 0.3;
  transform: rotate(245deg);
}

/*-----------------------Variables Dark Theme--------------------*/
body.dark-theme {
  --primary-color: #070066;
  --primary-color-alt: #020760;
  --title-color: #9eabf6ee;
  --text-color: #dceffe;
  --body-color: #05050c;
  --container-color: #12121b;
  border-color: white;
}

.dark-theme .bg-header,
.dark-theme .scrollup {
  box-shadow: 0 2px 8px hsla(0, 0%, 100%, 0.97);
}

.dark-theme .popular_card,
.dark-theme .box {
  box-shadow: 0 2px 8px hsla(0, 0%, 100%, 0.97);
}

.dark-theme .section-subtitle,
.dark-theme .popular_price {
  color: white;
}

/*------------------------Reusable Css classes-----------------------*/
.container {
  max-width: 1024px;
  margin-inline: 1.5rem;
}

@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }
}
@media screen and (min-width: 1064px) {
  .container {
    margin-inline: auto;
  }
}
.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

@media screen and (min-width: 1024px) {
  .section {
    padding-block: 7rem 1.5rem;
  }
}
.section-title,
.home_title,
.contact_title {
  font-family: var(--title-font);
  font-size: var(--font-xl);
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #fff;
  stroke-width: 2px;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--primary-color);
  stroke: #03434f;
  text-shadow: 6px 6px 0px var(--title-color);
}

@media screen and (max-width: 912px) {
  .section-title,
  .home_title,
  .contact_title {
    font-size: 2rem;
    -webkit-text-stroke-width: 1px;
  }
}
.section-subtitle {
  display: block;
  font-family: var(--subtitle-font);
  font-size: var(--font-lg);
  font-weight: var(--font-semi-bold);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 1024px) {
  .section-subtitle {
    margin-bottom: 0.75rem;
  }
}
.section-title,
.section-subtitle {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .section-title,
  .section-subtitle {
    text-align: initial;
  }
}
.main {
  overflow: hidden;
}

/*------------------------Header and Nav-----------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  z-index: 100;
  transition: box-shadow 0.3s, background 0.3s;
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .nav {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
}
.nav_toggle,
.nav_close {
  display: flex;
  color: var(--title-color);
}

@media screen and (min-width: 767px) {
  .nav_toggle,
  .nav_close {
    display: none;
  }
}
.nav_logo,
.footer_logo {
  color: var(--body-color);
  font-family: var(--title-font);
  font-size: var(--font-md);
  font-weight: var(--font-semi-bold);
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  transition: color 0.3s;
}

.nav_logo img,
.footer_logo img {
  width: 50px;
}

@media screen and (max-width: 540px) {
  .nav_logo img,
  .footer_logo img {
    width: 50px;
  }
}
.nav_toggle {
  font-size: 1.25rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .nav_menu {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: var(--body-color);
    width: 100%;
    box-shadow: 0 8px 20px hsla(19, 64%, 24%, 0.1);
    padding-block: 3.5rem;
    transition: top 0.4s;
  }
}
@media screen and (min-width: 768px) {
  .nav_menu {
    margin-left: auto;
  }
}
.nav_list {
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 2rem;
}

@media screen and (min-width: 768px) {
  .nav_list {
    flex-direction: row;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
.nav_link {
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: color 0.4s;
}

.nav_link:hover {
  color: var(--text-color);
}

.nav_close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav_img-1 {
  position: absolute;
  opacity: 0.5;
  width: 100px;
  top: -0.1rem;
  left: -0.1rem;
}

@media screen and (min-width: 767px) {
  .nav_img-1 {
    display: none;
  }
}
/* Show Menu */
.show-menu {
  top: 0;
}

/* Change background header */
/* Active Link */
.active{
  color: white;
}

/*------------------------Home-----------------------*/
.home {
  position: relative;
}

.home_container {
  row-gap: 3rem;
  justify-self: center;
}

/* Common @media */
@media screen and (min-width: 576px) {
  .home_container,
  .about_container,
  .coming_container,
  .contact_container,
  .slider_container {
    grid-template-columns: 0.7fr;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .home_container,
  .about_container,
  .coming_container,
  .contact_container,
  .slider_container {
    position: relative;
    grid-template-columns: 240px 300px;
  }
}
@media screen and (min-width: 1024px) {
  .home_container,
  .about_container,
  .coming_container,
  .contact_container,
  .slider_container {
    position: relative;
    grid-template-columns: 480px 500px;
  }
}
.home_img {
  width: 300px;
  justify-self: center;
}

@media screen and (min-width: 768px) {
  .home_img {
    width: 300px;
    position: absolute;
    top: 1rem;
    right: -1rem;
  }
}
@media screen and (min-width: 1024px) {
  .home_img {
    width: 400px;
    position: absolute;
    top: 2rem;
  }
}
.home_data {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .home_data {
    text-align: initial;
    order: -1;
  }
}
.home_title {
  font-size: var(--font-2xl);
  margin-bottom: 1rem;
}

.home_description {
  padding: 0 1rem;
  margin-bottom: 2.5rem;
}

/*------------------------Button-----------------------*/
.button {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  background-color: var(--primary-color);
  padding: 1rem 1.5rem;
  border-radius: 4rem;
  color: #fff;
  font-weight: var(--font-medium);
  transition: background 0.3;
}

.button i {
  font-size: 1.25rem;
  transition: transform 0.3;
}

.button:hover {
  background-color: var(--primary-color-alt);
}

.button:hover i {
  transform: translateX(0.25rem);
}

/*------------------------About-----------------------*/
.about {
  position: relative;
}

.about_container {
  row-gap: 3rem;
}

@media screen and (min-width: 768px) {
  .about_container {
    align-items: center;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .about_container {
    grid-template-columns: 450px 360px;
    align-items: center;
    -moz-column-gap: 7rem;
         column-gap: 7rem;
  }
}
.about_data {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .about_data {
    order: 1;
    text-align: initial;
  }
}
.about_img {
  width: 250px;
  justify-self: center;
}

@media screen and (min-width: 1024px) {
  .about_img {
    width: 400px;
  }
}

/* =========================
   ABOUT PAGE (Storytelling + Cutting-edge spacing)
   Add AFTER your existing .about styles
   ========================= */

/* ABOUT HERO */
.about-hero_container{
  align-items: center;
  gap: 2.5rem;
}

.about-hero_media{
  display: flex;
  justify-content: center;
}

.about-hero_img{
  width: 100%;
  max-width: 460px;
  border-radius: 18px;
  display: block;
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.about-hero_data{
  text-align: center;
}

@media screen and (min-width: 768px){
  .about-hero_data{
    text-align: left;
  }
}

.about-hero_title{
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: 0.3px;
  margin: 0.25rem 0 0.6rem;
}

.about-hero_tagline{
  opacity: 0.85;
  margin: 0 0 1.1rem;
  line-height: 1.4;
}

.about-hero_lead{
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 68ch;
  margin: 0;
}

.about-hero_buttons{
  display: flex;
  gap: 12px;
  margin-top: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px){
  .about-hero_buttons{
    justify-content: flex-start;
  }
}

/* If you already have .button styled, this is just an optional variant */
.button-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
}

/* STORY SECTION */
.story_grid{
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story_block{
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
}

.story_block--highlight{
  background: linear-gradient(180deg, rgba(136,160,255,0.20), rgba(255,255,255,0.06));
  border: 1px solid rgba(136,160,255,0.28);
}

.story_title{
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}

.story_text{
  margin: 0;
  line-height: 1.75;
  opacity: 0.92;
}

/* VISION SECTION */
.vision_grid{
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.vision_lead{
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 70ch;
  margin: 0;
}

.vision_text{
  line-height: 1.8;
  opacity: 0.92;
  margin-top: 12px;
}

.vision_card{
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
  margin-bottom: 16px;
}

.vision_card-title{
  margin: 0 0 10px;
}

.vision_list{
  margin: 0;
  padding-left: 18px;
  line-height: 1.8;
  opacity: 0.92;
}

/* FULL-WIDTH BOM FEATURE */
.bom-feature{
  width: 100%;
  margin-top: 2.5rem;
  padding: 3.5rem 0;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(136,160,255,0.20), transparent 60%),
    radial-gradient(900px 500px at 80% 40%, rgba(196,140,81,0.14), transparent 60%),
    rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.bom-feature_inner{
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.bom-feature_content{
  text-align: center;
}

.bom-feature_title{
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0.4rem 0 1rem;
}

.bom-feature_lead{
  max-width: 80ch;
  margin: 0 auto 1.6rem;
  line-height: 1.8;
  opacity: 0.95;
}

.bom-feature_grid{
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bom-feature_box{
  border-radius: 18px;
  padding: 18px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 60px rgba(0,0,0,0.20);
  text-align: left;
}

.bom-feature_box h3{
  margin: 0 0 10px;
}

.bom-feature_box p{
  margin: 0;
  line-height: 1.8;
  opacity: 0.92;
}

.bom-feature_actions{
  margin-top: 1.8rem;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .story_grid{ grid-template-columns: 1fr; }
  .vision_grid{ grid-template-columns: 1fr; }
  .bom-feature_grid{ grid-template-columns: 1fr; }
  .about-hero_img{ max-width: 360px; }
}

/*------------------------Popular-----------------------*/
@media screen and (min-width: 1024px) {
  .popular-item .section-title,
  .popular-item .section-subtitle {
    text-align: center;
  }
}
.popular_container {
  padding-top: 4rem;
}

@media screen and (min-width: 768px) {
  .popular_container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .popular_container {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.popular_card {
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 2rem 1rem;
  box-shadow: 0 8px 20px hsla(19, 64%, 48%, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2;
}

.popular_content {
  text-align: right;
}

.popular_img {
  width: 120px;
  align-self: flex-start;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  transition: transform 0.4s;
}

.popular_name {
  font-size: var(--font-lg);
  font-weight: var(--font-semi-bold);
  margin-block: 3rem 0.25rem;
}

.popular_description {
  font-size: var(--font-xm);
  margin-block: 0 0.25rem;
}

.popular_price {
  font-size: var(--font-md);
  font-weight: var(--font-medium);
  color: var(--primary-color);
}

.popular_button {
  background-color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px hsla(19, 64%, 20%, 0.2);
  transition: background 0.3s;
}

.popular_card:hover .popular_button {
  background-color: var(--primary-color-alt);
}

.popular_card:hover .popular_img {
  transform: translateY(-0.75rem);
}

/*------------------------Featured-----------------------*/
@media screen and (min-width: 1024px) {
  .featured-item .section-title,
  .featured-item .section-subtitle {
    text-align: center;
  }
}
.featured_container {
  padding-top: 4rem;
}

@media screen and (min-width: 768px) {
  .featured_container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .featured_container {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.feature_card {
  position: relative;
  background-color: var(--container-color);
  padding: 2rem 2rem 1rem;
  box-shadow: 0 8px 20px hsla(19, 64%, 48%, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2;
}

.feature_content {
  text-align: right;
}

.feature_img {
  width: 120px;
  align-self: flex-start;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  transition: transform 0.4s;
}

.feature_name {
  font-size: var(--font-lg);
  font-weight: var(--font-semi-bold);
  margin-block: 3rem 0.25rem;
}

.feature_description {
  font-size: var(--font-xm);
  margin-block: 0 0.25rem;
}

.feature_price {
  font-size: var(--font-md);
  font-weight: var(--font-medium);
  color: var(--primary-color);
}

.feature_button {
  background-color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px hsla(19, 64%, 20%, 0.2);
  transition: background 0.3s;
}

.feature_card:hover .feature_button {
  background-color: var(--primary-color-alt);
}

.feature_card:hover .feature_img {
  transform: translateY(-0.75rem);
}

/*------------------------Coming Soon-----------------------*/
.coming_container {
  row-gap: 4rem;
}

@media screen and (min-width: 768px) {
  .coming_container {
    grid-template-columns: 250px 240px;
    align-items: center;
    -moz-column-gap: 4rem;
         column-gap: 4rem;
    padding-bottom: 0.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .coming_container {
    grid-template-columns: 350px 480px;
    align-items: center;
    -moz-column-gap: 7rem;
         column-gap: 7rem;
    padding-bottom: 2rem;
  }
}
.coming_data {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .coming_data {
    text-align: initial;
  }
}
.coming_description {
  margin-bottom: 2rem;
}

/*------------------------Footer-----------------------*/
.footer {
  padding-block: 3rem 2rem;
}

.footer_container {
  row-gap: 3rem;
}

.footer_logo {
  margin-bottom: 1rem;
}

.footer_description,
.footer_link,
.footer_information {
  font-size: var(--font-xm);
}

.footer_content,
.footer_links {
  display: grid;
}

.footer_content {
  grid-template-columns: repeat(2, max-content);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer_title {
  font-size: var(--font-md);
  margin-bottom: 1.5rem;
}

.footer_links {
  row-gap: 0.5rem;
}

.footer_link {
  color: var(--text-color);
  transition: color 0.3s;
}

.footer_link:hover {
  color: var(--primary-color);
}

.footer_social {
  display: flex;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.social-link {
  font-size: 1.25rem;
  transition: color 0.3s, transform 0.3s;
}

.social-link:hover {
  color: var(--primary-color-alt);
  transform: translateY(-2px);
}

.footer_copyright {
  text-transform: capitalize;
  text-align: center;
  font-size: var(--font-xm);
  color: var(--text-color-light);
}

/*------------------------Scroll Bar-----------------------*/
/*------------------------Scroll Up-----------------------*/
/* Show Scroll Up */
/*------------------------Contact-----------------------*/
.contact {
  position: relative;
}

.contact_container {
  row-gap: 3rem;
  justify-self: center;
}

.contact_data {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .contact_data {
    text-align: initial;
    order: -1;
  }
}
.contact_title {
  font-size: var(--font-2xl);
  margin-bottom: 1rem;
}

.contact_description {
  padding: 0 1rem;
  margin-bottom: 2.5rem;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~Slider~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.slider_container{
  width: 100%;
  height: 510px;
  position: relative;
  margin: 0 auto;
  overflow: hidden; /* prevents overflow edges */
}

/* Small screens */
@media screen and (min-width:340px){
  .slider_container{
    width: 100%;
    height: 200px;
    position: relative;
  }
}

/* Each slide wrapper (image or video) */
.slider_slide{
  position: absolute;
  inset: 0;              /* top:0 right:0 bottom:0 left:0 */
  opacity: 0;
  transition: opacity 400ms ease;
  z-index: 0;
}

/* Active slide */
.slider_slide.is-active{
  opacity: 1;
  z-index: 1;
}

/* Media inside slides (images + video link wrapper) */
.slider_media{
  display: block;
  width: 100%;
  height: 100%;
}

/* Images fill the slide */
.slider_img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; /* important: makes it act like a banner */
}

/* Video link behaves like a slide */
.slider_video_link{
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0px; /* change to 12px if you want rounded */
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

/* Video fills the slide like an image */
.slider_video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Overlay */
.slider_video_overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 160ms ease;
}

.slider_video_overlay i{ font-size: 28px; }
.slider_video_overlay span{
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* Desktop hover: overlay appears */
@media (hover: hover) and (pointer: fine){
  .slider_video_link:hover .slider_video_overlay{
    opacity: 1;
  }
}

/* Mobile: overlay always visible so it reads as clickable */
@media (hover: none) and (pointer: coarse){
  .slider_video_overlay{
    opacity: 1;
  }
}

/* Dot buttons */
.slider_button{
  text-align: center;
  position: relative;
}


.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #8dc9f7;
border-radius: 50%;
display: inline-block;
}

.active,
.dot:hover {
background-color: #4f2626;
}

/* =========================
   SERVICES: CSS GRID MASONRY
   (Stable collage / no column weirdness)
   ========================= */

.services-stage{
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 12px 60px;
}

/* Layout: masonry on left, overlay on right (desktop) */
@media (min-width: 980px){
  .services-stage{
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 18px;
    align-items: start;
  }
}

/* Masonry container */
.masonry{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  grid-auto-flow: dense;
}

/* Responsive columns */
@media (max-width: 1100px){
  .masonry{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px){
  .masonry{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .masonry{ grid-template-columns: 1fr; }
}

/* Each tile */
.masonry .box{
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 12px 34px rgba(0,0,0,0.22);
}

/* Images: no squish, always clean */
.masonry img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Clickable service cards */
.masonry .svc-card{
  cursor: pointer;
  transform: translateZ(0);
}

.masonry .svc-card img{
  transition: transform 280ms ease, filter 280ms ease;
}

.masonry .svc-card:hover img{
  transform: scale(1.05);
  filter: contrast(1.05);
}

/* Hover-only service tag (won’t block images) */
.svc-tag{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;

  padding: 10px 12px;
  border-radius: 14px;

  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.svc-card:hover .svc-tag{
  opacity: 1;
  transform: translateY(0);
}

/* Make selected images taller for “production” drama */
#gray-runway,
#full-body-red,
#full-body-black,
#ring-light{
  grid-row: span 2;
}

/* A hero tile (logo) smaller + punchy */
#collage-logo{
  opacity: 0.95;
}

/* =========================
   SERVICES OVERLAY (no footer overlap)
   ========================= */
.services-overlay{
  position: sticky; /* stays within the services section */
  top: 90px;
  width: 100%;

  padding: 16px;
  border-radius: 18px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}

/* On mobile, overlay goes under masonry naturally */
@media (max-width: 979px){
  .services-overlay{
    position: relative;
    top: auto;
    margin-top: 18px;
  }
}

/* Overlay typography (keeps your existing styles if already present) */
.overlay-head{
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 12px;
}

.overlay-kicker{
  font-size: 0.78rem;
  letter-spacing: 2px;
  opacity: 0.85;
}

.overlay-title{
  margin: 6px 0 4px;
  font-size: 1.6rem;
}

.overlay-sub{
  margin: 0;
  opacity: 0.9;
}

.overlay-list{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.overlay-item{
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: start;

  text-decoration: none;
  color: inherit;

  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  transition: transform 160ms ease, background 160ms ease;
}

.overlay-item:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
}

.overlay-dot{
  width: 8px;
  height: 8px;
  border-radius: 99px;
  margin-top: 6px;
  background: rgba(196,140,81,0.95);
}

.overlay-name{
  font-weight: 800;
}

.overlay-desc{
  font-size: 0.92rem;
  opacity: 0.9;
  margin-top: 2px;
}

.overlay-cta{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.overlay-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(136,160,255,0.20);
}

.overlay-btn:hover{
  background: rgba(136,160,255,0.28);
}

.overlay-note{
  display: block;
  margin-top: 10px;
  opacity: 0.85;
  font-size: 0.86rem;
}
/* =========================
   Youth Form (simple + clean)
   ========================= */
.youth-form{
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.youth-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 720px){
  .youth-grid{ grid-template-columns: 1fr; }
}

.youth-field label{
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  opacity: 0.95;
}

.youth-field input,
.youth-field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: inherit;
  outline: none;
}

.youth-field input:focus,
.youth-field textarea:focus{
  border-color: rgba(136,160,255,0.55);
}

.youth-checks{
  margin: 14px 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.youth-checks legend{
  font-weight: 800;
  padding: 0 6px;
}

.youth-checks label{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
  opacity: 0.95;
}

/* =========================
   Youth Creators Circle Page
   ========================= */
.youth-hero{
  padding: 90px 0 26px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(136,160,255,0.22), transparent 60%),
    radial-gradient(900px 420px at 80% 30%, rgba(196,140,81,0.18), transparent 60%),
    rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.youth-hero_inner{
  text-align: center;
}

.youth-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.35);
  letter-spacing: 1.6px;
  font-size: 0.78rem;
  opacity: 0.95;
}

.youth-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(196,140,81,0.95);
  box-shadow: 0 0 18px rgba(196,140,81,0.55);
}

.youth-title{
  margin: 12px 0 6px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.4px;
}

.youth-subtitle{
  margin: 0;
  opacity: 0.9;
}

.youth-hero_cta{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.youth-btn-outline{
  background: transparent !important;
}

.youth-hero_line{
  margin: 14px auto 0;
  max-width: 880px;
  opacity: 0.85;
}

.youth-section{
  padding: 26px 0;
}

.youth-h2{
  margin: 0 0 10px;
  font-size: 1.7rem;
}

.youth-p{
  margin: 0 0 14px;
  opacity: 0.9;
  max-width: 980px;
}

.youth-cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 980px){
  .youth-cards{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .youth-cards{ grid-template-columns: 1fr; }
}

.youth-card{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.youth-card_title{
  font-weight: 900;
}

.youth-card_sub{
  margin-top: 4px;
  opacity: 0.9;
}

.youth-bom{
  padding: 34px 0;
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.youth-bom_inner{
  text-align: center;
}

.youth-bom_kicker{
  letter-spacing: 2px;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 6px;
}

.youth-bom_grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 900px){
  .youth-bom_grid{ grid-template-columns: 1fr; }
}

.youth-bom_box{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  text-align: left;
}

.youth-bom_title{
  font-weight: 900;
}

.youth-bom_sub{
  margin-top: 4px;
  opacity: 0.9;
}

.youth-bom_cta{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* Programs grid */
.youth-programs{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 980px){
  .youth-programs{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .youth-programs{ grid-template-columns: 1fr; }
}

.youth-program{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.youth-program_name{
  font-weight: 900;
}

.youth-program_sub{
  opacity: 0.9;
  margin-top: 4px;
}

.youth-program_desc{
  margin: 10px 0 0;
  opacity: 0.9;
}

/* Steps */
.youth-steps{
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.youth-step{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.youth-step_num{
  font-weight: 900;
  font-size: 1.4rem;
  opacity: 0.95;
}

.youth-step_title{
  font-weight: 900;
}

.youth-step_sub{
  opacity: 0.9;
  margin-top: 2px;
}

/* Form (re-uses earlier styles if you added them) */
.youth-form{
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
}

.youth-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 720px){
  .youth-grid{ grid-template-columns: 1fr; }
}

.youth-field label{
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  opacity: 0.95;
}

.youth-field input,
.youth-field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: inherit;
  outline: none;
}

.youth-field input:focus,
.youth-field textarea:focus{
  border-color: rgba(136,160,255,0.55);
}

.youth-checks{
  margin: 14px 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.youth-checks legend{
  font-weight: 900;
  padding: 0 6px;
}

.youth-checks label{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
  opacity: 0.95;
}

.youth-fineprint{
  margin-top: 10px;
  opacity: 0.8;
  font-size: 0.92rem;
}

/* Donate row */
.youth-donate{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
/* =========================
   CONTACT (Corporate)
   ========================= */
.contact-hero{
  padding: 90px 0 26px;
  background:
    radial-gradient(900px 420px at 18% 10%, rgba(136,160,255,0.20), transparent 60%),
    radial-gradient(900px 420px at 80% 30%, rgba(196,140,81,0.16), transparent 60%),
    rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.contact-hero_inner{
  text-align: center;
}

.contact-title{
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin: 0 0 8px;
}

.contact-subtitle{
  margin: 0;
  opacity: 0.9;
}

.contact-quick{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.30);
  text-decoration: none;
  color: inherit;
}

.contact-hero_cta{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(136,160,255,0.22);
  cursor: pointer;
}

.contact-btn:hover{
  background: rgba(136,160,255,0.30);
}

.contact-btn_outline{
  background: transparent;
}

.contact-note{
  margin: 12px 0 0;
  opacity: 0.82;
}

/* Grid layout */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}

.contact-panel,
.contact-form_wrap{
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
  backdrop-filter: blur(10px);
}

.contact-panel_title{
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.contact-card{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 12px;
  margin-top: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.contact-card_icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.contact-card_title{
  font-weight: 900;
}

.contact-card_text{
  margin-top: 3px;
  opacity: 0.9;
}

.contact-mini{
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.contact-mini_title{
  font-weight: 900;
  margin-bottom: 8px;
}

.contact-mini_list{
  margin: 0;
  padding-left: 18px;
  opacity: 0.9;
}

.contact-form_sub{
  margin: 0 0 12px;
  opacity: 0.9;
}

/* Form fields */
.contact-fields{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 720px){
  .contact-fields{ grid-template-columns: 1fr; }
}

.field label{
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: inherit;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(136,160,255,0.55);
}

.field-full{
  grid-column: 1 / -1;
}

.contact-legal{
  margin-top: 10px;
  opacity: 0.8;
  font-size: 0.92rem;
}
