        @font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.ttf') format('truetype');
  font-style: normal;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Lato';
}

body{
    width:100%;
    height:100%;
}

/* MAIN SECTION */
.hero{
    width:100%;
        min-height: 90vh;
    display:flex;
}

/* LEFT SIDE */
.left{
    width:50%;
    background:#37b772; /* green */
    display:flex;
    justify-content:center;
    align-items:center;
    padding:5vh 5vw;
}

.content{
    max-width:40vw;
}

.content h1{
font-size: 3.5rem;
        color: #ffd700;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 900;
}

.content p{
    font-size:1.8rem;
    color:#0a0a0a;
    line-height:1.6;
    margin-bottom:2rem;
}

/* BUTTONS */
.buttons{
    display:flex;
    gap:1.5rem;
    flex-wrap:wrap;
}

.btn{
    padding:1rem 2rem;
    font-size:1.2rem;
    border-radius:0.5rem;
    cursor:pointer;
    text-decoration:none;
    display:inline-block;
}

.btn-primary{
    background:#ffd400;
    color: #000;
}

.btn-outline{
    border:2px solid #ffd400;
    color:#ffd400;
    background:transparent;
}

/* RIGHT SIDE */
.right{
    width:50%;
}

.right img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position: right;
}

/* SECTION */
.rewards{
    width:100%;
    padding:8vh 5vw;
        background-color: rgb(255 251 229);
    text-align:center;
}

/* HEADING */
.rewards h2{
    font-size:3rem;
    margin-bottom:6vh;
}

/* CARDS CONTAINER */
.rewards-container{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:3vw;
}

/* CARD */
.card{
    width:30%;
}

.card img{
    width:6vw;
    max-width:80px;
    margin-bottom:2vh;
}

.card h3{
    font-size:1.4rem;
    margin-bottom:1rem;
}

.card p{
    font-size:1rem;
    color:#555;
    line-height:1.5;
}

/* SECTION */
.points{
    width:100%;
    padding:10vh 5vw;
    background:#fffbe5;
    text-align:center;
}

/* HEADING */
.points h2{
    font-size:3rem;
    margin-bottom:3vh;
}

/* HIGHLIGHT TEXT */
.points .highlight{
    font-size:2rem;
    color:#3fb37a;
    margin-bottom:2vh;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:1rem;
}

/* DOTS */
.dot{
    font-size:2rem;
    color:#3b4cca;
}

/* SUBTEXT */
.points p{
    font-size:1.2rem;
    color:#666;
}

/* SECTION */
.vip{
    width:100%;
    padding:10vh 5vw;
    background:#eeeeee;
    text-align:center;
}

/* HEADING */
.vip h2{
    font-size:3rem;
    color:#3fb37a;
    margin-bottom:6vh;
}

/* CARD WRAPPER */
.vip-container{
    display:flex;
    justify-content:space-between;
    gap:2vw;
}

/* CARD */
.card{
    width: 32%;
    /* background: #f8f8f8; */
    /* border: 1px solid #ccc; */
    border-radius: 1rem;
    padding: 4vh 2vw;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ICON */
.card .icon{
    font-size:3rem;
    margin-bottom:2vh;
}

/* TITLES */
.card h3{
    font-size:1.5rem;
    margin-bottom:0.5rem;
}

.card .sub{
    font-size:1.1rem;
    color:#666;
    margin-bottom:3vh;
}

/* LIST */
.card ul{
    list-style:none;
}

.card ul li{
    font-size:1rem;
    margin-bottom:1.5vh;
    display:flex;
    align-items:flex-start;
    gap:0.8rem;
}

/* CHECK ICON */
.check{
    color:#f4c400;
    font-weight:bold;
}

/* COLORS PER CARD */
.trainer h3{ color:#5bbf8a; }
.slayer h3{ color:#4a4fd1; }
.master h3{ color:#c8a300; }

.footer{
width:100%;
background:#000;
padding:1rem 0;
display:flex;
justify-content:center;
align-items:center;
}

.footer-inner{
display:flex;
align-items:center;
justify-content:center;
gap:.6rem;
font-size:1rem;
color:#fff;
}

.footer-inner a{
color:#fff;
text-decoration:none;
font-size:1rem;
}

.footer-inner a:hover{
text-decoration:underline;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero{
        flex-direction:column;
        min-height: auto;
    }


    .left, .right{
        width:100%;
    }

    .content{
        max-width:95%;
                display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .content h1{
        font-size:2.2rem;
    }

    .content p{
        font-size: 1.35rem;
        text-align: center;
    }

    .right{
        height:50vh;
    }
    
        .rewards h2{
        font-size:2rem;
    }

    .rewards-container{
        flex-direction:column;
        gap:5vh;
    }

    .card{
        width:100%;
    }

    .card img{
        width:15vw;
    }
    
    .points{
        padding:8vh 5vw;
    }

    .points h2{
        font-size:2rem;
    }

    .points .highlight{
        font-size:1.5rem;
        flex-wrap:wrap;
        gap:0.5rem;
    }

    .dot{
        font-size:1.5rem;
    }

    .points p{
        font-size:1rem;
    }
    
    .vip h2{
        font-size:2rem;
    }

    .vip-container{
        flex-direction:column;
        gap:4vh;
    }

    .card{
        width:100%;
        padding:3vh 4vw;
    }

    .card .icon{
        font-size:2.5rem;
    }
    
    .footer{
padding:1.2rem 0;
}

.footer-inner{
font-size:.9rem;
gap:.4rem;
}
}

