/* ==========================================================
   Trade by Ray
   Main Stylesheet
   Version 1.0
========================================================== */

/* ===========================
   RESET
=========================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===========================
   ROOT VARIABLES
=========================== */

:root{

    --primary:#0F5132;
    --primary-dark:#0A3C25;

    --secondary:#D4AF37;
    --secondary-dark:#B8941F;

    --white:#FFFFFF;

    --light:#F8F9FA;

    --border:#E5E7EB;

    --text:#1F2937;

    --text-light:#6B7280;

    --container:1320px;

    --radius:16px;

    --transition:.3s ease;

    --shadow:
    0 15px 40px rgba(0,0,0,.08);

}

/* ===========================
   HTML
=========================== */

html{

    scroll-behavior:smooth;

}

/* ===========================
   BODY
=========================== */

body{

    font-family:"Poppins",sans-serif;

    font-size:16px;

    line-height:1.7;

    color:var(--text);

    background:#fff;

    overflow-x:hidden;

}

/* ===========================
   IMAGE
=========================== */

img{

    max-width:100%;

    display:block;

    height:auto;

}

/* ===========================
   LINK
=========================== */

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}

/* ===========================
   LIST
=========================== */

ul{

    list-style:none;

}

/* ===========================
   CONTAINER
=========================== */

.container{

    width:100%;

    max-width:var(--container);

    margin:auto;

    padding-left:20px;

    padding-right:20px;

}

/* ===========================
   SECTION
=========================== */

section{

    position:relative;

    padding:100px 0;

}

/* ===========================
   TITLE
=========================== */

.section-title{

    margin-bottom:20px;

    text-align:center;

}

.section-title h2{

    font-size:46px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:var(--text-light);

}

/* ===========================
   BUTTON
=========================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 34px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:var(--transition);

}

.btn:hover{

    background:var(--secondary);

    transform:translateY(-3px);

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px){

    section{

        padding:80px 0;

    }

    .section-title h2{

        font-size:36px;

    }

}

@media(max-width:768px){

    body{

        font-size:15px;

    }

    .section-title h2{

        font-size:30px;

    }

}