/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1a3a2a;
    --color-primary-light: #2d5a3f;
    --color-accent: #4a8c6f;
    --color-accent-light: #6bb592;
    --color-gold: #c9a84c;
    --color-gold-light: #e8d08a;
    --color-bg: #fafaf7;
    --color-bg-alt: #f0efe8;
    --color-text: #2c2c2c;
    --color-text-light: #5a5a5a;
    --color-text-muted: #8a8a8a;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/photo_1.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 58, 42, 0.3) 0%,
        rgba(26, 58, 42, 0.5) 50%,
        rgba(26, 26, 26, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 12px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-location {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    color: var(--color-white);
    opacity: 0.7;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-scroll:hover {
    opacity: 1;
    transform: translateY(4px);
}

.hero-scroll span {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll svg {
    animation: bounce 2s infinite;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav.scrolled .nav-logo,
.nav.scrolled .nav-links a {
    color: var(--color-text);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.02em;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.nav.scrolled .nav-toggle span {
    background: var(--color-text);
}

/* ===== SECTIONS ===== */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header--light {
    color: var(--color-white);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.section-header--light .section-tag {
    color: var(--color-gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--color-text-light);
    font-style: italic;
}

.section-header--light .section-desc {
    color: rgba(255,255,255,0.7);
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-text .lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--color-text-light);
}

.about-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fact-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

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

.fact-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.fact-content h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.fact-content p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.5;
}

/* ===== RIVER ===== */
.river {
    position: relative;
    background: var(--color-primary);
    overflow: hidden;
}

.river-parallax {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.river-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.river-content {
    position: relative;
    z-index: 2;
}

.river-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 0.05em;
}

.river-description {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    color: var(--color-white);
}

.river-text p {
    margin-bottom: 16px;
    opacity: 0.85;
    line-height: 1.8;
}

.river-text em {
    color: var(--color-gold-light);
}

.river-route h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--color-gold);
}

.route-timeline {
    position: relative;
    padding-left: 32px;
}

.route-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: rgba(255,255,255,0.2);
}

.route-point {
    position: relative;
    margin-bottom: 20px;
    padding-left: 16px;
}

.route-dot {
    position: absolute;
    left: -28px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
}

.route-point.active .route-dot {
    background: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

.route-point strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.route-point p {
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0;
}

/* ===== NATURE ===== */
.nature {
    background: var(--color-bg-alt);
}

.nature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

.nature-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.nature-card--large {
    grid-column: span 2;
    aspect-ratio: 21/9;
}

.nature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.nature-card:hover img {
    transform: scale(1.05);
}

.nature-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--color-white);
}

.nature-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.nature-card-content p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.5;
}

.nature-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature {
    text-align: center;
    padding: 32px 16px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ===== HISTORY ===== */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    padding-left: 32px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-accent);
    border: 3px solid var(--color-bg);
    box-shadow: 0 0 0 3px var(--color-accent);
}

.timeline-date {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

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

/* ===== GALLERY ===== */
.gallery {
    background: var(--color-dark);
    color: var(--color-white);
}

.gallery .section-tag {
    color: var(--color-gold);
}

.gallery .section-desc {
    color: rgba(255,255,255,0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ===== APIARY ===== */
.apiary-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.apiary-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.apiary-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.apiary-text .lead {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.apiary-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.apiary-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.benefit {
    text-align: center;
    padding: 16px 8px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
}

.benefit span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 8px;
}

.benefit p {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
}

/* ===== MAP ===== */
.map-section {
    background: var(--color-bg-alt);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 48px;
}

.directions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.direction-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.direction-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-brand p {
    opacity: 0.6;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: var(--color-gold);
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-gold-light);
}

.footer-info p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 8px;
}

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

.footer-bottom p {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 16px;
    opacity: 0.7;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .river-description {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .nature-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .apiary-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .directions {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-white);
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        color: var(--color-text) !important;
        font-size: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .about-facts {
        grid-template-columns: 1fr 1fr;
    }
    
    .river-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .nature-grid {
        grid-template-columns: 1fr;
    }
    
    .nature-card--large {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }
    
    .nature-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--wide {
        grid-column: span 2;
    }
    
    .gallery-item--tall {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
    
    .apiary-image img {
        height: 300px;
    }
    
    .apiary-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .about-facts {
        grid-template-columns: 1fr;
    }
    
    .river-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .nature-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--wide {
        grid-column: span 1;
    }
    
    .timeline {
        padding-left: 32px;
    }
    
    .timeline::before {
        left: 8px;
    }
    
    .timeline-item::before {
        left: -32px;
    }
}

/* ===== ARCHIVES ===== */
.archives-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

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

.archives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.archive-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

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

.archive-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.archive-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-primary);
}

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

.archive-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent) !important;
    transition: var(--transition);
}

.archive-link:hover {
    color: var(--color-primary) !important;
}

.archive-address {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 8px;
}

.archives-tip {
    display: flex;
    gap: 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    padding: 32px;
    border-radius: var(--radius-md);
    margin-bottom: 48px;
    align-items: flex-start;
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-content h4 {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 12px;
}

.tip-content p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.7;
}

.archives-documents h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 32px;
}

.docs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.doc-category {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.doc-category h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-bg-alt);
}

.doc-category ul {
    list-style: none;
    padding: 0;
}

.doc-category li {
    font-size: 0.9rem;
    color: var(--color-text-light);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--color-bg-alt);
}

.doc-category li:last-child {
    border-bottom: none;
}

.doc-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .archives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .archives-grid {
        grid-template-columns: 1fr;
    }
    
    .archives-tip {
        flex-direction: column;
        gap: 16px;
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
    }
}

/* Apiary Gallery */
.apiary-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.apiary-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apiary-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.apiary-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.apiary-gallery-item p {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}
