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


/* General Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000; /* Black background */
    color: #a9a9a9; /* Gold text */
    line-height: 1.6;
    padding-bottom: 60px; /* Prevent content overlap with footer */
	
}

/* Header Styling */
header {
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000; /* Black background */
    color: #d4af37; /* Gold text */
    text-align: center;
    padding: 20px;
    /*box-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);  Subtle gold shadow */
}

/* Remove Fixed Header on Mobile */
@media (max-width: 768px) {
    header {
        position: relative; /* Allow scrolling */
    }

    main {
        margin-top: 20px !important; /* Reduce top margin since header is no longer fixed */
    }
}

header .container {
    max-width: 900px;
    margin: 0 auto;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 5px;
}

header p {
    font-size: 1.2em;
    margin-top: 0;
}

/* Main Content Styling */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #121212; /* Dark gray background for contrast */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2); /* Subtle gold shadow */
    margin-top: 20px; /* Creates space for the fixed header */
}

main section {
    margin-bottom: 20px;
}

main section h2 {
    font-size: 1.6em;
    color: #d4af37; /* Gold text */
    margin-bottom: 10px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 5px;
}

main section h3 {
    color: #d4af37; /* Gold text */
    
}

h1 {
	
	color: #d4af37; /* Gold text */
    
}

/* Link Styling */
a {
    color: #fff; /* White text */
    text-decoration: underline; /* Ensure links stand out */
    transition: color 0.3s ease;
}

a:hover {
    color: #d4af37; /* Gold on hover */
}


/* Link Styling */
.link {
    color: #fff; /* Gold text */
    text-decoration: underline; /* Add underline for visibility */
    font-weight: bold; /* Make the link stand out */
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.link:hover {
    color: #d4af37; /* White text on hover */
    text-shadow: 0 0 5px #d4af37; /* Glow effect for hover */
}

/* List Styling */
ul {
    list-style-type: none; /* Remove default bullet points */
    padding: 0;
    margin: 20px 0;
}

ul li {
    position: relative;
    margin-bottom: 15px;
    padding-left: 30px; /* Space for custom bullet icon */
    font-size: 1em;
    line-height: 1.5;
}

.ul-bullets {
	list-style-type: disc; /* Remove default bullet points */
	list-style-position: inside;
    
}

/* Call-to-Action Button Styling */
.cta-button-container {
    text-align: center; /* Centers the content inside the container */
    margin-top: 20px; /* Optional: Adds spacing above the button */
}

.cta-button {
    display: inline-block;
    background-color: #d4af37; /* Gold background */
    color: #000; /* Black text */
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #d4af37; /* Gold border */
    text-align: center;
    box-shadow: 0 4px 6px rgba(255, 215, 0, 0.2); /* Subtle shadow */
}

.cta-button:hover {
    background-color: #000; /* Invert to black */
    color: #d4af37; /* Invert to gold */
    border: 2px solid #000; /* Black border */
    box-shadow: 0 6px 10px rgba(255, 215, 0, 0.4); /* Slightly stronger shadow */
}

/* Footer Styling */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000; /* Black background */
    color: #d4af37; /* Gold text */
    text-align: center;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(255, 215, 0, 0.2); /* Subtle gold shadow */
    z-index: 1000;
}

/* General Navigation Styling */
nav {
    background-color: #000; /* Black background */
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(255, 215, 0, 0.2); /* Subtle gold shadow */
    text-align: center; /* Center navigation items */
}

.nav-container {
    display: flex;
    justify-content: center; /* Center all navigation content */
    align-items: center;
    position: relative;
}

.nav-links {
    list-style: none; /* Remove bullets */
    display: flex; /* Horizontal layout */
    justify-content: center; /* Center items */
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 5px;
    padding: 0;
}

.nav-links li a {
    color: #d4af37; /* Gold text */
    text-decoration: none;
    padding: 3px 5px; /* Space around links */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1em; /* Default font size */
}

.nav-links li a:hover,
.nav-links li.active a {
    background-color: #d4af37; /* Gold background */
    color: #000; /* Black text */
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 5px; /* Reduce spacing between links */
    }

    .nav-links li a {
        padding: 3px 5px; /* Smaller padding for mobile */
        font-size: 0.8em; /* Reduce font size */
    }
}
/* Form Styling */
form {
    text-align: left; /* Align form elements to the left */
    margin: 0 auto; /* Center form container */
    max-width: 800px; /* Increased width for better readability */
    padding: 20px;
    background-color: #121212; /* Dark gray background */
    border-radius: 10px;
    border: 1px solid #d4af37; /* Gold border */
}

fieldset {
    border: 1px solid #d4af37; /* Gold border */
    padding: 20px;
    border-radius: 8px;
    background-color: #121212; /* Dark gray background */
    margin-bottom: 20px;
}

legend {
    font-size: 1.5em;
    font-weight: bold;
    color: #d4af37; /* Gold text */
    padding: 0 10px;
    margin-bottom: 3px;
}

label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    color: #a9a9a9;
    text-align: left;
}
p {
	margin-bottom: 10px;
}


input[type="text"],
input[type="email"],
input[type="tel"] {
    width: calc(100% - 20px); /* Ensure inputs fit within form */
    padding: 10px;
    border: 1px solid #d4af37; /* Gold border */
    border-radius: 5px;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    margin-top: 5px;
    font-size: 1em;
}

