/*
Theme Name: CW NatGeo
Theme URI: https://cryptidwhispers.com
Author: Cryptid Whispers LLC
Description: Standalone NatGeo-style field journal theme for Cryptid Whispers.
Version: 1.0
Text Domain: cwnatgeo
*/


@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Montserrat:wght@400;600;700&display=swap');

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

body {
    font-family: 'Lora', serif;
    background: #f4f1ea url('assets/images/paper-bg.png') repeat;
    color: #2a2418;
    line-height: 1.6;
    padding-top: 80px;
}

/* HEADER */
header {
    background: #f4f1ea;
    border-bottom: 4px solid #c2a878;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

header .site-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #3a2f1d;
}

/* NAV */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

nav a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: #3a2f1d;
    font-weight: 600;
}

/* HERO */
.hero {
    width: 100%;
    height: 380px;
    background-size: cover;
    background-position: center;
    border-bottom: 6px solid #c2a878;
    position: relative;
}

.hero .overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.35);
    width: 100%;
    padding: 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

/* CONTENT LAYOUT */
.container {
    display: flex;
    gap: 40px;
    padding: 40px;
}

main {
    flex: 3;
}

aside {
    flex: 1;
    background: #f7f3e8;
    border: 2px solid #c2a878;
    padding: 20px;
}

/* FIELD NOTES SIDEBAR */
aside h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

/* ARCHIVE GRID */
.cryptid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.cryptid-card {
    background: #fff;
    border: 2px solid #c2a878;
    padding: 15px;
}

.cryptid-card img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #c2a878;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #f4f1ea;
    border-top: 4px solid #c2a878;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}
