:root {
    --color-primary: #FFB100;
    --color-navbar: #1e1810;
    --color-body: #000000;
    --color-footer: #1e1810;
    --color-text-secondary: #ffffff;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* EVITAR SCROLL HORIZONTAL */
html, body{
    max-width: 100%;
    overflow-x: hidden;
}

body{
    background:var(--color-body);
    color:var(--color-text-secondary);
    line-height:2;
    width: 100%;
    font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue","Noto Sans TC","Microsoft JhengHei",Arial,sans-serif;
}

a{
    text-decoration:none;
    color:var(--color-primary);
}

.container{
    max-width:1100px;
    margin:0 auto;
    padding:0 16px;
}

/* HEADER */
.site-header{
    background:var(--color-navbar);
    position:fixed;
    top:0;
    z-index:50;
    width: 100%;
}

.header-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:70px;
}

.nav{
    display:flex;
    gap:15px;
    list-style:none;
}

a:hover{
    background: var(--color-primary);
    border-radius: 15px;
    color: var(--color-footer);
    padding: 5px;
}

.menu-toggle{
    display:none;
    background:transparent;
    border:0;
    font-size:26px;
    color:var(--color-primary);
}

.cta{
    color: #fff;
    padding:0px 35px;
    border-radius: 25px;
    font-weight:700;
    border: solid 1px #fff;
}

.cta:hover,
footer .foterBtn:hover{
    background: #fff;
    color: var(--color-navbar);
    padding:0px 35px;
}

/* HERO */
.hero{
    margin-top: 4rem;
    padding-top: 5rem;
    background-image: url("wp-content/uploads/2022/06/image.jpeg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero img{
    width:60%;
    height:auto;
    display:block;
    margin:auto;
    object-fit:cover;
    border-radius: 25px;
    opacity:.8;
}

/* GENERAL SECTIONS */
section{
    padding:28px 0;
}

h1,h2,h3,h4{
    color:var(--color-primary);
    margin-bottom:12px;
}

p{
    margin-bottom:12px;
}

/* TABLE */
.info-table{
    width:100%;
    border-collapse:collapse;
}
.info-table td{
    border:1px solid #333;
    padding:8px;
}

/* LOGO GRID */
.logo-grid{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
}

.logo-grid img{
    max-width:90px;
    width:100%;
    height:auto;
    object-fit:contain;
}

/* FOOTER */
.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

footer{
    background:var(--color-footer);
    color:var(--color-text-secondary);
    padding:30px 0;
}

.footer-logo{
    max-width:180px;
    height:auto;
    margin-bottom:12px;
}

.footer-bottom{
    text-align:center;
    padding:16px;
    font-size:14px;
    margin-top:20px;
}

footer .foterBtn{
    font-weight:800;
    color:#fff;
    border:solid 3px #fff;
    padding:10px 15px;
}

/* SPECIAL SECTION */
.five-section{
    text-align:center;
    padding:40px 0;
}

.five-section .bigger{
    font-size:4.5rem;
    font-weight:700;
    font-family:'Raleway', sans-serif;
    line-height:1.2;
    text-transform:capitalize;
    color:#F5C61C;
}

/* RESPONSIVE */
@media(max-width:900px){

    .menu-toggle{
        display:block;
    }

    .nav{
        display:none;
        position:absolute;
        left:0;
        right:0;
        top:70px;
        background:var(--color-navbar);
        flex-direction:column;
        padding:16px;
    }

    .hero{
        padding-top:5rem;
        background-size:cover;
    }

    .hero img{
        width:95%;
        height:auto;
        margin:auto;
        border-radius:25px;
    }
}
