/* Static NextWave Solar clone
   Replace files inside /images with your final image assets.
*/

:root{
  --blue:#03a9f4;
  --blue-dark:#238fe5;
  --text:#6B7C93;
  --title:#3C424F;
  --light:#F5FAFD;
  --purple:#6a73da;
  --shadow:0 16px 40px rgba(0,0,0,.18);
  --container:1140px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Open Sans", Helvetica, Arial, sans-serif;
  color:var(--text);
  background:#F5FAFD;
  line-height:1.65;
  font-size:16px;
}
a{color:var(--blue); text-decoration:none}
a:hover{color:#008ddd}
h1,h2,h3,h4,h5,h6{
  font-family:"Muli", Helvetica, Arial, sans-serif;
  color:var(--title);
  margin:0 0 18px;
  font-weight:600;
}
h1{font-size:3rem;line-height:1.22}
h2{font-size:2.5rem;line-height:1.25}
h3{font-size:1.5rem}
h5{
  font-size:1rem;
  line-height:1.5;
  letter-spacing:2px;
  font-weight:800;
}
p{margin:0 0 18px}
hr{
  border:0;
  border-top:1px solid #e5edf6;
  margin:24px 0;
}
.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}
.text-center{text-align:center}
.lead{
  font-size:1.08rem;
  max-width:880px;
  margin-left:auto;
  margin-right:auto;
}

