/* Pixie Belle Custom Styles */

:root {
    --color-primary: #FCE4EC;
    /* Soft Pink */
    --color-secondary: #2E7D32;
    /* Emerald Green */
    --color-text: #333333;
    --color-white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Helper Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    border-radius: 2px;
}

.btn-primary:hover {
    background-color: #1b5e20;
    color: var(--color-white);
}

/* Hero Section */
.pixie-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    background-size: cover;
    background-position: center;
}

.pixie-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    /* Dark overlay for readability */
}

.pixie-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.pixie-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pixie-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Category Grid */
.pixie-categories {
    padding: 80px 0;
    background-color: #fafafa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--color-secondary);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.category-card-content {
    padding: 20px;
    background: var(--color-white);
    text-align: center;
}

.category-card-title {
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.category-card-link {
    text-decoration: none;
    color: inherit;
}

/* Recent Posts */
.pixie-recent-posts {
    padding: 80px 0;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.post-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.post-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.post-card-image {
    height: 200px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-content {
    padding: 25px;
}

.post-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-title {
    font-size: 1.4rem;
    margin: 0 0 15px;
    line-height: 1.3;
}

.post-title a {
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.2s;
}

.post-title a:hover {
    color: var(--color-secondary);
}

.post-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* About Section */
.pixie-about {
    padding: 80px 0;
    background-color: var(--color-primary);
    text-align: center;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Archive Pages (Category/Tag) */
.page-header {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 3rem;
    margin: 0;
}

.taxonomy-description {
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .pixie-hero-title {
        font-size: 2.5rem;
    }

    .category-grid,
    .post-grid {
        grid-template-columns: 1fr;
    }
}

/* Featured Guide Spotlight */
.pixie-feature-spotlight {
    padding: 80px 0;
    background-color: #fff;
}

.feature-layout {
    display: flex;
    align-items: center;
    gap: 50px;
}

.feature-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.feature-image:hover img {
    transform: scale(1.03);
}

.feature-text {
    flex: 1;
}

.feature-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-layout {
        flex-direction: column;
    }
}

/* Editor's Picks (Products) */
.pixie-product-picks {
    padding: 80px 0;
    background-color: #fffbfd;
    /* Very light pink */
}

.product-scroller {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-title {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--color-text);
}

.product-price {
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

/* Newsletter */
.pixie-newsletter {
    padding: 100px 0;
    background-color: var(--color-secondary);
    color: #fff;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.newsletter-desc {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 2px;
    font-family: var(--font-body);
}

.btn-white {
    background: #fff;
    color: var(--color-secondary);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s;
}

.btn-white:hover {
    background: #f0f0f0;
}

@media (max-width: 600px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* About Page Styles */
.pixie-about-page {
    padding: 80px 0;
}

.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-heading {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.about-img {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    display: block;
}

.about-text-content {
    flex: 1;
}

.about-subheading {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.about-p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
    font-size: 1.05rem;
}

/* Contact Page Styles */
.contact-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    margin-bottom: 80px;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.contact-hero-title {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.contact-info p {
    margin-bottom: 15px;
    color: #666;
}

.contact-form-wrapper {
    background: #fffbfd;
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
}

@media (max-width: 768px) {

    .about-grid,
    .contact-container {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}


/* Daily Mantra Section */
.pixie-mantra {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(45deg, #fff0f5, #fff);
    /* Soft pink gradient */
}

.mantra-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.mantra-author {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}

/* Visual Moodboard */
.pixie-moodboard {
    padding: 80px 0;
    background-color: #fff;
}

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

.mood-item {
    aspect-ratio: 1;
    /* Square */
    overflow: hidden;
    position: relative;
}

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

.mood-item:hover img {
    transform: scale(1.1);
}

.btn-text {
    display: inline-block;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: color 0.3s;
}

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

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

    .mantra-text {
        font-size: 1.8rem;
    }
}