/*=========================
RESET
=========================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    /* color:#222; */
    color:silver;
    background:black;
}

img{
    max-width:100%;
    display:block;
}

ul{
    list-style:none;
}

a{
    text-decoration:none;
    color:inherit;
}



nav {
    background-color: #000;
}

/*=========================
GLOBAL
=========================*/

.container{
    width:min(90%,1200px);
    margin:auto;
}

.section{
    padding:80px 0;
}

h1,
h2,
h3{
    line-height:1.2;
}

h2{
    text-align:center;
    margin-bottom:40px;
}

/*=========================
BUTTONS
=========================*/

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:8px;
    font-weight:bold;
    transition:.3s;
}

.btn-primary{
    background:#d90429;
    color:#fff;
}

.btn-primary:hover{
    background:#b00020;
}

.btn-secondary{
    border:2px solid white;
    color:white;
}

.btn-secondary:hover{
    background:white;
    color:black;
}

.btn-dark{
    background:#111;
    color:white;
}

.btn-light{
    background:white;
    color:#d90429;
}

/*=========================
HEADER
=========================*/

.header{
    background:#000;
    position:sticky;
    top:0;
    z-index:999;
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    width:90px;
}

.logo {
    background-color: #000;
}

.navbar ul{
    display:flex;
    gap:30px;
}

.navbar a{
    color:white;
    font-weight:bold;
}

.navbar a:hover{
    color:#d90429;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:2rem;
    cursor:pointer;
}

/*=========================
HERO
=========================*/

.hero{
    background-image: url("/images/NavBG_2.png");
    background-repeat: no-repeat;
    background-size: 100%;
    color:white;
    padding:80px 0;
}

.hero-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero h1{
    font-size:4rem;
    margin:20px 0;
}

.hero h1 span{
    color:#d90429;
}

.email{
    color:#ccc;
}

.button-group{
    display:flex;
    gap:20px;
    margin:35px 0;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.features div{
    background:#111;
    padding:15px;
    border-radius:8px;
    text-align:center;
}

.hero-image img{
    border-radius:15px;
}

/*=========================
CARDS
=========================*/

.cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    padding-bottom:25px;
    text-align:center;
}

.card img{
    width:100%;
}

.card h3{
    margin:20px 0 10px;
}

.card p{
    margin-bottom:10px;
}

.card h4{
    color:#d90429;
    font-size:2rem;
    margin:20px 0;
}

.coming-soon{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}

.socials{
    display:flex;
    gap:20px;
    margin-top:20px;
}

/*=========================
ABOUT
=========================*/

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:50px;
    align-items:start;
}

.about-grid img{
    border-radius:15px;
}

.about ul li{
    margin-bottom:15px;
    padding-left:10px;
    border-left:4px solid #d90429;
}

/*=========================
CTA
=========================*/

.cta{
    background:#d90429;
    color:white;
    text-align:center;
    padding:60px 20px;
}

.cta h2{
    margin-bottom:20px;
}

.cta p{
    margin-bottom:25px;
}

/*=========================
FOOTER
=========================*/

footer{
    background:#000;
    color:white;
    padding:60px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

footer h3{
    margin-bottom:15px;
}

footer li{
    margin-bottom:10px;
}

footer img{
    max-width:180px;
}

/*=========================
TABLET
=========================*/

@media(max-width:992px){

.hero-container{
    grid-template-columns:1fr;
    text-align:center;
}

.hero-image{
    order:-1;
}

.cards{
    grid-template-columns:1fr;
}

.about-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

.features{
    grid-template-columns:repeat(2,1fr);
}

}

/*=========================
MOBILE
=========================*/

@media(max-width:768px){

.menu-toggle{
    display:block;
}

.navbar{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#111;
}

.navbar.active{
    display:block;
}


.hero {
    background-color: black;
}

.navbar ul{
    flex-direction:column;
    padding:20px;
}

.navbar li{
    margin:15px 0;
}

.header .btn{
    display:none;
}

.hero{
    padding:60px 0;
}

.hero h1{
    font-size:2.5rem;
}

.button-group{
    flex-direction:column;
}

.features{
    grid-template-columns:1fr;
}

.cards{
    gap:30px;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

}

/*=========================
SMALL PHONES
=========================*/

@media(max-width:480px){

.container{
    width:95%;
}

.hero h1{
    font-size:2rem;
}

.btn{
    width:100%;
    text-align:center;
}

.section{
    padding:60px 0;
}

}