body {
  background-image: url("../img/features/wave.svg");
  background-repeat:no-repeat;
  background-position: 0px 1650px;
  background-size: cover

}
a, a:hover, a:active, a:focus {
    text-decoration: none;
    color:inherit
}

@media only screen and (max-width: 768px) {
    body {
         background-size: cover
    }

}

.btn-flex {
    color: white;
    background: #242835;
    border-color: #242835;
}

.btn-flex:hover {
    color: white;
    background: #3d445a;
    border-color: #8BBAFF;
}

.btn-flex:active, .btn-flex:focus {
    border-color: #8BBAFF;
}

.btn-whop {
    color: white;
    background: #FA4616;
    border-color: #FA4616;
}

.btn-whop:hover {
    color: white;
    background: #c43811;
}

.btn-whop:active, .btn-whop:focus {
    border-color: white;
}

/* Base Button Styles */
.dashboard-btn,
.purchase-btn,
.aio-btn,
.whop-btn {
    float: right;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 20px;
    text-decoration: none; /* no underline */
    color: white;
    text-align: center;
    background: #242835;
    transition: box-shadow 0.2s ease-in-out;
}

/* Specific Button Widths */
.dashboard-btn {
    width: 170px;
}

.aio-btn {
    width: 100px;
}

.whop-btn {
    width: 200px;
    background: #FA4616; /* override background */
    position: relative; /* for :after content */
}

/* Hover States */
.dashboard-btn:hover,
.purchase-btn:hover,
.aio-btn:hover {
    cursor: pointer;
    box-shadow: 0 0 0 2px #8BBAFF;
}

.whop-btn:hover {
    cursor: pointer;
    box-shadow: 0 0 0 2px white;
}

/* Whop Button Extra Styling */
.whop-btn img {
    padding-right: 5px;
}

.whop-btn:after {
    content: 'Dashboard';
}

/* Responsive Adjustments */
@media only screen and (max-width: 768px) {
    .whop-btn {
        width: 100px !important;
        margin: 0 20px;
    }
    .whop-btn:after {
        content: '';
    }
    .whop-btn img {
        padding-right: 0;
    }
}


/* --------------------- back to top floating button ---------------------- */

#myBtn {
  position: fixed; /* Fixed/sticky position */
  bottom: 40px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: 2px solid #8BBAFF; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #242835; /* Set a background color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0px 15px; /* Some padding */
  padding-bottom:10px;
  border-radius: 100px; /* Rounded corners */

  width:70px;
  height:70px;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 300ms, visibility 300ms;
  transition: opacity 300ms, visibility 300ms;

}

#myBtn:hover {
  background-color: #3c4258; /* Add a dark-grey background on hover */
}





/* ----------------------------  header stuff ---------------------------- */
.header {
    font-size:18px;
    width:100%;
    background-color:transparent;
    height:100px;
    padding:10px;
    position: relative;
}

.header .row, .header-image{
    height:100%
}

.header-navs a {
    text-decoration: none;
    padding-right:30px;
    color:white
}

.header-navs a:hover {
    color:#8BBAFF
}

@media only screen and (max-width: 768px) {
    .header-navs {
        display:none
    }
    .header-image {
        position:absolute;
        left:0px
    }
    .header-image img{
        padding:15px
    }
}

.header-image img {
    height:80px;
    display:block;
    margin:auto;
}


/* ----------------------------- payment overlay --------------------------  */



.payment-overlay {
    margin:auto auto;
    text-align: center;
    font-size:16px;
    position:absolute;
    top:50%;
    left:50%;
    width:500px;
    height:350px;
    border-radius:10px;
    transform:translate(-50%, -50%);
    color: white;
    background: #4b5068;
    z-index: 100;

    visibility: hidden;
    opacity: 0;

    -webkit-transition: opacity 300ms, visibility 300ms;
    transition: opacity 300ms, visibility 300ms;
}

@media only screen and (max-width: 768px) {
    .payment-overlay {
         width:90%;
    }

}

.payment-controls {
    height:30px;
    width:100%;
    background-color:#2d303e;
    margin-bottom:10px
}

#close-overlay  {
    cursor:pointer;
    float:right;
    height:100%;
    font-weight: bold;
    width:30px;
    background-color:#1e2029;
    content: '\u2014';
}

