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

body {
    font-family: 'Lato', sans-serif; /* Body Text */
    color: #F4F4F4; /* Clean Off-White */
    background-color: #47513d; /* Sophisticated Charcoal/Deep Blue-Grey */
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* Headings */
    color: #DAA520; /* Warm Golden Amber for contrast */
    margin-bottom: 0.5em;
}

/* Color Variables for easy management */
:root {
    --deep-forest-green: #1E3F2E;
    --sophisticated-charcoal: #47513d;
    --lush-cannabis-green: #5CB85C;
    --warm-golden-amber: #DAA520;
    --clean-off-white: #F4F4F4;
    --soft-dark-grey: #4A4A4A;
    --pristine-white: #FFFFFF;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--deep-forest-green);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 40px; /* Adjust as needed */
    margin-right: 10px;
}

.brand-name {
    font-family: 'Montserrat', sans-serif; /* Or your specific logo font */
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--pristine-white);
}

header nav a {
    color: var(--clean-off-white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 700;
}

header nav a:hover {
    color: var(--lush-cannabis-green);
}

.cta-button {
    background-color: var(--warm-golden-amber);
    color: var(--deep-forest-green);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    margin-left: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: darken(var(--warm-golden-amber), 10%); /* You'll need a CSS preprocessor or manual calc */
    background-color: #c9931b; /* Example darker amber */
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background-image: url('path/to/your/kc-skyline-background.jpg'); /* Replace with a high-res KC image */
    background-size: cover;
    background-position: center;
    color: var(--pristine-white);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5); /* For readability over image */
}

.hero-content {
    max-width: 50%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--pristine-white); /* White for hero headline */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-ctas .button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.primary-button {
    background-color: var(--lush-cannabis-green);
    color: var(--deep-forest-green);
}

.primary-button:hover {
    background-color: #4a9e4a; /* Slightly darker green */
}

.secondary-button {
    background-color: transparent;
    border-color: var(--warm-golden-amber);
    color: var(--warm-golden-amber);
}

.secondary-button:hover {
    background-color: var(--warm-golden-amber);
    color: var(--deep-forest-green);
}

.hero-graphic {
    background-color: var(--deep-forest-green);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px; /* Adjust size */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 2;
    margin-left: 20px;
}

.hero-graphic img {
    max-width: 80%; /* Adjust graphic size */
    margin-bottom: 1rem;
}

.hero-graphic h3 {
    color: var(--pristine-white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.hero-graphic p {
    font-size: 1rem;
    color: var(--clean-off-white);
    margin-bottom: 1rem;
}

.view-events-link {
    color: var(--lush-cannabis-green);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.view-events-link:hover {
    color: var(--warm-golden-amber);
}

/* Signup Form Section */
.signup-form-section {
    padding: 4rem 5%;
    background-color: var(--sophisticated-charcoal); /* Or a lighter grey for contrast */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden; /* For subtle background patterns */
}

.signup-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path/to/subtle-kc-pattern.svg'); /* Replace with subtle KC/cannabis pattern */
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.form-card {
    background-color: var(--deep-forest-green);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    max-width: 800px;
    width: 100%;
    z-index: 2; /* Ensure it's above the background pattern */
    display: flex;
    flex-wrap: wrap; /* Allows form and community promo to sit side-by-side on larger screens */
    gap: 2rem;
}

.form-card h2 {
    width: 100%;
    color: var(--warm-golden-amber);
    text-align: center;
    margin-bottom: 1rem;
}

.form-card p {
    width: 100%;
    color: var(--clean-off-white);
    text-align: center;
    margin-bottom: 2rem;
}

#raffle-signup-form {
    flex: 2; /* Takes more space */
    min-width: 300px; /* Minimum width for form */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--clean-off-white);
    font-weight: 700;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--lush-cannabis-green);
    border-radius: 5px;
    background-color: var(--sophisticated-charcoal);
    color: var(--pristine-white);
    font-size: 1rem;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: var(--warm-golden-amber);
    box-shadow: 0 0 0 3px rgba(var(--warm-golden-amber), 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2); /* Make checkbox slightly larger */
    accent-color: var(--lush-cannabis-green); /* Color the checkbox itself */
}

.checkbox-group label {
    margin-bottom: 0; /* Override default label margin */
    font-weight: 400;
}

.raffle-choices p {
    text-align: left;
    margin-bottom: 1rem;
    font-weight: 700;
}

.radio-group {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.radio-group input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
    accent-color: var(--lush-cannabis-green);
}

.radio-group label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--clean-off-white);
}

.submit-button {
    width: 100%;
    background-color: var(--lush-cannabis-green);
    color: var(--pristine-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
}

.submit-button:hover {
    background-color: #4a9e4a; /* Slightly darker green */
}

.form-message {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--lush-cannabis-green); /* Success message color */
}

.community-promo {
    flex: 1; /* Takes less space */
    min-width: 200px;
    background-color: var(--sophisticated-charcoal); /* Contrast within the form card */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.community-promo h3 {
    color: var(--pristine-white);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-icons img {
    height: 35px; /* Size of social icons */
    width: 35px;
    transition: transform 0.2s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.community-promo p {
    color: var(--clean-off-white);
    font-size: 0.9rem;
}

.legal-links {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

.legal-links a {
    color: var(--clean-off-white);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--warm-golden-amber);
}

/* Footer Styles (basic) */
footer {
    background-color: var(--deep-forest-green);
    color: var(--clean-off-white);
    text-align: center;
    padding: 2rem 5%;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 4rem 5% 2rem;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .button {
        width: 80%;
        margin: 0.5rem 0;
    }

    .hero-graphic {
        margin: 0;
        width: 80%;
    }

    .form-card {
        flex-direction: column;
        padding: 2rem;
    }

    #raffle-signup-form, .community-promo {
        min-width: unset;
        width: 100%;
    }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px; /* space between icons */
  margin-top: 10px;
}

.social-icon {
  width: 32px;   /* adjust for size */
  height: 32px;
  transition: transform 0.2s ease-in-out;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