input[type="radio"] {
    appearance: none; /* Remove default styling */
    -webkit-appearance: none; /* Safari support */
    -moz-appearance: none; /* Firefox support */
    width: 20px; /* Set a fixed width */
    height: 20px; /* Match height to width for a perfect circle */
    border: 2px solid #d4af37; /* Gold border */
    border-radius: 50%; /* Circular shape */
    background-color: #000; /* Black background */
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin: 0; /* Remove any default margins */
    padding: 0; /* Ensure no padding distorts the shape */
    box-sizing: border-box; /* Include border in the size */
    flex-shrink: 0; /* Prevent shrinking in flex containers */
}
/* Checked State */
input[type="radio"]:checked {
    background-color: #d4af37; /* Gold fill when checked */
    box-shadow: 0 0 5px #d4af37; /* Glow effect */
}

/* Hover Effect */
input[type="radio"]:hover {
    box-shadow: 0 0 5px #d4af37; /* Glow effect on hover */
}
button {
    display: block;
    background-color: #d4af37; /* Gold background */
    color: #000; /* Black text */
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    margin: 0 auto; /* Center button horizontally */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: #fff; /* Invert to white */
    color: #000; /* Invert to black */
}

/* Responsive Styling */
@media (max-width: 768px) {
    form {
        padding: 15px;
    }

    fieldset {
        padding: 15px;
    }

    legend {
        font-size: 1.3em;
    }

    button {
        font-size: 1em;
    }
}

/* Contact Form Styling */
.contact-form textarea {
    width: calc(100% - 20px); /* Match input width */
    padding: 10px;
    border: 1px solid #d4af37; /* Gold border */
    border-radius: 5px;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    margin-top: 5px;
    font-size: 1em;
    resize: vertical; /* Allow vertical resizing */
}

.contact-form {
    text-align: left;
    margin: 0 auto;
    max-width: 700px; /* Slightly wider for more text */
    padding: 20px;
    background-color: #121212; /* Dark gray background */
    border-radius: 10px;
    border: 1px solid #d4af37; /* Gold border */
}



        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .radio-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-bottom: 2px; /* Reduce gap below */
        }

        .radio-item label {
            display: flex;
            align-items: center;
            vertical-align: middle;
            line-height: normal;
        }

        .signup-form ul {
            list-style-type: disc;
            padding-left: 25px;
            margin-top: 0px; /* Bring closer to radio button */
            font-size: 0.95em !important; /* Slightly smaller font size, enforced */
        }

        .signup-form ul li {
            margin-bottom: 5px;
            padding-left: 5px;
           font-size: 0.95em !important; /* Slightly smaller font size, enforced */
        }
        .signup-form input[type='checkbox'] {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            width: 14px;
            height: 14px;
            border: 2px solid #d4af37; /* Gold border */
            border-radius: 3px; /* Square shape with slight rounding */
            background-color: #000; /* Black background */
            cursor: pointer;
            outline: none;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
			margin-right: 5px;
			vertical-align: text-top;
        }

        .signup-form input[type='checkbox']:checked {
            background-color: #d4af37; /* Gold fill when checked */
            box-shadow: 0 0 5px #d4af37; /* Glow effect */
        }

        .signup-form input[type='checkbox']:hover {
            box-shadow: 0 0 5px #d4af37; /* Glow effect on hover */
        }

        .signup-form input[type='checkbox'] + label {
            margin-left: 8px; /* Space between checkbox and label */
            vertical-align: middle;
        }
		.no-bullet-display {
            list-style-type: none;
            padding-left: 0;
        }
		
		.div-membershipselect
		{
			padding-left:25px;
		}
		.div-membership,.div-association,.div-club,.div-business {
			display: none;
			padding-left: 25px;
		}
		
		.div-association-content, .div-club-content, .div-business-content {
			padding-left: 25px;
			margin-top: 5px;
		}
		
		.wrap-container {
			display: flex;
			gap: 15px; /* Space between inputs */
			align-items: center;
			flex-wrap: wrap;
		}

		.wrap-container label {
			white-space: nowrap;
		}

		.wrap-container input {
			flex: 1; /* Allows inputs to take available space evenly */
			min-width: 150px; /* Prevents them from becoming too small */
		}
.invisible-table {
    width: 100%;
    border-collapse: collapse;
}

.invisible-table td {
    padding: 5px;
    border: none; /* Ensures no visible borders */
}

.invisible-table input {
    width: 100%; /* Ensures inputs expand evenly */
    min-width: 150px; /* Prevents them from becoming too small */
}

.border-section {
    border: 1px solid #d4af37; /* Gold border */
    padding: 20px;
    border-radius: 8px;
    background-color: #121212; /* Dark gray background */
    margin-bottom: 20px;
}

.border-section-legend {
    font-size: 1.5em;
    font-weight: bold;
    color: #d4af37;
    padding: 0 10px;
    margin-bottom: 3px;
    background: #121212;
    position: relative;
    top: -40px;
    left: 5px;
    width: fit-content;
    border-bottom: 0;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
	text-align: centre;
    margin-top: 15px; /* Optional spacing */
}


/* Sponsor Section */
.sponsor-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.sponsor {
    text-align: center;
    background-color: #121212; /* Dark gray */
    padding: 20px;
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2); Gold shadow */
    width: 550px;
}

.sponsor img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
}

.sponsor p {
    color: #d4af37; /* Gold text */
    font-size: 0.9em;
}

.sponsor strong {
    color: #d4af37; /* Gold text */
    font-size: 1.4em;
}
