﻿/*--------------------------------------------------------------
# Font & Color Variables
	#0B5ED7 Blue
	#4DA3FF Light-Blue
	#FF6600 Orange
	#FE8916 Light-Orange
	#28A745 Green
	#5BC142 Light-Green
	#DC3545 Red
	#E5E7EB Light-Gray
	#92969C	Medium-Gray
	#212529 Dark-Gray
	#0D0D0D Near-Black
	#F9FAFB Near-White
	#010203 Footer ONLY
	
	GOLF+ COLOR
	#5BC142
	
	WALKABOUT COLOR
	#EEB002
	
	Transparancy Percetanges Letter
	FF = 100%
	CC = 80%
	99 = 60%
	80 = 50%
	66 = 40%
	33 = 20%
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto",  sans-serif;
  --nav-font: "Lato",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #000; /* Background color (BALCK) for the entire website, including individual sections */
  --default-color: #92969C; /* Default color (DARK GRAY) used for the majority of the text content across the entire website */
  --heading-color: #0B5ED7; /* Color (BLUE-GRAY) for headings, subheadings and title throughout the website */
  --accent-color: #ff6600; /* Accent color (ORANGE) that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #9CA3AF; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #ff6600; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #000; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #0D0D0D; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff6600; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.light-background {
  --background-color: #f3f4f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  color-scheme: dark;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@media (max-width: 768px) {
  .memberAccess {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .php-email-form .loginForm {
    padding: 0 15px;
  }
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown ul a {
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--background-color);
  color: var(--default-color);
  padding: 60px 0;
  font-size: 14px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer a,
.ssd {
  color: var(--default-color) !important;
}

.footer a:hover,
.ssd:hover {
  color: var(--accent-color) !important;
}

.footer .copyright {
  margin-top: 50px;
  position: relative;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.footer .copyright p,
.footer .copyright .credits {
  margin: 2px 0;
}

.footer .btn-learn-more {
  background-color: var(--accent-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
  color: var(--contrast-color) !important;
}

.footer .btn-learn-more:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color) !important;
}

.footer .widget .widget-heading {
  font-size: 15px;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.footer .widget ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer .widget ul li a {
  color: color-mix(in srgb, var(--heading-color), transparent 50%);
}

.footer .widget ul li a:hover {
  text-decoration: none;
  color: var(--heading-color);
}

.footer .widget .footer-games-entry .date {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 12px;
}

.footer .social-icons li {
  display: inline-block;
}

.footer .social-icons li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .social-icons li a span {
  color: color-mix(in srgb, var(--heading-color), transparent 0%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease-in-out;
}

.footer .social-icons li a:hover {
  background: var(--accent-color);
}

.footer .social-icons li a:hover span {
  color: var(--contrast-color);
}

.footer .social-icons li:first-child a {
  padding-left: 0;
}

.footer .footer-subscribe form {
  position: relative;
}

.footer .footer-subscribe .form-control {
  font-size: 14px;
  height: 42px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 40%);
  background: none;
  color: var(--heading-color);
  padding-right: 40px;
}

.footer .footer-subscribe .form-control:focus {
  border-color: color-mix(in srgb, var(--default-color), transparent 10%);
  box-shadow: none;
}

.footer .footer-subscribe .form-control::placeholder {
  color: color-mix(in srgb, var(--heading-color), transparent 60%);
}

.footer .footer-subscribe .btn-link {
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  background-color: none;
  border-color: none;
  position: absolute;
  line-height: 0;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  top: 20px;
  right: 10px;
  transform: translateY(-50%) rotate(0deg);
}

.footer .footer-subscribe .btn-link:hover,
.footer .footer-subscribe .btn-link:focus,
.footer .footer-subscribe .btn-link:active {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 5px 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0;
}

.section-title p {
  font-size: 15px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about h1 {
  color: var(--heading-color);
  font-size: 30px;
}

.about p {
  line-height: 1.7;
  color: var(--default-color);
}

.about .swiper-pagination {
  position: absolute;
  bottom: 30px;
}

.about .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
  background: #ffffff;
  opacity: 0.3;
}

.about .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
}

.about .section-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .content {
  background-color: var(--surface-color);
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-2 .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.about-2 .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.about-2 p {
  line-height: 1.7;
  color: var(--default-color);
}

.about-2 .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.about-2 .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.about-2 .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding-top: 60px;
  padding-bottom: 60px;
}

.services .services-item .services-icon {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.services .services-item .services-icon i {
  font-size: 48px;
}

.services .services-item h3 {
  font-size: 17px;
  font-weight: 400;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding-top: 60px;
}

.stats .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.stats .lead {
  line-height: 1.6;
  font-size: 18px;
  font-weight: normal;
  color: var(--default-color);
}

.stats .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.stats p {
  line-height: 1.7;
  color: var(--default-color);
}

.stats .btn-get-started {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  padding: 8px 30px;
  border: 2px solid transparent;
  transition: 0.3s all ease-in-out;
  font-size: 14px;
}

.stats .btn-get-started:hover {
  border-color: var(--accent-color);
  background-color: transparent;
  color: var(--accent-color);
}

.stats .count-numbers .number {
  font-size: 1.5rem;
  color: var(--heading-color);
  position: relative;
  display: block;
  padding-bottom: 7px;
  margin-bottom: 10px;
}

.stats .count-numbers .number:after {
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content-subtitle {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
  color: var(--default-color);
}

.faq .content-title {
  color: var(--heading-color);
  font-size: 22px;
  margin-bottom: 30px;
}

.faq p {
  line-height: 1.7;
  color: var(--default-color);
}

.faq .custom-accordion .accordion-item {
  background-color: var(--surface-color);
  margin-bottom: 0px;
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}

.faq .custom-accordion .accordion-item .btn-link  {
  display: block;
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  text-align: left;
  color: var(--default-color);
  border: none;
  padding-left: 40px;
  border-radius: 0;
  position: relative;
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

.faq .custom-accordion .accordion-item .btn-link:before {
  content: "\f282";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true] {
  color: var(--accent-color);
}

.faq .custom-accordion .accordion-item .btn-link[aria-expanded=true]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";
  position: absolute;
  color: var(--accent-color);
  top: 50%;
  transform: translateY(-50%);
}

.faq .custom-accordion .accordion-item .accordion-body {
  padding: 20px 20px 20px 20px;
  color: var(--default-color);
}

.accordion-body p,
.accordion-body li {
  font-size: 16px;
}

/* Centerred Accordion */
/* Center the button text and icon */
.faq .custom-accordion .accordion-items {
  background-color: var(--surface-color);
  border-radius: 0px;
  overflow: hidden;
}

.faq .custom-accordion .accordion-items .btn-link {
  width: 100%;
  padding: 15px 0;
  text-decoration: none;
  border: none;
  border-radius: 0;
  
  display: flex;               /* flex for icon + text */
  justify-content: center;     /* center horizontally */
  align-items: center;         /* center vertically */
  text-align: center;          /* text center */
  width: 100%;
  padding-left: 0;             /* remove extra left padding */
  position: relative;
  text-decoration: none;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
}

/* Icon positioning */
.faq .custom-accordion .accordion-items .btn-link:before {
  content: "\f282"; /* default icon */
  font-family: "bootstrap-icons" !important;
  margin-right: 10px;      /* space between icon and text */
  position: relative;       /* relative so it flows with flex */
  top: auto;                /* reset top */
  transform: none;          /* reset transform */
  color: var(--default-color);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.faq .custom-accordion .accordion-items .btn-link[aria-expanded=true] {
  color: var(--accent-color);
}

/* Change icon when expanded */
.faq .custom-accordion .accordion-items .btn-link[aria-expanded="true"]:before {
  font-family: "bootstrap-icons" !important;
  content: "\f286";            /* expanded icon */
  color: var(--accent-color);
}

/* Center the accordion body content */
.faq .custom-accordion .accordion-items .accordion-body {
  padding: 20px;
  color: var(--default-color);
  text-align: center;          /* center content horizontally */
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* Make SELECT match theme input styles exactly */
.contact .info {
  background-color: #000 !important;
	border: 1px solid #111 !important;
	border-radius: 10px !important;
  padding: 40px;
  box-shadow: 
  0px 2px 10px rgba(0, 0, 0, 0.6),
  0px 0px 8px rgba(255, 255, 255, 0.05) !important;
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: var(--default-color);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=password],
.contact .php-email-form input[type=number],
.contact .php-email-form input[type=date],
.contact .php-email-form input[type=time],
.contact .php-email-form select,
.contact .notform select,
.contact .php-email-form textarea.form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
}

.contact .php-email-form textarea.form-control {
	border-color: rgba(33, 37, 41, 0.25);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=password]:focus,
.contact .php-email-form input[type=number]:focus,
.contact .php-email-form input[type=date]:focus,
.contact .php-email-form input[type=time]:focus,
.contact .php-email-form select:focus,
.contact .notform select:focus,
.contact .php-email-form textarea.form-control:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form input[type=password]::placeholder,
.contact .php-email-form input[type=number]::placeholder,
.contact .php-email-form input[type=date]::placeholder,
.contact .php-email-form input[type=time]::placeholder,
.contact .php-email-form textarea.form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=password],
.contact .php-email-form input[type=number],
.contact .php-email-form input[type=date],
.contact .php-email-form input[type=time],
.contact .notform select
.contact .php-email-form select {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea.form-control {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 80%, white 25%);
}

.contact .php-email-form .form-control {
  border-color: var(--accent);
}

.contact .php-email-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(255,102,0,.25); /* match Bootstrap focus style */
}

/*--------------------------------------------------------------
# Vegas Dark Theme (Members)
--------------------------------------------------------------*/

body.contact-page {
  background: #000 !important;
  background-image:
    radial-gradient(ellipse at 18% 50%, rgba(255,102,0,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 15%, rgba(255,215,0,.04) 0%, transparent 50%);
  background-attachment: fixed;
}
.main { background: transparent !important; }
#faq.section { background: transparent !important; overflow: visible !important; }

/* ── Casino Sign ───────────────────────── */
.casino-sign-wrap {
  text-align: center;
  padding: 1rem 1rem 2.25rem;
}
.casino-sign {
  display: inline-block;
  background: linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
  border: 2px solid #2a2a2a;
  border-radius: 18px;
  padding: .75rem 2.5rem 1rem;
  box-shadow:
    0 0 30px rgba(255,102,0,.2),
    0 0 80px rgba(255,102,0,.07),
    inset 0 1px 0 rgba(255,255,255,.04);
  min-width: 260px;
  max-width: calc(100vw - 2rem);
  word-break: break-word;
  overflow: hidden;
}
@media (max-width: 480px) {
  .casino-sign { padding: .75rem 1rem 1rem; }
}
.marquee-row {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding: 5px 0;
}
.bulb {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1a1400;
  flex-shrink: 0;
}
@keyframes chaseLit {
  0%,  30%  { background: #FE8916; box-shadow: 0 0 5px #FE8916, 0 0 12px #ffaa00; }
  31%, 100% { background: #1a1400; box-shadow: none; }
}
.casino-pre {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .45em;
  color: #555;
  text-transform: uppercase;
  margin-bottom: .15rem;
}
.casino-title {
  font-size: clamp(2rem, 8vw, 3.8rem);
  font-weight: 900;
  letter-spacing: .22em;
  color: #fff;
  line-height: 1;
  padding: .2rem 0;
  text-shadow:
    0 0 8px  #ff6600,
    0 0 20px #ff6600,
    0 0 45px #ff4400,
    0 0 90px rgba(255,80,0,.35);
  animation: neonFlicker 6s ease-in-out infinite;
}
@keyframes neonFlicker {
  0%,  88%, 91%, 94%, 100% {
    text-shadow: 0 0 8px #ff6600, 0 0 20px #ff6600, 0 0 45px #ff4400, 0 0 90px rgba(255,80,0,.35);
    opacity: 1;
  }
  89%, 93% { text-shadow: none; opacity: .7; }
}
.casino-sub { font-size: .8rem; color: #555; margin-top: .4rem; letter-spacing: .04em; }
.casino-sub .vc-balance {
  color: #ffd700 !important;
  font-weight: 700;
  font-size: 1.05rem;
  text-shadow: 0 0 8px #cc9900, 0 0 20px rgba(255,215,0,.5);
}

/* ── Accordion ─────────────────────────── */
.custom-accordion .accordion-items {
  background: #111 !important;
  border: 1px solid #222 !important;
  border-radius: 10px !important;
  margin-bottom: 8px !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.6);
  overflow: hidden !important;
}
.custom-accordion .accordion-items h2 .btn-link {
  color: #FE8916 !important;
  font-weight: 700;
  letter-spacing: .04em;
  background: #111 !important;
  width: 100%;
  text-align: left;
  text-decoration: none;
  padding: 1rem 1.25rem;
  border-radius: 10px 10px 0 0;
}
.custom-accordion .accordion-items h2 .btn-link:hover,
.custom-accordion .accordion-items h2 .btn-link[aria-expanded="true"] {
  background: #181818 !important;
  color: #FE8916 !important;
}
.accordion-body {
  background: #141414 !important;
  color: #bbb !important;
  border-top: 1px solid #1f1f1f !important;
}

/* ── Cards ─────────────────────────────── */
.card { background: #181818 !important; border-color: #252525 !important; color: #bbb !important; }
.tourney-card.selected { background: #1f1200 !important; border-color: #ff6600 !important; }
.tourney-card.locked   { opacity: .35 !important; }
.fw-bold { color: #ddd !important; }

/* ── Tables ────────────────────────────── */
.table {
  color: #bbb !important;
  --bs-table-bg: #181818;
  --bs-table-border-color: #000;
}
.table td, .table th { border-color: #000 !important; }

/* ── Schedule tables (myschedules.php) ── */
.showWalkabout:hover, .showCurrent:hover { color: color-mix(in srgb, #0B5ED7, transparent 25%) !important; text-decoration: none !important; }
.tournaments-container .table {
  --bs-table-color: #bbb;
  --bs-table-bg: #181818;
  --bs-table-striped-bg: #222222;
  --bs-table-striped-color: #bbb;
  --bs-table-border-color: #000;
}
.tournaments-container .table thead th {
  background-color: #111 !important;
  color: #FE8916 !important;
}

/* ── Forms ─────────────────────────────── */
.form-select, .form-control, select {
  background-color: #1c1c1c !important;
  color: #E5E7EB !important;
  -webkit-text-fill-color: #E5E7EB !important;
  border-color: #333 !important;
  color-scheme: dark;
}
.form-select:focus, .form-control:focus, select:focus {
  background-color: #222 !important;
  border-color: #ff6600 !important;
  box-shadow: 0 0 0 .2rem rgba(255,102,0,.2) !important;
  color: #fff !important;
}
.form-select option, select option {
  background-color: #1c1c1c;
  color: #E5E7EB;
}
.form-select option:disabled, select option:disabled {
  color: #666;
}
.form-label, .fw-semibold { color: #999 !important; }
.text-muted   { color: #888 !important; }
.section-label { color: #FE8916 !important; }
input[type="file"]::file-selector-button,
input[type="file"]::-webkit-file-upload-button {
  background-color: #333 !important;
  color: #E5E7EB !important;
  border: 1px solid #555 !important;
  border-radius: 4px !important;
  padding: 4px 12px !important;
  margin-right: 10px !important;
  cursor: pointer !important;
}
input[type="file"]::file-selector-button:hover,
input[type="file"]::-webkit-file-upload-button:hover {
  background-color: #ff6600 !important;
  border-color: #ff6600 !important;
  color: #fff !important;
}

/* ── Bet / type buttons ─────────────────── */
.quick-btn { background: #1c1c1c !important; border-color: #303030 !important; color: #999 !important; }
.quick-btn:hover  { border-color: #ff6600 !important; color: #ff6600 !important; }
.quick-btn.active-bet { background: #ff6600 !important; border-color: #ff6600 !important; color: #fff !important; }

.dice-type-btn, .dice-choice-btn, .mem-size-btn {
  background: #1c1c1c !important;
  border-color: #303030 !important;
  color: #999 !important;
}
.dice-type-btn:hover,  .dice-choice-btn:hover,  .mem-size-btn:hover  { border-color: #ff6600 !important; color: #ff6600 !important; }
.dice-type-btn.active, .dice-choice-btn.active, .mem-size-btn.active { background: #ff6600 !important; border-color: #ff6600 !important; color: #fff !important; }

/* ── Slot / dice / memory components ────── */
.reel-window { background: #050505 !important; }
.reel-label  { color: #555 !important; }
.die { background: #e8e0d0 !important; border-color: #ff6600 !important; }
.dice-sum { color: #ffd700 !important; }
.mem-card-back { background: #0d1f35 !important; border-color: #1a3a5a !important; }

/* ── Result boxes ───────────────────────── */
.spin-result.win, .dice-result.win, #mem-result.win {
  background: rgba(255,102,0,.12) !important;
  border-color: #ff6600 !important;
  color: #ffaa55 !important;
}
.spin-result.lose, .dice-result.lose, #mem-result.lose {
  background: rgba(180,30,40,.15) !important;
  border-color: #c0392b !important;
  color: #ff7070 !important;
}
.dice-result.push, #mem-result.push {
  background: rgba(255,193,7,.1) !important;
  border-color: #ffc107 !important;
  color: #ffc107 !important;
}

/* ── Blackjack ───────────────────────────── */
.bj-table {
  background: #0a2814 !important;
  border-color: #1a5028 !important;
}
.bj-zone-label { color: #4a7055 !important; }
.bj-result-box.win       { color: #ffaa55 !important; }
.bj-result-box.lose      { color: #ff7070 !important; }
.bj-result-box.push      { color: #ffc107 !important; }
.bj-result-box.blackjack { background: rgba(255,215,0,.12) !important; border-color: #ffd700 !important; color: #ffd700 !important; }
.bj-bet-btn {
  background: #1c1c1c !important;
  border-color: #303030 !important;
  color: #999 !important;
}
.bj-bet-btn:hover  { border-color: #ff6600 !important; color: #ff6600 !important; }
.bj-bet-btn.active { background: #ff6600 !important; border-color: #ff6600 !important; color: #fff !important; }

/* ── CTA buttons glow ───────────────────── */
#spinBtn, #rollBtn, #memDealBtn {
  box-shadow: 0 4px 20px rgba(255,102,0,.5) !important;
}
#spinBtn:hover:not(:disabled), #rollBtn:hover:not(:disabled), #memDealBtn:hover:not(:disabled) {
  box-shadow: 0 8px 32px rgba(255,102,0,.75) !important;
}

/* ── Alerts ─────────────────────────────── */
.alert-success { background: rgba(40,167,69,.15) !important; border-color: #28a745 !important; color: #55cc77 !important; }
.alert-danger  { background: rgba(220,53,69,.15)  !important; border-color: #dc3545 !important; color: #ff7070 !important; }

/* ── Wager table ────────────────────────── */
.wager-thead th { background-color: #331000 !important; }
.odds-table td { color: #bbb !important; }
.odds { color: #fff !important; }

/* ── Header ─────────────────────────────── */
#header {
  background: #0d0d0d !important;
  border-bottom: 1px solid #222 !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.7) !important;
}
#header .sitename { color: #E5E7EB !important; }
#header .navmenu a:not(.rainbow-strobe),
#header .navmenu > ul > li > a:not(.rainbow-strobe) { color: #aaa !important; }
#header .navmenu a:hover,
#header .navmenu > ul > li > a:hover { color: #E5E7EB !important; }
#header .navmenu > ul > li > a.active { color: #FE8916 !important; }
#header .navmenu .dropdown ul {
  background: #111 !important;
  border: 1px solid #2a2a2a !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.8) !important;
}
#header .navmenu .dropdown ul li a:not(.rainbow-strobe) { color: #bbb !important; }
#header .navmenu .dropdown ul li a:hover { color: #ff6600 !important; background: #1a1a1a !important; }
#header .navmenu .dropdown-golf > ul,
#header .navmenu .dropdown-walkabout > ul { background: #111 !important; }
#header .mobile-nav-toggle { color: #E5E7EB !important; }

/* ── Footer ─────────────────────────────── */
#footer {
  background: #010203 !important;
  border-top: 1px solid #222 !important;
}
#footer,
#footer p,
#footer span { color: #666 !important; }
#footer .sitename { color: #999 !important; }
#footer .btn-learn-more {
  border-color: #ff6600 !important;
  color: #fff !important;
}
#footer .btn-learn-more:hover {
  background: #ba4a00 !important;
  color: #fff !important;
}
#footer .credits a { color: #666 !important; }
#footer .credits a:hover { color: #ff6600 !important; }

/* ── Section Titles ─────────────────────── */
body.contact-page h4,
body.contact-page h5 { color: #FE8916 !important; }

/* ── Message Cards ───────────────────────── */
.message-section { padding-bottom: 40px; }
.message-card { border: 1px solid #ff6600; border-radius: 8px; padding: 10px; margin-bottom: 10px; background: #0d0d0d; color: #bbb !important; }
.new-message textarea, .reply-form textarea { width: 100%; }
.new-message textarea { min-height: 50px; }
.reply-form textarea  { min-height: 20px; }
.reply-form, .new-message { margin-top: 10px; }
.message-text, .message-text-display { display: block; overflow-wrap: break-word; }
.edit-textarea { display: none; width: 100%; min-height: 60px; margin-top: 10px; }
.edited-label  { font-size: 11px; color: #888; font-style: italic; }
.like-btn  { border: 1px solid #444 !important; background-color: transparent; color: #bbb; }
.laugh-btn { border: 1px solid #b7e4c7 !important; background-color: transparent; color: #bbb; }

/* ── Form Placeholders ───────────────────── */
body.contact-page .form-control::placeholder { color: #666 !important; }

/* ── Pagination ─────────────────────────── */
.pagination { flex-wrap: wrap; }
.pagination .page-link {
  background-color: transparent !important;
  border-color: #FE8916 !important;
  color: #FE8916 !important;
}
.pagination .page-item.active .page-link {
  background-color: transparent !important;
  border-color: #FE8916 !important;
  color: #fff !important;
  font-weight: bold;
}
.pagination .page-link:hover {
  background-color: rgba(254,137,22,.15) !important;
  color: #FE8916 !important;
}
.pagination .page-item.disabled .page-link {
  background-color: transparent !important;
  border-color: #333 !important;
  color: #555 !important;
}

/* ── Tee-times card overrides ───────────── */
body.contact-page .teetimes-available .accordion-body { background: #000 !important; }
body.contact-page .teetimes-available .accordion-body p { color: #bbb !important; }
.teetimes-available .card { background-color: transparent !important; border-color: #444 !important; }
.teetimes-available .card-title { color: #FE8916 !important; font-size: 15px; }
.teetimes-available .card-text, .teetimes-available .card-text strong { color: #bbb !important; }
.teetimes-available .card-text span[style*="color:red"] { color: #ff6b6b !important; }
.teetimes-available .user-list, .teetimes-available .user-list li { color: #bbb !important; }
.teetimes-available p { color: #bbb !important; }

/* ── Misc rounds ─────────────────────────── */
.misc-rounds-container { margin: 20px 0; width: 100%; box-sizing: border-box; }
.misc-rounds-table { border-collapse: collapse; margin-bottom: 20px; table-layout: auto; font-size: 14px; }
.misc-rounds-table th,
.misc-rounds-table td { padding: 10px; text-align: center; border-bottom: 1px solid #000 !important; color: #bbb !important; word-wrap: break-word; }
.misc-rounds-table th { background-color: #111 !important; color: #FE8916 !important; font-weight: bold; }
.misc-rounds-table tbody tr:nth-child(odd)  { background-color: #181818; }
.misc-rounds-table tbody tr:nth-child(even) { background-color: #222222; }
.misc-rounds-table tbody tr:hover           { background-color: #2a2a2a; }
.misc-rounds-table tfoot .totals-row { background-color: #111 !important; color: #bbb !important; font-weight: bold; border-top: 2px solid #000 !important; }
.misc-rounds-container .pagination { justify-content: center; }