/* ===========================
   AR CABLES - STYLE.CSS
   PART 1
=========================== */

html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f8f8f8;
    color:#222;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ===========================
   HEADER
=========================== */

.header{
    background:#111;
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo h2{
    color:#fff;
    font-size:34px;
    font-weight:700;
}

.logo span{
    color:#ff3b00;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav ul li{
    list-style:none;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:500;
    position:relative;
    transition:.3s;
}

nav ul li a:hover{
    color:#ff3b00;
}

nav ul li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:#ff3b00;
    transition:.3s;
}

nav ul li a:hover::after{
    width:100%;
}

.quote-btn{
    background:#ff3b00;
    color:#fff;
    padding:14px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.quote-btn:hover{
    background:#c40000;
    transform:translateY(-3px);
}

/* ===========================
   HERO
=========================== */

.hero{
    height:92vh;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../images/banner.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    max-width:850px;
}

.hero-content h1{
    color:#fff;
    font-size:65px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-content p{
    color:#eee;
    font-size:21px;
    line-height:1.8;
    margin-bottom:40px;
}

.btn{
    display:inline-block;
    background:#ff3b00;
    color:#fff;
    text-decoration:none;
    padding:18px 40px;
    border-radius:6px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#c40000;
    transform:translateY(-4px);
}

.hero-content{
    animation:fadeUp 1s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
