/* ==========================================================
   Creative Studio - Custom Styles
   NOTE: font-family intentionally NOT set here.
   Add your own font-family rule on `body` (or :root) below,
   e.g.
   body { font-family: "YourFont", sans-serif; }
   ========================================================== */

:root{
  --bg-black:      #0b0b0b;
  --bg-dark:       #121212;
  --bg-soft:       #242424;
  --text-white:    #f5f5f5;
  --text-muted:    #AFAFAF;
  --text-faint:    #7a7a7a;
  --accent-yellow: #FEC300;
  --border-soft:   rgba(255,255,255,.08);
   --gradient-text: linear-gradient(180deg, #FFF -1.51%, #666 100%);
}

*{ box-sizing: border-box; }

html, body{
  background-color: var(--bg-black);
  color: var(--text-white);
}

a{ text-decoration: none; }



/* ---------------- Hero ---------------- */
.ser-hero{
  background-color: var(--bg-black);
  padding: 197px 0px 200px;
}



.ser-hero .hero-title{
  font-size: 80px;
  font-weight: 400;
 background: linear-gradient(180deg, #FFF 29.7%, #999 91.88%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.ser-hero .hero-sub{
  background: linear-gradient(180deg, #FFF 29.7%, #999 91.88%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
  font-size: 24px;
  line-height: 32px;
  max-width: 520px;
  margin: 0 auto;
 
}
/* .gradient-text {
  background: linear-gradient(180deg, #FFF -1.51%, #666 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
} */
.hero-image-wrap{
	padding: 0 132px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------- Image placeholders ---------------- */
.img-placeholder{
  color: var(--text-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
 
}
.img-placeholder img{
	width:100%;
	border-radius:32px;
}
.img-placeholder.rounded{ border-radius: 12px; }

.full-image-section .img-placeholder {
  border-radius: 0 !important;
  border-left: none;
  border-right: none;
}
.full-image-section .img-placeholder img{
  border-radius: 0 !important;
}

/* ---------------- Soft (grey) section ---------------- */
.section-soft{
  background: url(../images/grey-bg.png);
  padding: 100px 0px;
}

.service-temp .section-heading{
  font-size: 46px;
  font-weight: 400;
  color: var(--gradient-text);
  line-height: 48px;
}

.service-temp .section-text{
  color: var(--text-muted);
  font-size: 32px;
  line-height: 34px;
}

/* ---------------- Dark section ---------------- */
.service-temp .section-dark{
  background-color: var(--bg-black);
  padding: 200px 0px 200px;
}

.service-temp .eyebrow-left{
  font-size: .8rem;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--accent-yellow);
  display: inline-block;
  padding-bottom: .5rem;
}

.service-temp .umbrella-heading{
  font-size: 80px;
  font-weight: 700;
  line-height: 68px;
  color: var(--text-faint);
  text-transform: uppercase;
}
.service-temp .umbrella-heading span{
  color: var(--text-white);
}
.service-temp .strong-highlight .container {
  max-width: 1208px;
}
.service-temp .umbrella-text{
  color: var(--text-muted);
  font-size: 32px;
  line-height: 54px;
}
.service-temp .umbrella-text strong a:hover {
  color: var(--accent-yellow);
}
.service-temp .umbrella-text strong a{
  color: var(--text-white);
  font-weight: 500;
  font-size: 50px;
}
.service-temp hr {
  background: rgba(255, 255, 255, 0.20);
}

/* ---------------- Stare / brains section ---------------- */
.stare-heading{
  font-size: 60px;
  font-weight: 400;
 
  text-align: left;
  line-height: 65px;
}
.stare-heading em{
  font-style: italic;
  font-weight: 700;
}

.service-temp .hook-heading{
  font-size: 46px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 48px;
  margin-bottom: 80px;
	padding-top:30px;
}
.animate-text {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-text.show {
    opacity: 1;
    transform: translateY(0);
}

/* delay sequence */
.animate-text:nth-child(1) {
    transition-delay: 0.2s;
}

.animate-text:nth-child(2) {
    transition-delay: 0.5s;
}

.animate-text:nth-child(3) {
    transition-delay: 0.8s;
}
.animate-text {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-text.show {
    opacity: 1;
    transform: translateY(0);
}
.hook-text{
  color: var(--text-muted);
  font-size: 20px;
  line-height: 28px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------- CTA / Footer ---------------- */
.section-cta{
  background-color: var(--bg-soft);
  padding: 6rem 0 3rem;
  border-top: 1px dashed var(--border-soft);
}

.cta-heading{
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-faint);
  line-height: 1.1;
}

.cta-sub{
  color: var(--text-white);
  font-size: 1.2rem;
  margin-top: 1rem;
}

.btn-cta{
  background-color: var(--accent-yellow);
  color: #111;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: .8rem 2rem;
  border-radius: 30px;
  display: inline-block;
  transition: transform .2s ease;
}
.btn-cta:hover{
  transform: translateY(-2px);
  color: #111;
}

.footer-links a{
  color: var(--text-faint);
  font-size: .75rem;
  letter-spacing: 1px;
}
.footer-links .dot{
  color: var(--text-faint);
  margin: 0 .5rem;
}

.copyright{
  color: var(--text-faint);
  font-size: .75rem;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 991.98px){
  .hero-title{ font-size: 2.5rem; }
  .umbrella-heading{ font-size: 2.2rem; }
  .umbrella-text{ font-size: 1.1rem; }
  
  .navbar-collapse{ background-color: var(--bg-black); padding: 1rem 0; }
  img {
    width:100%;
  }
  .hero-title {
    font-size: 30px;
  }
}

@media (max-width: 575.98px){
  .ser-hero {
    padding: 60px 0px;
  }
  .service-temp .hero-sub {font-size:16px; line-height: 22px;}
  .service-temp .hero-title{ font-size: 30px; }
  .service-temp .section-heading{ font-size: 20px; line-height: 24px;}
  .service-temp .stare-heading{ font-size: 1.6rem; }
  p {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .section-soft {
   
    padding: 41px 0px;
}
.service-temp .section-dark {
    
    padding: 60px 0px 50px;
}
.service-temp .umbrella-text strong a {
    line-height: 28px;
    font-size: 20px;
}
    .service-temp .stare-heading {
        font-size: 24px;
        line-height: 36px;
        text-align: center;
    }
 .service-temp .umbrella-heading {
    font-size: 30px;        line-height: 33px;}
    .service-temp .hook-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 33px;
}
}
