@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --yellow: #ffea00;
    --amber: #ff9500;
    --dark: #080708;
    --stone1: #00171f;
    --stone2: #353535;
}
html {
  scroll-behavior: smooth;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: "Roboto", sans-serif;
    background-color: var(--dark);
    color: #FFFFFF;
    font-size: 14px;
    padding-bottom: 200px;
    position: relative;
    &:after{
        content: '';
        width: 100%;
        height: 250px;
        background: #14213D;
        background: linear-gradient(0deg,var(--dark) 50%, transparent 100%);
        position: fixed;
        bottom: 0;
    }
}

a{
    text-decoration: none;
    color: var(--yellow);
    transition: all ease-in-out 0.3s;
    &:hover{
        color: var(--amber);
    }
}

img{
    max-width: 100%;
}

ol{
    margin-left: 24px;
}

p{
    font-size: 16px;
    letter-spacing: 0.2px;
    margin-bottom: 1.7rem;
}

h1,h2,h3,h4{
    margin-bottom: 0.3em;
}

h1{
    font-size: 2.4em;
}
h2{
    font-size: 2em;
}
h3{
    font-size: 1.5em;
}
h4{
    font-size: 1.3em;
}

.wrapper{
    width: 100%;
    max-width: 768px;
    position: relative;
    margin: auto;
    padding: 0 24px;
}

.sticky-nav{
    position: fixed;
    bottom: 50px;
    left: 0;
    right: 0;
    width: 90vw;
    max-width: 820px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 17px 15px;
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(4px);
    z-index: 9;

    svg{
        fill: #FFFFFF;
        width: 18px;
        height: 18px;
    }
    ul{
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 20px;
        justify-content: space-evenly;
        align-items: center;
        font-size: 10px;
        white-space: nowrap;
        span{
            max-width: 60px;
            text-overflow: ellipsis;
            overflow: hidden;
        }
        li{
            a{
                display: grid;
                gap: 5px;
                justify-items: center;
                justify-content: center;
                align-items: center;
                align-content: center;
            }
        }
    }

}

marquee{
    background-color: var(--amber);
    color: var(--dark);
    padding: 7px 0;
    font-size: 16px;
}

header{
    padding: 20px;
}
.logo{
    text-align: center;
    a{
        img{
            max-height: 80px;
            max-width: 170px;
            width: auto;
            height: auto;
        }
    }
}

.hero{
    margin-bottom: 5em;
}

.hero-banner{
    margin-bottom: 2em;
    img{
        border-radius: 12px;
    }
}

.text-center{
    text-align: center;
}
.text-lg{
    font-size: 1.8em;
    font-weight: 300;
}

.divider{
    width: 70px;
    height: 5px;
    background-color: var(--yellow);
    position: relative;
    margin: auto;
    margin-bottom: 20px;
}

.cta-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.btn-cta{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.3em;
    font-weight: 600;
    background-color: var(--yellow);
    color: var(--dark);
    padding: 15px;
    border-radius: 100px;
    &.btn-dark{
        background-color: var(--stone1);
        color: #FFFFFF;
        &:hover{
            background-color: var(--stone2);
        }
    }
}

.heart-beat{
--border-angle: 0turn;
  --main-bg: conic-gradient(
    from var(--border-angle),
    #ffc300,
    #ffd000 5%,
    #ffdd00 60%,
    #ffea00 95%
  );
  border: solid 5px transparent;
  border-radius: 2em;
  --gradient-border: conic-gradient(
    from var(--border-angle),
    transparent 25%,
    #fee8cb,
    #FFFFFF 99%,
    transparent
  );
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
  background-position: center center;
  -webkit-animation: bg-spin 3s linear infinite;
          animation: bg-spin 3s linear infinite;
}

@-webkit-keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}


@media screen and (min-width:500px) {
    .sticky-nav{
    }
}

.contact-us, .payment-methods {
    margin-top: 3em;
    padding: 2em;
    border-top: 1px solid var(--stone2);
    background-color: var(--stone1);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.contact-us h2, .payment-methods h2 {
    color: var(--yellow);
}

.contact-us .contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.contact-us .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1em;
}

.contact-us .contact-item img {
    width: 32px;
    height: 32px;
}
.contact-us .contact-item p {
    margin: 0;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 1em;
}

.payment-icon img {
    height: 60px;
    width: auto;
    border-radius: 5px;
    background-color: #FFFFFF;
    padding: 5px;
    transition: all ease-in-out 0.3s;
}

.payment-icon img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--yellow);
}

.hashtags {
    margin-top: 3em;
    padding: 2em;
    border-top: 1px solid var(--stone2);
    background-color: var(--stone1);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hashtags h2 {
    color: var(--yellow);
}

.hashtag-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 1em;
}

.hashtag-container a {
    display: block;
    background-color: var(--stone2);
    color: #FFFFFF;
    padding: 10px 15px;
    border-radius: 100px;
    font-size: 1em;
    font-weight: 500;
    transition: all ease-in-out 0.3s;
}

.hashtag-container a:hover {
    background-color: var(--amber);
    color: var(--dark);
}