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


body {
background-color: rgb(67, 67, 67);
font-weight: 700;

}

.container-fluid {
    height: 100%;
    width: 100%;
}

.navbar {
  border-bottom: 2px solid #000;
  color: gold;
  box-shadow: 0px 4px 2px -2px gray;
  padding: 1rem;
}

form{
  flex:1;
}

.navbar-brand {
  color: #000000;
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-nav .nav-link {
  font-family: 'Khand', sans-serif !important;
  color: #000000;
  margin-right: 1rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #ffd500;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link.active {
  font-weight: bold;
}

.nav-link.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.container {
  margin-bottom: 20px;
}
.header {
  text-align: center;
  margin-bottom: 20px;
}
.header h1 {
  font-family: 'Alfa Slab One', cursive;
  font-size: 3rem;
  margin-bottom: 10px;
}
.card {
  margin-bottom: 20px;
}
.btn-gold {
  font-family: 'Alfa Slab One' !important;
  background-color: #FFD700 !important;
  border: none;
  color: black;
  transition: background-color 0.3s ease-in-out;
  font-weight: 500 !important;
}
.btn-gold:hover {
  background-color: #e6c200;
}

.payment-form {
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid #FFD700;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    margin: 100px auto 0;
}

.payment-form input[type="text"],
.payment-form input[type="email"],
.payment-form input[type="password"],
.payment-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 2rem;
    border-radius: 5px;
    border: 1px solid #FFD700;
    background-color: #222;
    color: #FFD700;
}

.payment-form input[type="submit"] {
    background-color: #FFD700;
    color: #000;
    cursor: pointer;
    font-weight: bold;
}

.payment-form input[type="submit"]:hover {
    background-color: #e6c200;
}

.video-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-banner video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.overlay-heading {
    font-family: 'Alfa Slab One', cursive;
    font-size: 3rem;
}

.overlay-text {
    font-family: 'Khand', sans-serif;
    font-size: 1.5rem;
}

.button-gold {
    font-family: 'Alfa Slab One';
    background-color: #FFD700;
    border: none;
    color: black;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.2s;
}

.button-gold:hover {
    box-shadow: 0 0 40px rgba(90, 79, 57, 0.8);
}

.button-gold:active {
    transform: translateY(1px);
}

.platform-signup {
    background-color: #000;
    padding: 20px;
  
    box-shadow: 0 0 20px rgba(218, 218, 218, 0.1);
    
}

.platform-signup label {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.platform-signup input,
.platform-signup select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    box-shadow: 0 0 10px goldenrod inset;
}

.platform-signup button[type="submit"] {
    margin-top: 2px;
    margin-bottom: 100px;
    font-family: 'Alfa Slab One';
    width: 100%;
    padding: 10px;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.platform-signup button[type="submit"]:hover {
    background-color: rgb(255, 217, 0);
    border-color: #fff;
}

.password-hint {
    font-size: 0.8rem;
    color: goldenrod;
    margin-top: -15px;
    margin-bottom: 20px;
    display: block;
}

.section {
    display: none;
}

.section.active {
    display: block;
}

footer {
  background-color: #000;
  padding: 20px;
  color: #ccc;
  text-align: center;
}

footer p {
  font-family: "Alfa Slab One", serif;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

footer .social-media {
  padding: 0;
  margin: 0;
}

footer .social-media li {
  display: inline-block;
  margin-right: 10px;
}

footer .social-media li a {
  color: inherit;
}

footer .social-media li a:hover {
  text-decoration: none;
  color: #000;
}


