/*
Theme Name: Hemp Initiatives
Description: Custom theme for Hemp Initiatives website with event management functionality
Version: 1.0
Author: Hemp Initiatives Team
*/

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Custom styles for event links */
.qodef-blog-item .qodef-e-title-link[target="_blank"]:after {
    content: " ↗";
    font-size: 0.8em;
    opacity: 0.7;
    margin-left: 4px;
}

.qodef-blog-item .qodef-e-info-date a[target="_blank"]:after {
    content: " ↗";
    font-size: 0.8em;
    opacity: 0.7;
    margin-left: 4px;
}

/* Style for event dates to differentiate from post dates */
.qodef-blog-item .qodef-e-info-date.event-date {
    background-color: #228B22 !important; /* Hemp green color */
    color: white !important;
    border-radius: 4px;
}

.qodef-blog-item .qodef-e-info-date.event-date a {
    color: white !important;
}

/* Hemp brand colors */
:root {
    --hemp-green: #228B22;
    --hemp-light-green: #90EE90;
    --hemp-dark-green: #006400;
    --hemp-brown: #8B4513;
    --hemp-cream: #F5F5DC;
}

/* Header and navigation styles */
.site-header {
    background-color: var(--hemp-green);
    color: white;
    padding: 1rem 0;
}

.site-navigation a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
}

.site-navigation a:hover {
    color: var(--hemp-cream);
}

/* Content area */
.site-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Footer */
.site-footer {
    background-color: var(--hemp-dark-green);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
} 