/* Navigation */
.skip-link{
  position:absolute;
  left:-9999px;
}
.skip-link:focus{
  left:14px;
  top:14px;
  z-index:9999;
  background:#fff;
  color:#222;
  padding:10px 14px;
  border-radius:4px;
}
.site-header{
  position:absolute;
  z-index:50;
  left:0;
  right:0;
  top:0;
  border-bottom:1px solid rgba(255,255,255,.50);
  transition:background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled{
  position:fixed;
  background:#fff;
  border-color:rgba(0,0,0,.07);
  box-shadow:0 5px 22px rgba(0,0,0,.08);
}
.nav-wrap{
  width:min(var(--container), calc(100% - 48px));
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:0 auto;
}
.logo{
  color:#fff;
  font-weight:600;
  font-size:1.6rem;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.2px;
}
.logo span{font-weight:300}
.site-header.is-scrolled .logo{color:#4a4a4a}
.menu{
  display:flex;
  align-items:center;
  gap:34px;
  list-style:none;
  padding:0;
  margin:0;
}
.menu a{
  display:flex;
  align-items:center;
  height:78px;
  border-bottom:3px solid transparent;
  color:#fff;
  font-size:14px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:1px;
}
.site-header.is-scrolled .menu a{color:#111}
.menu a:hover,
.menu a.active{
  color:#fff;
  border-bottom-color:var(--blue);
}
.site-header.is-scrolled .menu a:hover,
.site-header.is-scrolled .menu a.active{
  color:#111;
}
.menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  cursor:pointer;
  position:relative;
}
.menu-toggle span,
.menu-toggle:before,
.menu-toggle:after{
  content:"";
  display:block;
  height:2px;
  width:26px;
  background:#fff;
  margin:6px auto;
  transition:.2s ease;
}
.site-header.is-scrolled .menu-toggle span,
.site-header.is-scrolled .menu-toggle:before,
.site-header.is-scrolled .menu-toggle:after{background:#111}

/* Hero */
.hero{
  position:relative;
  min-height:690px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  background:#6a73da center/cover no-repeat;
  overflow:hidden;
}
.hero.home{
  background-image:linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)), url("../images/home_page_header-3.jpg");
}
.hero.inner{
  min-height:380px;
  background:var(--purple);
}
.hero.inner:after{
  content:"";
  position:absolute;
  inset:0;
  background:url("../images/circles.png") center center/cover no-repeat;
  opacity:.26;
}
.hero-content{
  position:relative;
  z-index:2;
  width:min(920px, calc(100% - 40px));
  padding-top:70px;
}
.hero h1{
  color:#fff;
  font-weight:300;
  font-size:3.5rem;
  line-height:1.14;
  letter-spacing:.9px;
  margin-bottom:20px;
}
.hero p{
  color:#fff;
  font-family:"Muli", Helvetica, Arial, sans-serif;
  font-size:1.3em;
  font-weight:300;
  line-height:1.3;
  margin-bottom:26px;
}
.hero-buttons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:116px;
  min-height:48px;
  padding:13px 28px;
  border-radius:999px;
  border:2px solid transparent;
  font-weight:700;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn.primary{
  background:var(--blue);
  color:#fff;
  border-color:var(--blue);
}
.btn.outline{
  color:#fff;
  border-color:#fff;
}
.btn.outline:hover{
  color:#fff;
  border-color:rgba(255,255,255,.75);
}

/* Sections */
.section{
  padding:90px 0;
}
.section-light{background:var(--light)}
.section-white{background:#fff}
.section-title-col{
  max-width:960px;
  margin:0 auto 42px;
}
.kicker{
  display:block;
  color:#3C424F;
  text-transform:uppercase;
  letter-spacing:2px;
  font-family:"Muli", Helvetica, Arial, sans-serif;
  font-weight:800;
  font-size:1rem;
  margin-bottom:16px;
}
.image-trio{
  position:relative;
  min-height:390px;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  margin-top:25px;
}
.image-trio img{
  position:relative;
  object-fit:cover;
  width:37%;
  height:250px;
  border-radius:2px;
  box-shadow:0 22px 52px rgba(0,0,0,.32);
  background:#d7e5ef;
}
.image-trio .left-img{
  transform:translate(50px,-18px) rotate(-5deg);
  z-index:1;
}
.image-trio .center-img{
  width:43%;
  height:295px;
  z-index:2;
}
.image-trio .right-img{
  transform:translate(-50px,-18px) rotate(5deg);
  z-index:1;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:30px;
  margin-top:48px;
}
.feature-card{
  background:#fff;
  border:1px solid #e8eef5;
  display:flex;
  gap:24px;
  padding:30px;
  min-height:178px;
  box-shadow:0 8px 16px rgba(0,0,0,.03);
  transition:transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 36px rgba(0,0,0,.08);
}
.icon{
  width:54px;
  height:54px;
  flex:0 0 54px;
  border-radius:999px;
  border:2px solid var(--blue);
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:25px;
  font-weight:700;
}
.feature-card h5{
  color:var(--blue);
  margin-bottom:10px;
}
.feature-card p{margin-bottom:0}

/* Page content */
.page-content{
  background:#F5FAFD;
}
.article{
  background:#F5FAFD;
  padding:78px 0 90px;
}
.article-card{
  background:transparent;
  max-width:960px;
  margin:0 auto;
}
.article h1{
  font-size:2.45rem;
  line-height:1.25;
  margin-bottom:22px;
}
.article p{
  font-size:1rem;
  line-height:1.75;
}
.article strong{
  color:#3C424F;
}
.entry-footer{
  margin-top:26px;
  color:#8a97a8;
  font-size:.95rem;
}

/* Footer */
.footer{
  background:#fff;
  color:#989898;
  text-align:center;
  padding:40px 0;
}
.footer p{margin:0}
.footer a{color:#858585}

/* Mobile */
@media (max-width: 900px){
  h1{font-size:2.45rem}
  h2{font-size:2rem}
  .hero h1{font-size:2.8rem}
  .features-grid{grid-template-columns:1fr}
  .image-trio{
    min-height:auto;
    gap:18px;
    flex-direction:column;
    align-items:center;
  }
  .image-trio img,
  .image-trio .center-img{
    width:min(100%, 560px);
    height:auto;
    min-height:210px;
    transform:none;
  }
}
@media (max-width: 760px){
  .nav-wrap{
    width:calc(100% - 28px);
    height:68px;
  }
  .logo{font-size:1.25rem}
  .menu-toggle{display:block}
  .menu{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    width:min(300px,82vw);
    background:#222B34;
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    padding:88px 0 20px;
    gap:0;
    transform:translateX(105%);
    transition:transform .25s ease;
    box-shadow:-18px 0 42px rgba(0,0,0,.25);
  }
  body.nav-open .menu{transform:translateX(0)}
  .menu a,
  .site-header.is-scrolled .menu a{
    height:auto;
    display:block;
    padding:18px 26px;
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .menu a.active,
  .menu a:hover,
  .site-header.is-scrolled .menu a.active,
  .site-header.is-scrolled .menu a:hover{
    color:var(--blue);
    border-bottom-color:rgba(255,255,255,.08);
  }
  body.nav-open:before{
    content:"";
    position:fixed;
    inset:0;
    background:rgba(34,43,52,.70);
    z-index:45;
  }
  body.nav-open .site-header{z-index:60}
  .hero{min-height:540px}
  .hero.inner{min-height:310px}
  .hero h1{font-size:2.25rem}
  .hero p{font-size:1.08rem}
  .section{padding:64px 0}
  .container{width:calc(100% - 32px)}
  .feature-card{
    padding:24px;
    gap:18px;
    flex-direction:column;
  }
  .article{padding:60px 0 72px}
  .article h1{font-size:2rem}
}
