/*==================================================
ORIQO FOODS
style.css
Page 3A
==================================================*/

/*==========================
GOOGLE FONT
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================
ROOT VARIABLES
==========================*/

:root{

    --primary:#0E5A36;
    --secondary:#D4AF37;
    --dark:#111111;
    --light:#ffffff;
    --gray:#f5f5f5;
    --text:#555555;

}

/*==========================
RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#ffffff;

    color:var(--dark);

    overflow-x:hidden;

    line-height:1.6;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;

    max-width:1300px;

    margin:auto;

}

/*==========================
SECTION
==========================*/

section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h2{

    font-size:42px;

    color:var(--primary);

    font-weight:700;

}

.section-title p{

    color:var(--text);

    margin-top:10px;

    font-size:17px;

}

/*==========================
BUTTONS
==========================*/

.btn{

    display:inline-block;

    padding:15px 35px;

    background:var(--secondary);

    color:#111;

    border-radius:40px;

    font-weight:700;

    transition:.4s;

}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 25px rgba(0,0,0,.15);

}

/*==========================
HEADER
==========================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:rgb(0, 0, 0);

    backdrop-filter:blur(10px);

    z-index:9999;

    transition:.4s;

}

header.sticky{

    background:#111;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    height:65px;

}

.logo-text h2{

    color:#fff;

    font-size:26px;

    font-weight:700;

}

.logo-text span{

    color:var(--secondary);

    font-size:13px;

    letter-spacing:2px;

}

/*==========================
NAVIGATION
==========================*/

nav ul{

    display:flex;

    gap:35px;

}

nav ul li a{

    color:#fff;

    font-weight:500;

    transition:.3s;

    position:relative;

}

nav ul li a:hover{

    color:var(--secondary);

}

nav ul li a::after{

    content:'';

    position:absolute;

    width:0;

    height:2px;

    left:0;

    bottom:-6px;

    background:var(--secondary);

    transition:.4s;

}

nav ul li a:hover::after{

    width:100%;

}

/*==========================
MENU ICON
==========================*/

.menu-toggle{

    display:none;

    font-size:28px;

    color:#fff;

    cursor:pointer;

}

/*==========================
HERO SECTION
==========================*/

.hero{

    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
    url('../images/hero.jpg');

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    color:#fff;

}

.hero-content{

    max-width:650px;

}

.hero h1{

    font-size:62px;

    font-weight:800;

    line-height:1.2;

}

.hero h1 span{

    color:var(--secondary);

}

.hero p{

    margin:25px 0;

    font-size:19px;

    color:#f1f1f1;

}

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.btn-outline{

    border:2px solid #fff;

    color:#fff;

    background:transparent;

}

.btn-outline:hover{

    background:#fff;

    color:#111;

}

/*==========================
SCROLL DOWN
==========================*/

.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    animation:bounce 2s infinite;

}

@keyframes bounce{

0%,20%,50%,80%,100%{

transform:translate(-50%,0);

}

40%{

transform:translate(-50%,-10px);

}

60%{

transform:translate(-50%,-5px);

}

}

/*==========================
RESPONSIVE HEADER
==========================*/

@media(max-width:991px){

.menu-toggle{

display:block;

}

nav{

position:absolute;

top:100%;

left:0;

width:100%;

background:#111;

display:none;

}

nav.active{

display:block;

}

nav ul{

flex-direction:column;

padding:20px;

gap:20px;

}

.hero{

text-align:center;

}

.hero-content{

margin:auto;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:17px;

}

}

@media(max-width:576px){

.logo img{

height:50px;

}

.logo-text h2{

font-size:20px;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:15px;

}

.btn{

padding:12px 25px;

font-size:14px;

}

.section-title h2{

font-size:32px;

}

}