/*
Theme Name: PiryaCare Herbal Dental Care
Theme URI: https://example.com/piryacare
Author: PiryaCare / A1J
Author URI: https://example.com
Description: A simple, clean WordPress theme for PiryaCare Herbal Dental Tooth Powder landing site.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: piryacare
Tags: one-column, responsive-layout, blog, custom-logo
*/

:root {
    --pc-bg: #fdf9f2;
    --pc-green: #3d6b3f;
    --pc-green-light: #6e9c6e;
    --pc-brown: #8b5a2b;
    --pc-text: #333333;
    --pc-accent: #cba25a;
    --pc-radius: 10px;
    --pc-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --pc-max-width: 1120px;
    --pc-font-body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --pc-font-heading: "Playfair Display", "Times New Roman", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--pc-font-body);
    background: radial-gradient(circle at top, #ffffff 0, #f9f3e7 40%, #f3ecdd 100%);
    color: var(--pc-text);
    line-height: 1.6;
}

a {
    color: var(--pc-green);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--pc-green-light);
}

.site-wrapper {
    max-width: var(--pc-max-width);
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(253, 249, 242, 0.9);
    border-bottom: 1px solid rgba(61, 107, 63, 0.08);
}

.site-header-inner {
    max-width: var(--pc-max-width);
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo img {
    height: 52px;
    width: auto;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.site-title {
    font-family: var(--pc-font-heading);
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--pc-green);
    margin: 0;
}

.site-description {
    font-size: 0.8rem;
    margin: 0;
    color: #666;
}

/* Navigation */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.25rem;
    font-size: 0.95rem;
}

.main-navigation a {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.4rem;
}

/* Hero section */

.pc-hero {
    margin-top: 2rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(62, 105, 63, 0.08), rgba(203, 162, 90, 0.12));
    border-radius: 24px;
    box-shadow: var(--pc-shadow);
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.5rem;
    align-items: center;
}

.pc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.2rem 0.9rem;
    border-radius: 999px;
    background: rgba(61,107,63,0.08);
    color: var(--pc-green);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.pc-hero-title {
    font-family: var(--pc-font-heading);
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    line-height: 1.1;
    margin: 1.2rem 0 0.5rem;
    color: #1e321f;
}

.pc-hero-title span {
    color: var(--pc-green);
}

.pc-hero-subtitle {
    font-size: 0.98rem;
    max-width: 32rem;
    color: #4b4b4b;
}

.pc-hero-list {
    margin: 1rem 0 1.75rem;
    padding-left: 1.2rem;
    font-size: 0.95rem;
}

.pc-hero-list li {
    margin-bottom: 0.3rem;
}

/* Buttons */

.pc-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.pc-btn-primary,
.pc-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.pc-btn-primary {
    background: linear-gradient(135deg, #3d6b3f, #6e9c6e);
    color: #fff;
    box-shadow: 0 10px 25px rgba(61,107,63,0.3);
}

.pc-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(61,107,63,0.4);
}

.pc-btn-ghost {
    background: #fdf9f2;
    color: #3d6b3f;
    border: 1px solid rgba(61,107,63,0.25);
}

/* Hero image card */

.pc-hero-card {
    background: #fdf9f2;
    border-radius: 24px;
    padding: 1.4rem 1.4rem 1.7rem;
    box-shadow: var(--pc-shadow);
    border: 1px solid rgba(61,107,63,0.12);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pc-hero-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(203,162,90,0.18), transparent 55%);
    opacity: 0.85;
    pointer-events: none;
}

.pc-hero-card-inner {
    position: relative;
    z-index: 1;
}

.pc-hero-card img {
    max-width: 210px;
    height: auto;
    margin-bottom: 0.8rem;
}

.pc-hero-tagline {
    font-family: var(--pc-font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #2a412d;
}

.pc-hero-note {
    font-size: 0.8rem;
    color: #555;
}

/* Content layout */

.pc-section {
    margin-top: 3rem;
    background: #fff;
    border-radius: 24px;
    padding: 2rem 2rem 2.4rem;
    box-shadow: var(--pc-shadow);
    border: 1px solid rgba(61,107,63,0.06);
}

.pc-section h2 {
    font-family: var(--pc-font-heading);
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: #2a412d;
}

.pc-two-column {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 1.75rem;
}

.pc-card {
    padding: 1.25rem 1.35rem;
    border-radius: 18px;
    border: 1px dashed rgba(61,107,63,0.2);
    background: #fbf6ea;
}

/* Post content */

.pc-post {
    max-width: 760px;
}

.pc-post h1,
.pc-post h2,
.pc-post h3 {
    font-family: var(--pc-font-heading);
}

.pc-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #888;
    margin-bottom: 0.7rem;
}

/* Footer */

.site-footer {
    margin-top: 2.5rem;
    padding: 2rem 1.5rem 3rem;
    border-top: 1px solid rgba(61,107,63,0.12);
    background: #f8f2e4;
    font-size: 0.85rem;
    color: #666;
}

.site-footer-inner {
    max-width: var(--pc-max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

/* Responsive */

@media (max-width: 900px) {
    .pc-hero,
    .pc-two-column {
        grid-template-columns: 1fr;
    }

    .pc-hero {
        padding: 1.7rem 1.5rem 2rem;
    }
}

@media (max-width: 720px) {
    .site-header-inner {
        padding-inline: 1rem;
    }
    .pc-section {
        padding-inline: 1.4rem;
    }
    .pc-hero {
        padding-inline: 1.25rem;
    }
    .main-navigation ul {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .main-navigation.toggled ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        right: 1.5rem;
        top: 3.4rem;
        background: #fdf9f2;
        padding: 0.9rem 1.2rem;
        border-radius: 16px;
        box-shadow: var(--pc-shadow);
    }
}
