/* Professional Registration Page Stylesheet - Updated with consistent color scheme */

/* Global Reset and Box-Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  background-color: #0a0a0a;
  color: #fff;
}

/* Top Navigation Bar */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #0b183b;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.logo-img {
  height: 40px;
  margin-right: 10px;
}

.logo span {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #0a5eb0;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* Burger Menu for Mobile */
.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Header Styling */
header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  background-image: url("vg2.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 20px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

/* Content Styling */
header .content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

header .content h1 {
  color: #FFF;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 0 15px #0a5eb0;
}

header .content h2.coming-soon {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 5px;
  text-shadow: 0 0 20px #0a5eb0;
}

/* Primary Action Buttons - Moved to top for better visibility */
.primary-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #0a5eb0;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px #0a5eb0;
}

.primary-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #0a5eb0;
  transition: all 0.3s ease;
  z-index: -1;
}

.primary-button:hover::before {
  width: 100%;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #0a5eb0;
}

.primary-button span {
  margin-right: 10px;
}

.register-btn {
  background: linear-gradient(45deg, #0a5eb0, #0a5eb0);
}

.rules-btn {
  background: linear-gradient(45deg, #1f2937, #374151);
}

/* Countdown Timer Styling */
.countdown-container {
  margin: 40px 0;
}

.countdown-wrapper {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #0a5eb0;
}

.countdown {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 5px;
  text-shadow: 0 0 15px #0a5eb0;
}

.countdown-labels {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.countdown-labels span {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0a5eb0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Registration Info */
.registration-info {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Registration Message */
.registration-message {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 30px;
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.registration-message:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.registration-message h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0a5eb0;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(10, 94, 176, 0.5);
}

.registration-message p {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}

/* Registration Cards */
.registration-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.card {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 30px;
  width: 300px;
  border: 1px solid #0a5eb0;
  transition: all 0.3s ease;
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.2);
  border-color: #0a5eb0;
}

.card-icon {
  font-size: 3rem;
  color: #0a5eb0;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.card p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Footer Styling */
footer {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 5px 0;
}

.social-icons {
  margin-top: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 5px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #dc2626;
  color: #fff;
  transform: translateY(-3px);
}

/* Animations */
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .nav-links {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  .nav-links {
    position: absolute;
    right: 0;
    height: 100vh;
    top: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 70%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    padding: 100px 0;
  }
  
  .nav-links li {
    opacity: 0;
    margin: 0;
  }
  
  .burger {
    display: block;
  }
  
  .nav-active {
    transform: translateX(0%);
  }
  
  header .content h1 {
    font-size: 2rem;
  }
  
  header .content h2.coming-soon {
    font-size: 2.5rem;
  }
  
  .countdown {
    font-size: 3rem;
  }
  
  .countdown-labels span {
    font-size: 0.7rem;
  }
  
  .primary-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .primary-button {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
  }
  
  .registration-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  header .content h1 {
    font-size: 1.5rem;
  }
  
  header .content h2.coming-soon {
    font-size: 2rem;
  }
  
  .countdown {
    font-size: 2rem;
  }
  
  .countdown-labels span {
    font-size: 0.6rem;
  }
  
  .registration-info {
    font-size: 0.9rem;
  }
  
  .primary-button {
    padding: 15px 25px;
    font-size: 1rem;
  }
}

