/* ===============================
   AFLC WEBSITE 2.0
=============================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#0d0d0d;
    color:#fff;
}

/* Header */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    background:rgba(0,0,0,.85);
    backdrop-filter:blur(10px);
    z-index:1000;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 0;
}

.logo img{
    height:70px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-weight:600;
    transition:.3s;
}

nav a:hover,
nav a.active{
    color:#2ECC71;
}

/* Hero */

.hero{

    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.70)),
    url("images/hero.jpg");
    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

}

.hero-content{

    max-width:900px;
    padding:20px;

}

.hero h1{

    font-size:72px;
    line-height:1.1;

}

.hero p{

    margin-top:25px;

    font-size:24px;

}

.sub{

    color:#2ECC71;

    font-weight:600;

}

/* Buttons */

.buttons{

    margin-top:45px;

}

.btn{

    display:inline-block;

    padding:18px 45px;

    border-radius:8px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

    margin:10px;

}

.green{

    background:#2ECC71;

    color:white;

}

.green:hover{

    transform:translateY(-5px);

}

.dark{

    border:2px solid white;

    color:white;

}

.dark:hover{

    background:white;

    color:black;

}

/* Mobile */

@media(max-width:900px){

.container{

    flex-direction:column;

}

nav{

    margin-top:20px;

}

nav a{

    display:block;

    margin:10px 0;

}

.hero h1{

    font-size:42px;

}

.hero p{

    font-size:20px;

}

}
/* ===== Inner Pages ===== */

.featured,
.intro{
    max-width:1100px;
    margin:120px auto 60px;
    padding:30px;
    text-align:center;
}

.featured img,
.intro img{
    width:100%;
    max-width:700px;
    display:block;
    margin:25px auto;
    border-radius:12px;
}

.featured h1,
.featured h2,
.intro h1,
.intro h2{
    margin-bottom:20px;
}

.featured p,
.intro p{
    line-height:1.8;
    margin-bottom:20px;
}

.featured ul{
    display:inline-block;
    text-align:left;
    margin:20px auto;
    line-height:1.8;
}

footer{
    text-align:center;
    padding:30px;
    margin-top:40px;
}
/* Product Gallery */

.product-gallery{
    text-align:center;
    margin-bottom:40px;
}

.main-product{
    width:100%;
    max-width:700px;
    border-radius:12px;
    display:block;
    margin:0 auto 25px;
}

.thumbnails{
    display:flex;
    justify-content:center;
    gap:20px;
}

.thumbnails img{
    width:180px;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
    border:3px solid transparent;
}

.thumbnails img:hover{
    transform:scale(1.05);
    border-color:#2ECC71;
}