/* --- RESET & VARIABLES --- */
:root {
    /* Palette extracted from Logo */
    --color-bg: #F9F7F2;       /* Cream/Off-white background */
    --color-text: #4A403A;     /* Dark Taupe/Charcoal */
    --color-accent: #C5AFA0;   /* Muted Rose/Mauve */
    --color-secondary: #EBE5DB;/* Beige for sections */
    --color-white: #ffffff;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- UTILITIES --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-text);
    color: var(--color-white);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    border: 1px solid var(--color-text);
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
}

.btn:hover {
    background-color: transparent;
    color: var(--color-text);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background-color: var(--color-text);
    color: var(--color-white);
}

.section-padding { padding: 80px 0; }
.text-center { text-align: center; }

/* --- HEADER --- */
header {
    padding: 15px 0;
    background-color: var(--color-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(74, 64, 58, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px; 
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Mobile Menu (Hidden by default on desktop) */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

/* --- HERO --- */
.hero {
    background-color: var(--color-secondary);
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* Clean, sophisticated placeholder image */
    background-image: url('images/Love_of_Lore_Main_Img.jpg');
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(249, 247, 242, 0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--color-text);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-accent);
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #665c56;
}

/* --- FEATURES GRID --- */
.features {
    background-color: var(--color-white);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.icon {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-accent);
}

/* --- EXPERIENCE --- */
.experience {
    background-color: var(--color-bg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.exp-image {
    height: 100%;
    min-height: 500px;
    background-image: url('images/Love_of_Lore_BookStack_Img.jpg');
    background-size: cover;
    background-position: center;
}

.exp-content {
    padding: 80px;
}

/* --- PRICING --- */
.pricing {
    background-color: var(--color-white);
}

.pricing-card {
    background: var(--color-bg);
    border: 1px solid var(--color-secondary);
    padding: 40px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.featured-card {
    border-color: var(--color-accent);
    border-width: 2px;
    position: relative;
}

.price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin: 20px 0;
    color: var(--color-text);
}

.period {
    font-size: 1rem;
    font-family: var(--font-body);
    color: #888;
}

.features-list {
    margin: 20px 0 30px 0;
    text-align: left;
    font-size: 0.95rem;
    flex-grow: 1; /* Pushes button to bottom */
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: '•';
    color: var(--color-accent);
    margin-right: 10px;
    font-size: 1.5rem;
    line-height: 0;
}

/* --- FAQ --- */
.faq {
    background-color: var(--color-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    margin-bottom: 15px;
    padding: 20px;
    border-left: 4px solid var(--color-accent);
}

/* --- FOOTER --- */
footer {
    background-color: var(--color-text);
    color: var(--color-secondary);
    padding: 60px 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-white);
}

.socials {
    margin: 20px 0;
}

.socials a {
    color: var(--color-secondary);
    margin: 0 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 20px;
}

/* --- MEDIA QUERIES (Mobile) --- */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show hamburger on mobile */
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 { font-size: 2.5rem; }
    
    .experience { grid-template-columns: 1fr; }
    .exp-image { height: 300px; min-height: auto; order: -1; } /* Image on top */
    .exp-content { padding: 40px 20px; }
}