/* ==========================
   RESET
========================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--body-font);
    color:var(--text-dark);
    background:var(--background-light);
    overflow-x:hidden;
    line-height:1.7;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

::selection{
    background:var(--gold);
    color:#fff;
}
.back-top{

position:fixed;

bottom:30px;

right:30px;

width:52px;

height:52px;

border-radius:50%;

background:var(--gold);

color:white;

display:flex;

align-items:center;

justify-content:center;

font-size:22px;

cursor:pointer;

opacity:0;

visibility:hidden;

transition:.4s;

box-shadow:0 10px 30px rgba(0,0,0,.25);

z-index:999;

}

.back-top.show{

opacity:1;

visibility:visible;

}

.back-top:hover{

transform:translateY(-6px);

}
/*==================================================
GLOBAL SECTION SYSTEM
==================================================*/

.section{
    padding:120px 0;
}

.container{
    width:min(1200px,92%);
    margin:0 auto;
}

.section-heading{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(200,160,68,.12);
    color:var(--gold);
    font-weight:700;
    margin-bottom:20px;
}

.section-title{
    font-size:clamp(2.2rem,4vw,3.4rem);
    line-height:1.15;
    color:var(--primary-blue);
    margin-bottom:24px;
    font-family:var(--heading-font);
}

.section-title span{
    color:var(--gold);
}

.section-text{
    font-size:18px;
    line-height:1.8;
    color:#666;
}