/* ======================================================================== */
/* -- Professional, Embeddable Club Directory Form Styles (FormSpree) -- */
/* ======================================================================== */

.cta-form {
    /* Main container styling, matching the 'main' content block */
    background: var(--content-bg);
    border: 3px solid var(--accent-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    max-width: 700px;
    margin: 2rem auto;
    /* Soft neumorphic shadow for depth */
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3), -5px -5px 10px rgba(46, 204, 113, 0.1), inset 0 0 10px rgba(212, 175, 55, 0.1); 
    backdrop-filter: blur(5px);
    font-family: var(--font-main);
}

.form-title {
    font-size: 2rem;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    /* Matches the H2 glow for authority */
    text-shadow: 0 0 6px rgba(46, 204, 113, 0.7), 0 0 10px rgba(212, 175, 55, 0.5); 
}

.form-description {
    text-align: center;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1rem;
}

/* Flex layout for two columns on wider screens */
.field-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.field {
    flex: 1 1 50%; 
    margin-bottom: 1.2rem;
}

.field.full-width {
    flex: 1 1 100%;
}

.form-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0.95;
    /* Small accent for the label */
    border-left: 3px solid var(--accent-color); 
    padding-left: 0.5rem;
}

/* Input, Select, and Textarea base styling */
.form-input {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    color: var(--text-color);
    /* Dark, transparent background for sleek look */
    background: rgba(15, 26, 18, 0.85); 
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    /* Subtle inner glow */
    box-shadow: inset 0 0 5px rgba(46, 204, 113, 0.3); 
    transition: all 0.3s ease;
    -webkit-appearance: none; /* Remove default browser styling for select */
    -moz-appearance: none;
    appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold-color);
    /* Prominent glow on focus */
    box-shadow: 0 0 8px var(--button-glow), inset 0 0 8px var(--gold-color); 
}

/* Special styling for the Date input text */
.form-input[type="date"] {
    color-scheme: dark; /* Force dark mode calendar appearance */
    background: rgba(15, 26, 18, 0.85);
}

/* Button Group and CTA */
.button-group {
    grid-column: span 2;
    text-align: center;
    margin-top: 2rem;
}

.form-submit-btn {
    /* Uses the highly visible gradient from your navigation */
    background: linear-gradient(90deg, var(--accent-color) 70%, var(--gold-color) 100%);
    color: var(--primary-darker); /* Black text on bright button */
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: var(--button-glow);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(46, 204, 113, 1), 0 0 20px rgba(212, 175, 55, 0.7);
}

.small-print {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    line-height: 1.4;
}

