:root {
    /* Color Palette */
    --bg-color: #cdc78e;      /* Muted olive/gold */
    --content-bg: #f9f5cf;    /* Pale honey/cream for content */
    --text-primary: #2f2c14;  /* Dark charcoal / deep brown */
    --text-secondary: #605d4d; /* Muted brown-gray */
    --accent-gold: #d4af37;    /* Honey Gold */
    --link-green: #595427;     /* Deep Bee Green */
    --link-hover: #d4af37;
    --menu-bg: #a0522d;       /* Rich Burnt Sienna for the menu */
    --menu-text: #f9f5cf;     /* Light cream for menu text readability */
    --link-visited-main: #7a4a2a; /* Deep Cocoa Brown for content area */
    --link-visited-menu: #f2e394; /* Light Honey Gold for menu area */
    --icon-facebook: url('assets/images/facebook-icon.svg');

    /* Typography */
    --font-heading: "Georgia", serif;
    --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --base-font-size: 18px;
    --line-height: 1.6;

    /* Layout */
    --max-width: 1000px; /* Approximately 80% of standard desktop */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: var(--base-font-size);
    line-height: var(--line-height);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    padding: 6rem 1rem; /* Slightly more padding for the hero image */
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('assets/images/Header_Background_1.jpg') no-repeat center;
    background-size: cover;
    color: white; /* White text for contrast against the image */
    border-bottom: 1px solid rgba(0,0,0,0.1);
    grid-column: 1 / -1;
    border-radius: 8px 8px 0 0;
    margin: -3rem -3rem 2rem -3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

header p {
    color: #f9f5cf; /* Light cream for secondary text readability */
    font-style: italic;
    font-weight: 500;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 90%;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 3rem;
    padding: 3rem;
    background-color: var(--content-bg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

main {
    /* Content column */
}

aside {
    background-color: var(--menu-bg);
    padding: 2rem;
    border-radius: 8px;
    color: var(--menu-text);
    height: fit-content;
}

aside a {
    color: var(--menu-text);
}

aside a:visited {
    color: var(--link-visited-menu);
}

aside a:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: flex-start;
}

.social-icon {
    background: var(--icon-facebook) no-repeat center;
    background-size: contain;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    /* This filter roughly matches the #f9f5cf (Pale Honey) color */
    filter: invert(96%) sepia(13%) saturate(541%) hue-rotate(351%) brightness(103%) contrast(96%);
    transition: filter 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
    filter: brightness(0) invert(1); /* Pure white on hover */
    transform: scale(1.1);
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

main ul {
    margin-bottom: 2rem;
    margin-left: 1.5rem;
}

main ul li {
    margin-bottom: 0.8rem;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 1rem 0 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.bee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bee-card {
    background: rgba(255,255,255,0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.bee-card:hover {
    transform: translateY(-5px);
}

.bee-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.bee-card div {
    padding: 1.2rem;
}

.bee-card h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: white;
    padding: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.gallery-caption {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
    font-size: 0.95rem;
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

a {
    color: var(--link-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
    color: var(--link-hover);
}

a:visited {
    color: var(--link-visited-main);
}

/* Navigation Menu */
nav ul {
    list-style: none;
}

nav ul li {
    margin-bottom: 0.8rem;
}

nav ul li a {
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

/* Call to Action links */
.cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: bold;
}

.disclaimer {
    background-color: rgba(0,0,0,0.03);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    border-radius: 4px;
    margin-top: 2rem;
}

.disclaimer h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

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

.cta:hover {
    background-color: var(--accent-gold);
    color: white;
    text-decoration: none;
}

footer {
    padding: 2rem 1rem;
    text-align: center;
    background-color: rgba(0,0,0,0.02);
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    aside {
        order: -1; /* Move menu to top on mobile */
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 2rem;
    }
}
