/* Adventure Guide Section Styles
   Matches the canopy-tours.com professional aesthetic
   with enhanced readability for tourists
*/

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

:root {
    --primary-green: #4a7c23;
    --dark-green: #2d5016;
    --accent-orange: #d4790e;
    --dark-orange: #a85d00;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f5f5f0;
    --bg-cream: #faf9f6;
    --white: #ffffff;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--accent-orange);
}

.logo-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.back-link {
    color: var(--white);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--accent-orange);
}

/* Navigation Breadcrumb */
.breadcrumb {
    background: var(--primary-green);
    padding: 0.75rem 2rem;
}

.breadcrumb-nav {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nav a {
    color: var(--white);
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--accent-orange);
}

.breadcrumb-nav span {
    margin: 0 0.5rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, #1a3008 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.page-hero .intro-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Article Grid (Hub Page) */
.article-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.article-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
}

.article-card-content {
    padding: 1.5rem;
}

.article-card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-orange);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.article-card h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.article-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.article-card .read-more:hover {
    color: var(--accent-orange);
}

/* Article Content (Individual Articles) */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--bg-cream);
}

.article-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.article-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--dark-green);
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.article-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-green);
    margin: 1.5rem 0 0.75rem;
}

.article-content p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
}

.article-content a {
    color: var(--primary-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: var(--accent-orange);
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* Future Link Placeholder Styling */
.future-link {
    color: var(--primary-green);
    font-weight: 600;
    background: linear-gradient(120deg, rgba(74, 124, 35, 0.1) 0%, rgba(74, 124, 35, 0.2) 100%);
    padding: 0.1em 0.3em;
    border-radius: 3px;
}

/* Callout Box */
.callout-box {
    background: linear-gradient(135deg, rgba(74, 124, 35, 0.1) 0%, rgba(45, 80, 22, 0.1) 100%);
    border-left: 4px solid var(--primary-green);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.callout-box p {
    margin-bottom: 0;
    font-style: italic;
}

/* Back to Hub Link */
.back-to-hub {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-green);
    color: var(--white) !important;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
    text-decoration: none !important;
}

.back-to-hub:hover {
    background: var(--dark-green);
    color: var(--white) !important;
    text-decoration: none !important;
}

/* Footer */
.footer {
    background: #444;
    color: var(--white);
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 900px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .article-content h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .header {
        padding: 1rem;
        justify-content: center;
        text-align: center;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .back-link {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .breadcrumb {
        padding: 0.75rem 1rem;
    }

    .page-hero {
        padding: 2rem 1.5rem;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .page-hero .intro-text {
        font-size: 1rem;
    }

    .article-grid {
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
    }

    .article-container {
        padding: 2rem 1.5rem;
    }

    .article-content h1 {
        font-size: 1.5rem;
    }

    .article-content h2 {
        font-size: 1.3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links span {
        display: none;
    }
}