/* Main button style */
body {
  background: black;
}

a {
    text-decoration: none;
}

.btn_main {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    min-width: 130px;
    padding: 15px 50px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    z-index: 2;
    transition: color 0.6s ease-in-out, background-color 0.6s ease-in-out;
}

.btn_main a {
    text-decoration: none;
}

/* White primary button style */
.btn_white_primary {
    border: 2px solid #fff;
    color: #fff;
}

.btn_white_primary:hover span {
    color: #000;
}

.btn_white_primary .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #000;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* White secondary button style */
.btn_white_secondary {
    border: 2px solid #fff;
    background-color: #fff;
    color: #000;
}

.btn_white_secondary:hover span {
    color: #fff;
}

.btn_white_secondary .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #fff;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Yellow primary button style */
.btn_yellow_primary {
    border: 2px solid #ff9f00;
    color: #ff9f00;
}

.btn_yellow_primary:hover span {
    color: #000;
}

.btn_yellow_primary .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ff9f00;
    color: #000;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Yellow secondary button style */
.btn_yellow_secondary {
    border: 2px solid #ff9f00;
    background-color: #ff9f00;
    color: #000;
}

.btn_yellow_secondary:hover span {
    color: #ff9f00;
}

.btn_yellow_secondary .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    color: #ff9f00;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), background-color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Rounded button style */
.btn_round {
    border-radius: 50px;
}

/* Hover effect variations */
.bottom-up .hover {
    transform: translateY(100%);
}

.bottom-up:hover .hover {
    transform: translateY(0);
}

.top-down .hover {
    transform: translateY(-100%);
}

.top-down:hover .hover {
    transform: translateY(0);
}

.right-left .hover {
    transform: translateX(100%);
}

.right-left:hover .hover {
    transform: translateX(0);
}

.left-right .hover {
    transform: translateX(-100%);
}

.left-right:hover .hover {
    transform: translateX(0);
}





/* Round buttons */

/* Common button styles */
.btn-main-secondary {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    min-width: 130px;
    padding: 15px 50px;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.btn-main-secondary a {
    text-decoration: none;
}

/* Yellow primary button style */
.btn-yellow-primary {
    color: var(--dark);
    background: #eedc34;
    border: 1px solid transparent;
    border-radius: 50px;
}

.btn-yellow-primary:hover {
    background: transparent;
    color: #eedc34;
    border-color: #ed7e34;
}

.btn-yellow-primary .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Yellow secondary button style */
.btn-yellow-secondary {
    background: transparent;
    color: #eedc34;
    border: 1px solid #ed7e34;
    border-radius: 50px;
}

.btn-yellow-secondary:hover {
    background: #eedc34;
    color: var(--dark);
}

.btn-yellow-secondary .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* White primary button style */
.btn-white-primary {
    color: #000;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 50px;
}

.btn-white-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #000;
}

.btn-white-primary .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 1px solid #fff;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* White secondary button style */
.btn-white-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
}

.btn-white-secondary:hover {
    background: #fff;
    color: var(--dark);
}

.btn-white-secondary .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -1;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
