:root {
    --primary-color: #0077be;
    --primary-dark: #005a8d;
    --secondary-color: #2c7a3f;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --urgent-red: #d32f2f;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

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

a:hover {
    color: var(--primary-dark);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 190, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover {
    border-bottom-color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.why-basin {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.basin-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.basin-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.basin-sections {
    max-width: 1000px;
    margin: 0 auto;
}

.basin-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.basin-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.basin-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.basin-section p:last-child {
    margin-bottom: 0;
}

.take-action {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.notice-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
}

.notice-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.notice-box p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.action-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.action-card.urgent {
    border: 3px solid var(--urgent-red);
    grid-column: 1 / -1;
}

.card-header {
    margin-bottom: 1rem;
}

.urgent-badge {
    display: inline-block;
    background-color: var(--urgent-red);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.licence-list {
    margin: 1.5rem 0;
}

.licence-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

.licence-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.licence-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.licence-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.share-buttons {
    margin-top: 1rem;
}

.social-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1877f2;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background-color: #145dbf;
    color: white;
}

.reference-link {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.reference-link:hover {
    text-decoration: underline;
}

.the-issue {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.issue-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.issue-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.issue-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.issue-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.key-facts {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-color);
}

.key-facts h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.key-facts ul {
    list-style-position: inside;
    color: var(--text-light);
}

.key-facts li {
    margin-bottom: 1rem;
    padding-left: 1rem;
    line-height: 1.7;
}

.news {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.news-items {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 5px solid var(--primary-color);
}

.news-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-item h3 {
    margin-bottom: 1rem;
}

.news-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.resources {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.resource-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.resource-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.resource-category ul {
    list-style: none;
}

.resource-category li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.resource-category li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.contact {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.support {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.support-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.support-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.support-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.support-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.support-card ul {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 1.8;
}

.support-card li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.donate-card {
    border: 2px solid var(--secondary-color);
}

.donate-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: center;
}

.donate-info p {
    margin-bottom: 0.5rem;
}

.email-large {
    font-size: 1.2rem;
    font-weight: 600;
}

.email-large a {
    color: var(--primary-color);
}

.tax-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.representatives, .agency-contacts {
    margin-top: 1.5rem;
}

.rep {
    margin-bottom: 1.5rem;
}

.rep h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.agency-contacts p {
    margin-bottom: 1rem;
}

footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .action-cards, .issue-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 20px;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 50px;
    }
}

/* Membership Page Styles */
.membership-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.membership-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.membership-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.membership-info {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.membership-explanation {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.membership-explanation p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.membership-benefits {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.membership-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.membership-benefits ul {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 1.8;
}

.membership-benefits li {
    margin-bottom: 0.75rem;
}

.membership-form-section {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.membership-form-section h2 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 1rem;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.google-form-embed {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.form-structure {
    margin-top: 1.5rem;
}

.form-structure h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-structure ul {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 1.8;
}

.form-structure li {
    margin-bottom: 0.5rem;
}

.form-structure em {
    font-size: 0.9rem;
    display: block;
    margin-top: 1rem;
}

.payment-instructions {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary-color);
}

.payment-instructions h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.payment-email {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
}

.payment-email a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.payment-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.membership-faq {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.membership-faq h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer disclaimer styling */
.footer-disclaimer {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

/* About Association Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.association-content {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.association-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.association-intro h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.association-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.board-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.board-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.board-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.board-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.board-role {
    text-align: center;
}

.board-role h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.board-role p {
    color: var(--text-light);
    font-size: 1rem;
}

.directors-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.directors-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.directors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    list-style: none;
}

.directors-list li {
    color: var(--text-light);
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.governance-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.governance-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.governance-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.documents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.document-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.document-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.document-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.values-section {
    max-width: 900px;
    margin: 0 auto;
}

.values-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Resources Section */
.resources-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.resources-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resources-section > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.resource-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--accent-color);
}

.resource-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.resource-item p:first-of-type {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.resource-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