#card-errors {
    color:#ff0033;
    padding:5px 0px
}

.flexcard {
    display: inline-block;
    height:100%;
}




/* ------------------------- home section styling -------------------------  */
.section-home {
    height:100vh;
    text-align:center;
}

.section-home .row{
    height:100%;

}

.discord-image{
    padding:0px;
}
@media only screen and (max-width: 768px) {
    .discord-image {
        top:-100px;
        margin: 20px;
    }


}

@media (max-width:480px)  {
    .description-box  {
        font-size: 16px;
    }
}

#discord-image {
    margin-top:20px;
    background-image:
    linear-gradient(rgba(30, 33, 43, 0) 40%, rgba(30, 33, 43, 1) 100%),
    url('../img/webhooks/discord.svg');
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    background-size: cover;
    color: white;
}


.section-home .vertical-center {
    top:40%
}

.description-box {
    text-align:center;
    width:80%;
    margin: auto
}

.purchase-box {
    margin: auto
}


.description-box, .purchase-box {
    padding:10px 0px
}

.purchase-btn {
    border-radius: 8px;
    padding:10px 15px;
    font-size: 20px;
    width:200px;
    margin:auto;
    box-shadow: 0 0 0 2px #8BBAFF;
}

.purchase-btn:hover{
    filter: contrast(90%);
}

/* ----------------------  features section styling ----------------------- */

.section-header{
    margin-bottom:100px;
    font-weight:bold
}

.section-features {
    padding-top: 2vh;
    padding-bottom: 2vh;
    text-align:center;
}

.section-features .card-img-top {
    margin:20px 0px;
    height:60px
}

.section-features .card-title {
    font-weight:bold
}
.section-features .card-text {
    font-size:20px
}

.section-features .card-container {
    display:flex;
    justify-content: center;
    align-items: stretch;
    margin:0px 20px;
    gap: 10px
}

.section-features .card {
    margin:auto;
    margin-bottom: 10px;
    max-width:400px;
    background: #242835;
    border-radius: 32px;
    height:100%
    }

 @media only screen and (max-width: 800px) {
        .section-features .card-container {
            flex-direction: column;
        }
    
    
    }


/* ------------------------ section monitors stuff  ------------------------ */
.section-monitors {
    padding-top: 2vh;
    padding-bottom: 2vh;
    text-align:center;
}

.section-monitors .section-header{
    margin-top:100px;
}

.custom-container {
    padding:0px 20px
}

.card {
    background: #242835;
    border-radius: 20px;
    vertical-align: middle;
    padding:10px
}

.section-monitors img{
    margin-bottom:20px
}

.section-monitors .card-title{
    padding:10px 20px;
    font-weight:bold;
    font-size:20px;
}

.section-monitors .card-text{
    font-size:17px;
}



/* faq section stuff */

.section-faq {
    padding-top: 10vh;
    padding-bottom: 10vh;
    text-align:center;
}

#accordion .card {
    border-radius: 10px;
    margin-bottom:10px
}

#accordion .card-header {
    cursor:pointer;
    background:inherit;
    border-bottom: none

}
#accordion {
    font-size:16px
}

.fourohfour {
    text-align: center;
    padding: 5vh;
    margin-top: 5vh;
  }

  /* activation box stuff */

.activate-box {
    width:100%;
    text-align: center;
    position: absolute;
    top:30%;
}
.activate-box header {
    margin:auto;
    max-width:400px;
}

.activate-box button, .activate-box input, .activate-box input:focus{
    border: none;
    outline:none;
    color:white
}

.activate-box button:focus, .activate-box button:active{
    border:none !important;
}

.activate-box input::placeholder{
    color: #8BBAFF;
}

.activate-box input{
    background-color: #242835 !important;
}
.activate-box label{
    font-weight: bold
}

/* successfully purchassed stuff */

.success-purchase-box {
    position: absolute;
    top:30%;
    width:100%;
    text-align:center
}
.success-purchase-box p {
    margin:auto;
    min-width:300px;
    max-width:80%
}

.success-purchase-box .success-color{
    font-size:140%;
    font-weight:bold;
    color: auto/*#5CFF58;*/

}