/* Responsive Adjustments for Form */
@media (max-width: 768px) {
    .cta-form {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    .field-group {
        flex-direction: column;
        gap: 0;
    }
    .field {
        flex: 1 1 100%;
        margin-bottom: 1rem;
    }
    .form-title {
        font-size: 1.5rem;
    }
    .form-submit-btn {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
        width: 100%;
    }
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #0f1a12;
    --text-color: #e0f0e0;
    --accent-color: #2ecc71; /* Softer neon green */
    --gold-color: #d4af37; /* Warmer gold */
    --content-bg: rgba(15, 26, 18, 0.95);
    --header-glow: 0 0 10px rgba(46, 204, 113, 0.8), 0 0 20px rgba(212, 175, 55, 0.5);
    --button-glow: 0 0 6px rgba(46, 204, 113, 0.7), 0 0 12px rgba(212, 175, 55, 0.4);
    --border-radius: 20px;
    --font-main: 'Montserrat', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Base Styles */
html, body {
    height: 100%;
    font-family: var(--font-main);
    color: var(--text-color);
    background: linear-gradient(135deg, #0f1a12 0%, #1a3a2a 100%);
    line-height: 1.6;
    font-size: 16px;
    overflow-y: auto;
    min-height: 100vh;
}

/* Map */
#map {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(90deg, rgba(15, 26, 18, 0.98) 70%, rgba(46, 204, 113, 0.15) 100%);
    border-bottom: 3px solid var(--accent-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.1);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    display: grid;
    grid-template-areas: "title" "nav";
    gap: 1rem;
}

header h1 {
    grid-area: title;
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 0;
    text-shadow: var(--header-glow);
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* Navigation */
nav {
    grid-area: nav;
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    list-style: none;
    padding: 0;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
    border: 2px solid transparent;
    background: rgba(46, 204, 113, 0.1);
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 2px rgba(46, 204, 113, 0.2);
    font-weight: 500;
    letter-spacing: 0.5px;
}

nav a:hover, nav a.active {
    background: linear-gradient(90deg, var(--accent-color) 70%, var(--gold-color) 100%);
    color: #0f1a12;
    border: 2px solid var(--gold-color);
    box-shadow: var(--button-glow), inset 0 0 0 2px var(--gold-color);
    transform: translateY(-2px);
}

/* Main Content */
main {
    position: relative;
    z-index: 20;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem 2.5rem;
    background: var(--content-bg);
    border: 3px solid var(--accent-color);
    border-radius: var(--border-radius);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3), -5px -5px 10px rgba(46, 204, 113, 0.1), inset 0 0 10px rgba(212, 175, 55, 0.1); /* Neumorphic effect */
    backdrop-filter: blur(5px);
}

main section {
    padding: 1rem 0;
}

main h2 {
    font-size: 2rem;
    color: var(--gold-color);
    margin-bottom: 1.2rem;
    text-shadow: 0 0 6px rgba(46, 204, 113, 0.7), 0 0 10px rgba(212, 175, 55, 0.5);
    font-weight: 600;
}

main h3 {
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

main p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

main ul {
    list-style: none;
    padding-left: 1.5rem;
}

main ul li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-color);
}

main ul li::before {
    content: '•'; /* Simple dot instead of cannabis leaf */
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1.2rem;
    color: var(--accent-color);
    text-shadow: 0 0 4px rgba(46, 204, 113, 0.6);
}

/* Gold accent for important text */
strong, b {
    color: var(--gold-color);
    text-shadow: 0 0 4px rgba(212, 175, 55, 0.6);
}

/* Map Fallback */
#map:empty::after {
    content: 'Map failed to load. Please check your connection.';
    display: block;
    color: var(--text-color);
    text-align: center;
    padding: 2rem;
    background: var(--content-bg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    border-radius: var(--border-radius);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    main {
        margin: 2rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }
    header h1 {
        font-size: 2rem;
    }
    nav a {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    main {
        padding: 1.2rem;
    }
    main h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav a {
        width: 100%;
        text-align: center;
        padding: 0.5rem 1rem;
    }
    main {
        margin: 1rem;
        padding: 1rem;
    }
    main h2 {
        font-size: 1.5rem;
    }
    main p, main ul li {
        font-size: 0.95rem;
    }
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: rgba(15, 26, 18, 0.5);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.8) 0%, rgba(212, 175, 55, 0.6) 100%);
    border-radius: 10px;
    border: 2px solid rgba(15, 26, 18, 0.9);
}

/* Hero Section */
.hero-section {
    width: 100vw;
    min-height: 55vh;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}
.hero-slider {
    width: 100vw;
    min-height: 55vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100vw;
    height: 55vh;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-title-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    text-align: center;
    z-index: 3;
    pointer-events: none;
}
.hero-title {
    font-size: 3rem;
    color: #fff;
    text-shadow: 0 0 16px #000, 0 0 8px var(--accent-color);
    font-weight: 900;
    letter-spacing: 2px;
    background: rgba(15, 26, 18, 0.45);
    border-radius: 18px;
    padding: 1rem 2rem;
    display: inline-block;
    box-shadow: 0 0 12px rgba(46,204,113,0.3);
}
@media (max-width: 768px) {
    .hero-section, .hero-slider, .hero-slide {
        min-height: 32vh;
        height: 32vh;
    }
    .hero-title {
        font-size: 1.7rem;
        padding: 0.7rem 1.2rem;
    }
}
@media (max-width: 480px) {
    .hero-section, .hero-slider, .hero-slide {
        min-height: 22vh;
        height: 22vh;
    }
    .hero-title {
        font-size: 1.1rem;
        padding: 0.4rem 0.7rem;
    }
}

.whatsapp-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.8em 1.4em 0.8em 1em;
    border-radius: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    gap: 0.7em;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
}
.whatsapp-cta:hover {
    background: #128c7e;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
}
.whatsapp-icon {
    width: 1.7em;
    height: 1.7em;
    display: inline-block;
}
@media (max-width: 600px) {
    .whatsapp-cta {
        right: 12px;
        bottom: 12px;
        font-size: 0.95rem;
        padding: 0.7em 1em 0.7em 0.8em;
    }
    .whatsapp-icon {
        width: 1.3em;
        height: 1.3em;
    }
}