:root { 
    line-height: 1.5;
    font-weight: 400;

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;

    /* Variables */
    --red: #ef4534;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--white);
    font-family: 'Oswald', 'Open Sans Condensed', sans-serif;
}

h3, h4, h5, h6 {
    font-family: "Oswald Light";
    color: #343a40;
}
a {
    text-decoration: none;
    color: #343a40;
}

.animate {
    transition: transform 0.3s ease-out;
  }

/* Reusables */
.moonrays-red {
    color: var(--red);
}

.separator {
    width: 25%;
    margin: 25px 0;
    border-bottom: 2px solid;
    opacity: .7;
}

.spacer {
    height: 25px;
    background-color: var(--white);
}

.button {
    padding: 10px 15px;    
    color: var(--white);
    background: transparent;
    border: 1px solid;
    border-radius: 25px;
    text-transform: uppercase;
    cursor: pointer;
}

.button:hover {
    color: #000;
    background-color: var(--white);
}

.titles--red {
    color: var(--red);
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 9px;
    line-height: 30px;
    margin-bottom: 50px;
}

.titles--white {
    color: var(--white);
    font-size: 2.75rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.sub-text {
    font-weight: 200;
}

.mt-20 {margin-top: 20px;}
.mn-20 {margin-bottom: 20px;}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 10px;
}
  
::-webkit-scrollbar-track {
    background: #333;
}
  
::-webkit-scrollbar-thumb {
    background: #888;
}
  
::-webkit-scrollbar-thumb:hover {
    background: var(--red);
}

/* Menu - DELETE THIS!! */
/* .menu {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 4.375rem;
    height: 100%;
    background-color: #000;
    border-right: 1px solid grey;
    z-index: 1000;
    font-size: 1.5rem;
    padding: 30px 0;
}

@media screen and (min-width: 1024px) {
    .menu {
        display: flex;
    }
} */
/* Menu ENDS */

/* Hero Section */
.hero--section {
    position: relative;
    height: auto;
    min-height: 100vh;
    background-color: #000;
    overflow: hidden;
}

.hero--container {
    display: flex;
    align-items: flex-end;
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow: hidden;
}

.hero--logo img {  
    position: absolute;
    top: 5px;
    left: 25px;
    width: 20vw;
    height: 10vh;
    min-width: 150px;
    max-height: 180px;
    margin-top: 1rem;
    z-index: 100;
    object-fit: contain;
}

.hero--image {
    position: absolute;
    display: inline-block;
    right: -1000px;    
    -webkit-animation: slide 0.75s forwards;
    animation: slide 5s forwards;
    overflow: hidden;
}

@-webkit-keyframes slide {
    100% { right: -50px; }
}

@keyframes slide {
    100% { right: -50px; }
}

.hero--image img {
    object-position: top;
    object-fit: cover;
    /* transform: scale(0.65); */
    overflow:hidden;
}

