.footerLogo {
  width: 130px;
}

/* header register drop down */

.header__button {
  position: relative;
  /* display: inline-block; */
}
.register-btn-header {
  border-radius: 5px !important;
}
.register-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #232529;
  color: #ffffff;
  padding: 10px 15px;
  z-index: 999;
  white-space: nowrap;
  border-radius: 5px;
  min-width: 150px;
}

.header__button:hover .register-dropdown {
  display: block;
}

.register-dropdown a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
}

.register-dropdown a:last-child {
  border-bottom: none;
}

.register-dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
/* end header register drop down */

.paddingBottomContact {
  padding-bottom: 100px;
}
.aWordBreak {
  word-break: break-all;
}

/* player reg modal */
.modal-width-rules {
  max-width: 650px;
}
/* end player reg modal */

/* banner section btn */
.bannerSectionBtn {
  font-size: 15px;
}
/* end banner section btn */

.fullWidthPlayerForm {
  grid-template-columns: 1fr !important;
}

/* new about section */

.about-section {
  background-color: #111111;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-container {
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 70vh;
}

.about-image-wrapper {
  position: relative;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a4a6b 0%, #1e3a5f 100%);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(42, 74, 107, 0.8) 0%, rgba(30, 58, 95, 0.9) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23234567"/><circle cx="200" cy="150" r="50" fill="%23ffffff" opacity="0.1"/><text x="200" y="160" text-anchor="middle" fill="%23ffffff" opacity="0.6" font-family="Arial" font-size="14">Golf Course Image</text></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.about-content {
  padding-left: 40px;
}

.about-header-small {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  opacity: 0.7;
  margin-bottom: 16px;
}

.about-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #fff;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 40px;
  /* max-width: 500px; */
  color: #fff;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  opacity: 0.8;
  color: #fff;
}

.about-feature-icon {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.about-cta-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.about-decorative-bg {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  opacity: 0.3;
}

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 30px;
  }

  .about-content {
    padding-left: 0;
    /* text-align: center; */
    /* text-align: justify; */
  }

  .about-image-wrapper {
    height: 400px;
    order: -1;
  }

  .about-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-container {
    padding: 0 20px;
    gap: 40px;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-image-wrapper {
    height: 300px;
  }
}

/* end new about section */

/* .radioInputPlayerReg {
  width: 20px !important;
  height: 20px !important;
  border: 1px solid #fff !important;
  border-bottom: unset !important;
  outline: unset !important;
  background-color: unset !important;
  transition: all 0.5s;
  color: var(--primary);
} */
.radioContainerDiv p {
  color: #fff;
  font-size: 1.2rem;
  font-family: var(--font_instrumentsans);
}
@media (min-width: 769px) {
  .contact-area-contact-page .contact-formwrap-player-reg {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
/* Calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) !important; /* makes icon white for dark background */
  cursor: pointer;
}
.dobField label {
  position: absolute;
  top: -20px;
  color: #fff;
  opacity: 0.8;
}

/* bg video styles */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  /* min-height: 100%; */
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* adjust opacity */
  z-index: -1;
}

.hero-content-video {
  position: relative;
  z-index: 1;
  color: #fff;
  top: 50%;
  /* transform: translateY(-50%); */
}
.hero-area-video {
  position: relative;
  width: 100%;
  /* min-height: 100vh; */
  min-height: 100vh;
  overflow: hidden;
}
/* end bg video styles */

/* form bg */
.formBg {
  background: url(../esol/images/bg/form-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 3rem;
}
/* end form bg */

/* blink btn */
.blinkBtn {
  /* background-color: var(--primary); */
  background-color: #ffeb4c;
  color: #000;
  animation: blink 1.5s infinite;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
}

.blinkBtn:hover {
  /* background-color: var(--theme); */
  background-color: #ffeb4c;
  color: #fff;
  animation: none;
  /* stop blinking on hover */
}

@keyframes blink {
  0%,
  100% {
    /* background-color: var(--primary); */
    background-color: #ffeb4c;
  }

  50% {
    /* background-color: var(--theme); */
    /* background-color: #ffeb4c; */
    background-color: #0e4152;
  }
}
/* end blink btn */

.playerRegSectionContainer {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  /* blur */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}