.hero--image:after {
    content:'';
    position:absolute;
    left:0; top:0;
    width:100%; height:100%;
    display:inline-block;
    background: -moz-linear-gradient(top, transparent 0%,#000 88%);
    background: -webkit-linear-gradient(top, transparent 0%,#000 88%); 
    background: -o-linear-gradient(top, transparent 0%,#000 88%); 
    background: -ms-linear-gradient(top, transparent 0%,#000 88%); 
    background: linear-gradient(to bottom, transparent 0%,#000 88%); 
    overflow: hidden;
}

.hero--text {
    position: relative;
    max-width: 1600px;
    padding: 0 15px 150px;
    text-align: center;
}

.hero--text h1 {
    font-size: 1.5rem;
    max-width: 75%;
    margin: auto;
}

.hero--text h1 span {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 9px;
    text-transform: uppercase;
}

.hero--text .separator {
    margin: 20px auto;
    width: 50%;
}

.hero--text h2 {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 60%;
    margin: auto;
}

.hero--fusion-logo {
    position: absolute;
    bottom: 50px;
    left: 25px;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.hero--fusion-logo span {
    font-weight: 700;
}

/* -- Light Types Section -- */
.light-types--slider {
    height: 500px;
    overflow: hidden;
  }
  
.light-types--slides {
    display: flex;
    flex-direction: column;
    height: calc(300px * 3);
    transition: transform 0.3s ease-in-out;
}
  
.light-types--slides a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-decoration: none;
}
  
.light-types--slides img {
    height: auto;
    width: 40px;
    object-fit: cover;
    margin: 25px;
}


.light-types--desktop {
    display: none;
}

.light-types--container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px;
}

.light-types--images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 25px;   
    margin-top: 25px; 
    text-transform: uppercase;
    /* position: relative;
    z-index: -1; */
}

.light-types--images > div {
    margin-bottom: 30px;
    opacity: .7;
}

.light-types--images img {
    margin: 25px 40px 15px;
}

.light-types--text {
    display: flex;
    flex-direction: column;
}

.light-types--text > div {
    padding: 30px 30px 0;
    border-left: 2px solid hsl(229deg 64% 19% / 36%);
}

.light-types--text > div:first-child {
    padding-top: 5px;
}

.light-types--text > div:last-child {
    border-right: none;
}

.light-types--text h3 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

.light-types--text p {
    font-family: arial;
    font-size: 13px;
    opacity: 0.7;
    color: #212529;
    font-weight: 200;
}

/* -- Smart App Container -- */
.app--overlay {
    position: absolute;
    display: flex;   
    width: 100%;
    height: 800px;
    
    background-image: url('../images/Moonray/app-bg-desktop-overlay.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 -15px;
}

.app--container { 
    display: flex;   
    width: 100%;
    height: 675px;
    background-image: url('../images/Moonray/app-bg-mobile.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.app--items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;    
    /* max-width: 1500px; */
    width: 1675px;
    padding: 0 50px;
    margin: auto;
}

.app--text h3 {
    color: #fff;
    font-size: 2.75rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
}

.app--text span {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 9px;
    line-height: 30px;
    margin-bottom: 50px;
}

.app--text .separator {    
    width: 75%;
    margin-top: 75px;
}

.app--text p {
    font-weight: 200;
    margin-bottom: 35px;
}

.app--image img {
    display: none;
    width: 260px;
}

/* -- Landscape Lighting Section -- */
.landscape-lights--container { 
    display: flex;   
    width: 100%;
    height: 800px;
    background-image: url('../images/Moonray/landscape-lighting-mobile.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -280px;
}

.landscape-lights--items {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    max-width: 700px;
    width: 100%;
    padding: 75px 50px 0;   
    background: linear-gradient(0deg, rgba(0,0,0,1) 10%, rgba(4,4,4,0.4990371148459384) 51%, rgba(255,255,255,0) 76%);
}

.landscape-lights--text p {
    font-size: .85rem;
    opacity: .7;
}

/* -- Low Voltage Lighting Section -- */
.low-voltage--container {
    width: 100%;
    height: 800px;
}

.low-voltage--container { 
    display: flex;   
    width: 100%;
    height: 800px;
    background-image: url('../images/Moonray/low-voltage-lighting-mobile.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -635px;
}

.low-voltage--items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    width: 1500px;
    padding: 0 50px;
    margin: auto;
}

.low-voltage--text {    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 70vh;
}

.low-voltage--text p {
    font-size: .85rem;
    opacity: .7;
}

/* -- Moonrays Styles Section -- */
.moonrays-styles--text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 45vh;
    padding: 50px 15px;
    color: #333;
    font-size: 3vw;
    text-align: center;
}

.moonrays-styles--text h3 {
    text-transform: uppercase;
}

.moonrays-styles--text h4 {
    line-height: 60px;
    font-weight: 100;
    margin-bottom: 0;
}

.moonrays-styles--text p {
    font-size: 1.5rem;
    text-transform: uppercase;
}

.moonrays-styles--grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 625px)); */
    /* grid-template-columns: auto auto auto; */
    /* gap: 15px; */
    width: 100%;
    padding-bottom: 75px;
}

.moonrays-styles--grid-row {
    display: flex;
}

.moonrays-styles--grid-item {
    width: 100%;
}

.moonrays-styles--grid-item img {
    object-fit: cover;
    width: 100%;
}

.slider-container {
    width: 100%;
    overflow-x: hidden;
    margin-bottom: 20px;
}

.slider {
    display: flex;
    flex-wrap: nowrap;
}

.slider picture {
    display: flex;
    flex: 0 0 35%;
    column-gap: 10px;    
    width: 100%;
    height: auto;
    object-fit: cover;
}

.buy-btn {
    display: none;
    position: relative;
    top: 600px;
    left: 475px;
    color: var(--white);
    background-color: var(--white);
    background-color: transparent;
    outline: none;
    border: 2px solid var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: .5s ease-in-out;
}

.buy-btn:hover {
    background-color: white;
    color: var(--red);
    border-color: var(--red);
}

/* -- Copyright -- */
.copyright {
    width: 100%;
    padding: 20px;    
    background-color: #000;
}

.copyright > div {
    max-width: 85%;
    margin: auto;
}

/* Media Queries */
/* Mobile */
/* @media screen and (min-width: 319px) {
    .hero--text h1 {
        font-size: .5rem;
        max-width: 75%;
        margin: auto;
        text-align: center;
    }
} */

/* Tablet */
@media screen and (min-width: 768px) {
    /* Images */
    .hero--container {
        background-image: linear-gradient(90deg, rgba(0,0,0,1) 31%, rgba(4,4,4,0.4990371148459384) 44%, rgba(255,255,255,0) 100%), url('../images/Moonray/hero-tablet.webp');
    }
    .app--container {
        background-image: url('../images/Moonray/app-bg-tablet.webp');
    }    
    .landscape-lights--container {
        background-image: url('../images/Moonray/landscape-lighting-tablet.webp');
    }  
    .low-voltage--container {
        background-image: url('../images/Moonray/low-voltage-lighting-tablet.webp');
    }

    .hero--container {
        align-items: center;
    }

    .hero--logo img {  
        left: 75%;
        top: 35px;
    }

    .hero--text {
        left: 10%;
        padding: 0 15px;
        text-align: left;
    }

    .hero--text h1 {
        margin: 0;
        font-size: 3.5rem;
        max-width: 60%;
    }

    .hero--text h1 span {
        font-size: 5rem;
        letter-spacing: 15px;
    }
    
    .hero--text .separator {
        margin: 65px 0;
        width: 25%;
    }
    
    .hero--text h2 {
        font-size: 2.25rem;
        margin: 0;
        max-width: 35%;
    }

    .hero--fusion-logo {
        left: 90%;
    }

    .app--container { 
        height: 800px;
        background-position: 0 -15px;
    }

    .app--text h3 {
        font-size: 4rem;
    }

    .app--text span {
        font-size: 5rem;
        line-height: 1.1;
        text-transform: uppercase;
    }

    .app--text .separator {
        width: 33%;
        margin: 45px 0;
    }

    .app--text p {
        font-size: 2rem;
        max-width: 65%;
    }
    
    .landscape-lights--container,
    .low-voltage--container {
        background-position: 0;
    }    

    .landscape-lights--text {
        border-left: 2px solid;
        padding-left: 75px;
    }

    .landscape-lights--text h3 {
        font-size: 4rem;
        letter-spacing: 20px;
    }

    .landscape-lights--text span {
        font-size: 5rem;
    }

    .landscape-lights--text p {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .landscape-lights--text .separator {
        margin: 40px 0;
    }

    .low-voltage--text {    
        justify-content: center;
    }

    .low-voltage--text h3 {
        font-size: 4rem;
        text-transform: uppercase;
        line-height: 85px;
    }

    .low-voltage--text span {
        font-weight: 300;
        letter-spacing: 20px;
    }

    .low-voltage--text .separator {
        margin: 45px 0;
    }

    .low-voltage--text p {
        font-size: 1.75rem;
        max-width: 65%;
        margin-bottom: 40px;
    }

    .slider picture {
        display: flex;
        flex: 0;
        column-gap: 0;    
    }

    .moonrays-styles--text {
       height: 30vh;
    }

    .buy-btn {
        display: block;
    }
}

/* Smaller Desktop */
@media screen and (min-width: 1025px) {
    /* Images */
    .button {
        font-size: 1.05rem;
        padding-left: 25px;
        padding-right: 25px;
    }

    .css-filter {
        filter: hue-rotate(270deg);
        filter: brightness(2.0);
        filter: saturate(8);
    }

    .css-filter span {
        color: #319508
    }

    .hero--container {
        background-image: linear-gradient(90deg, rgba(0,0,0,1) 31%, rgba(4,4,4,0.4990371148459384) 44%, rgba(255,255,255,0) 100%), url('../images/Moonray/hero-desktop.webp');
        background-position: right;
    }
    .app--container {
        background-image: url('../images/Moonray/app-bg-desktop-no-bg.png');
        background-color: #000;
    }    
    .scroll-active.app--container {
        background-color: red;
    }
    .landscape-lights--container {
        background-image: url('../images/Moonray/landscape-lighting-desktop.webp');
    }  
    .low-voltage--container {
        background-image: url('../images/Moonray/low-voltage-lighting-desktop.webp');
    }
    
    .hero--image {   
        display: none; 
        -webkit-animation: none;
        animation: none;
    }

    .light-types--desktop {
        display: block;
    }

    .light-types--mobile {
        display: none;
    }

    .light-types--container {
        height: 300px;
        padding: 0 150px;
        align-items: center;
    }

    .landscape-lights--items {
        background: none;
    }

    .light-types--text,
    .light-types--images { 
        flex-direction: row;
    }

    .moonrays-styles--grid-item {
        padding: 0;
    } 

    .light-types--text > div,
    .light-types--text > div:first-child {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .app--image img {
        display: block;
        width: 260px;
    }
}

/* Desktop */
@media screen and (min-width: 1600px) {
    .light-types--container {
        padding: 0 50px;
    }

    .light-types--images > div {
        margin-left: 10px;
        margin-right: 10px;
    }

    .landscape-lights--items {
        left: 56%;
    }
}

/* Large Desktop */
@media screen and (min-width: 1921px) {
    /* Images */
    .hero--container {
        background-image: linear-gradient(90deg, rgba(0,0,0,1) 31%, rgba(4,4,4,0.4990371148459384) 44%, rgba(255,255,255,0) 100%), url('../images/Moonray/hero-large.webp');
    }
    .app--container {
        background-image: url('../images/Moonray/app-bg-large.webp');
    }    
    .landscape-lights--container {
        background-image: url('../images/Moonray/landscape-lighting-large.webp');
    }  
    .low-voltage--container {
        background-image: url('../images/Moonray/low-voltage-lighting-large.webp');
    }  
}