/*
Theme Name: Storefront Twisted Chicks
Theme URI: https://twistedchickscountry.com/
Description: Storefront child theme for Twisted Chicks Country. Carries the original
  bespoke landing-page design (previously served as a static index.html) as a
  full-width homepage template, while Storefront handles shop, cart and checkout.
Author: CmdNOC
Template: storefront
Version: 1.0.0
*/

/* ==== Original Twisted Chicks landing-page styles, carried over verbatim ==== */
/* ── Twisted Chicks Country palette ─────────────────────────── */
        :root {
            --cream:       #f5f0e8;
            --cream-soft:  #faf6ee;
            --warm-brown:  #8b6347;
            --warm-brown-deep: #6b4a32;
            --sage:        #7c9a6e;
            --sage-deep:   #5e7a52;
            --light-sage:  #e8eed4;
            --rose:        #c4846e;
            --gold:        #c9a84c;
            --dark-brown:  #3d2b1f;
            --white:       #ffffff;
            --shadow-soft: 0 4px 14px rgba(61, 43, 31, 0.08);
            --shadow:      0 8px 24px rgba(61, 43, 31, 0.12);
            --shadow-lg:   0 16px 40px rgba(61, 43, 31, 0.16);
            --serif: 'Playfair Display', Georgia, serif;
            --script: 'Dancing Script', cursive;
            --sans: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--sans);
            font-size: 17px;
            line-height: 1.7;
            color: var(--dark-brown);
            background: var(--cream);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4 {
            font-family: var(--serif);
            font-weight: 700;
            line-height: 1.2;
            color: var(--warm-brown-deep);
        }
        a { color: var(--warm-brown); text-decoration: none; transition: color 0.2s; }
        a:hover { color: var(--rose); }

        .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
        section { padding: 96px 0; position: relative; }

        .script {
            font-family: var(--script);
            font-weight: 600;
            color: var(--rose);
        }

        /* Subtle burlap-ish texture overlay (very faint) */
        .burlap::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                repeating-linear-gradient(45deg, rgba(139, 99, 71, 0.025) 0 1px, transparent 1px 4px),
                repeating-linear-gradient(-45deg, rgba(139, 99, 71, 0.025) 0 1px, transparent 1px 4px);
            pointer-events: none;
        }

        /* Decorative section divider (sprig with dot) */
        .sprig {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin: 0 auto 32px;
            color: var(--sage);
            font-size: 14px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 700;
        }
        .sprig::before, .sprig::after {
            content: '';
            display: block;
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--sage), transparent);
        }
        .sprig .leaf { color: var(--sage); font-size: 16px; }

        /* ── Buttons ────────────────────────────────────────────────── */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            font-family: var(--sans);
            font-size: 16px;
            font-weight: 700;
            border-radius: 999px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .btn-primary {
            background: var(--warm-brown);
            color: var(--cream);
            box-shadow: 0 6px 18px rgba(139, 99, 71, 0.35);
        }
        .btn-primary:hover {
            background: var(--warm-brown-deep);
            color: var(--cream);
            transform: translateY(-2px);
            box-shadow: 0 10px 24px rgba(139, 99, 71, 0.45);
        }
        .btn-outline {
            background: transparent;
            color: var(--warm-brown);
            border: 2px solid var(--warm-brown);
        }
        .btn-outline:hover {
            background: var(--warm-brown);
            color: var(--cream);
            transform: translateY(-2px);
        }
        .btn-sage {
            background: var(--sage);
            color: var(--white);
            box-shadow: 0 6px 18px rgba(124, 154, 110, 0.35);
        }
        .btn-sage:hover {
            background: var(--sage-deep);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ── Navigation ─────────────────────────────────────────────── */
        nav.topnav {
            position: sticky;
            top: 0;
            background: rgba(245, 240, 232, 0.96);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(139, 99, 71, 0.15);
            z-index: 100;
            padding: 16px 0;
        }
        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .brand {
            font-family: var(--serif);
            font-weight: 700;
            font-size: 20px;
            color: var(--warm-brown-deep);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .brand .chick { font-size: 24px; }
        .nav-links {
            display: flex;
            gap: 26px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: var(--warm-brown-deep);
            font-weight: 600;
            font-size: 15px;
            position: relative;
            padding: 4px 2px;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0; right: 0; bottom: -2px;
            height: 2px;
            background: var(--rose);
            transform: scaleX(0);
            transition: transform 0.25s;
            transform-origin: center;
        }
        .nav-links a:hover { color: var(--rose); }
        .nav-links a:hover::after { transform: scaleX(1); }

        /* ── Hero ───────────────────────────────────────────────────── */
        .hero {
            background:
                radial-gradient(ellipse at top left, rgba(196, 132, 110, 0.10), transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(124, 154, 110, 0.12), transparent 50%),
                linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
            padding: 88px 0 96px;
            position: relative;
            overflow: hidden;
        }
        .hero-inner {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .hero-text .script-accent {
            font-family: var(--script);
            font-size: 28px;
            color: var(--rose);
            margin-bottom: 12px;
        }
        .hero-text h1 {
            font-size: clamp(40px, 6vw, 64px);
            font-weight: 800;
            color: var(--warm-brown-deep);
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }
        .hero-sub {
            font-family: var(--serif);
            font-style: italic;
            font-size: clamp(20px, 2.4vw, 26px);
            color: var(--sage-deep);
            margin-bottom: 24px;
            font-weight: 400;
        }
        .hero-desc {
            font-size: 17px;
            color: var(--dark-brown);
            margin-bottom: 36px;
            max-width: 540px;
            opacity: 0.9;
        }
        .hero-ctas {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* Photo placeholder card (warm + decorative, not a gray box) */
        .photo-placeholder {
            background:
                repeating-linear-gradient(45deg, rgba(124, 154, 110, 0.06) 0 6px, rgba(245, 240, 232, 0.4) 6px 12px),
                linear-gradient(135deg, var(--light-sage), var(--cream));
            border: 2px dashed rgba(139, 99, 71, 0.3);
            border-radius: 24px;
            aspect-ratio: 4/3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 32px;
            box-shadow: var(--shadow);
            position: relative;
        }
        .photo-placeholder .pp-icon {
            font-size: 56px;
            margin-bottom: 16px;
            opacity: 0.75;
        }
        .photo-placeholder .pp-label {
            font-family: var(--script);
            font-size: 28px;
            color: var(--warm-brown);
            text-align: center;
        }
        .photo-placeholder .pp-sub {
            margin-top: 8px;
            font-size: 13px;
            color: var(--warm-brown);
            opacity: 0.6;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .photo-placeholder::after {
            content: '✨';
            position: absolute;
            top: 16px; right: 18px;
            font-size: 22px;
            opacity: 0.7;
        }

        /* ── Section: What We Make ──────────────────────────────────── */
        .what-we-make {
            background: var(--cream-soft);
        }
        .section-head {
            text-align: center;
            margin-bottom: 56px;
        }
        .section-head h2 {
            font-size: clamp(32px, 4.5vw, 44px);
            font-weight: 700;
            margin-bottom: 12px;
        }
        .section-head .script-accent {
            font-family: var(--script);
            font-size: 24px;
            color: var(--rose);
            display: block;
            margin-bottom: 10px;
        }
        .section-head .sub {
            font-size: 18px;
            color: var(--dark-brown);
            opacity: 0.78;
            max-width: 600px;
            margin: 8px auto 0;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .product-card {
            background: var(--white);
            border: 1px solid rgba(139, 99, 71, 0.12);
            border-radius: 18px;
            padding: 32px 28px;
            box-shadow: var(--shadow-soft);
            transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
            position: relative;
            overflow: hidden;
        }
        .product-card::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--sage), var(--rose));
            opacity: 0;
            transition: opacity 0.3s;
        }
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(124, 154, 110, 0.4);
        }
        .product-card:hover::before { opacity: 1; }
        .product-card .icon {
            font-size: 42px;
            margin-bottom: 16px;
            display: block;
        }
        .product-card h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--warm-brown-deep);
        }
        .product-card p {
            color: var(--dark-brown);
            opacity: 0.82;
            font-size: 15.5px;
        }

        /* ── Section: Online Store (Coming Soon) ────────────────────── */
        .online-store {
            background: linear-gradient(180deg, var(--sage) 0%, var(--sage-deep) 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .online-store::before {
            content: '🌿';
            position: absolute;
            top: 40px;
            left: 8%;
            font-size: 64px;
            opacity: 0.15;
            transform: rotate(-15deg);
        }
        .online-store::after {
            content: '🌿';
            position: absolute;
            bottom: 40px;
            right: 8%;
            font-size: 64px;
            opacity: 0.15;
            transform: rotate(15deg) scaleX(-1);
        }
        .online-store .container { position: relative; z-index: 1; max-width: 700px; }
        .online-store h2 {
            color: var(--white);
            font-size: clamp(36px, 5vw, 48px);
            margin-bottom: 4px;
        }
        .online-store .coming-soon {
            font-family: var(--script);
            font-size: 36px;
            color: var(--gold);
            margin-bottom: 24px;
            display: inline-block;
            line-height: 1;
        }
        .online-store p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.92);
            margin-bottom: 32px;
            line-height: 1.7;
        }
        .signup-form {
            display: flex;
            gap: 10px;
            max-width: 480px;
            margin: 0 auto;
            flex-wrap: wrap;
            justify-content: center;
        }
        .signup-form input[type="email"] {
            flex: 1 1 240px;
            padding: 14px 20px;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.92);
            color: var(--dark-brown);
            font-family: var(--sans);
            font-size: 15px;
            outline: none;
            transition: box-shadow 0.2s;
        }
        .signup-form input[type="email"]:focus {
            box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.35);
            background: var(--white);
        }
        .signup-form .btn {
            background: var(--gold);
            color: var(--dark-brown);
        }
        .signup-form .btn:hover {
            background: #d8b75e;
            color: var(--dark-brown);
            transform: translateY(-2px);
        }
        .form-note {
            margin-top: 14px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.65);
            letter-spacing: 0.02em;
        }

        /* ── Section: Our Story ─────────────────────────────────────── */
        .our-story {
            background: var(--cream);
        }
        .story-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .story-text p {
            margin-bottom: 18px;
            color: var(--dark-brown);
            font-size: 17px;
            line-height: 1.8;
        }
        .story-text p:last-child {
            font-family: var(--serif);
            font-style: italic;
            font-size: 19px;
            color: var(--warm-brown-deep);
        }
        .generations {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            text-align: center;
        }
        .generation {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .gen-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background:
                repeating-linear-gradient(45deg, rgba(124, 154, 110, 0.08) 0 6px, rgba(245, 240, 232, 0.3) 6px 12px),
                linear-gradient(135deg, var(--light-sage), var(--cream));
            border: 3px solid var(--white);
            box-shadow: 0 6px 18px rgba(61, 43, 31, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 44px;
            margin-bottom: 14px;
            position: relative;
        }
        .gen-photo::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 1px dashed rgba(139, 99, 71, 0.25);
        }
        .generation .name {
            font-family: var(--script);
            font-size: 26px;
            color: var(--rose);
            line-height: 1;
            margin-bottom: 4px;
        }
        .generation .tag {
            font-size: 12px;
            color: var(--warm-brown);
            opacity: 0.65;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        /* ── Section: Find Us ───────────────────────────────────────── */
        .find-us {
            background: var(--light-sage);
            position: relative;
            overflow: hidden;
        }
        .find-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            margin-bottom: 40px;
        }
        .find-card {
            background: var(--white);
            border-radius: 18px;
            padding: 32px 28px;
            box-shadow: var(--shadow-soft);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid var(--sage);
        }
        .find-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .find-card .icon {
            font-size: 44px;
            margin-bottom: 14px;
            display: block;
        }
        .find-card h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--warm-brown-deep);
        }
        .find-card p {
            font-size: 15.5px;
            color: var(--dark-brown);
            opacity: 0.82;
            line-height: 1.65;
        }

        .schedule-card {
            background: var(--white);
            border-radius: 18px;
            padding: 32px;
            text-align: center;
            box-shadow: var(--shadow);
            max-width: 560px;
            margin: 0 auto;
            border: 1px dashed rgba(139, 99, 71, 0.3);
        }
        .schedule-card h4 {
            font-size: 22px;
            color: var(--warm-brown-deep);
            margin-bottom: 8px;
            font-family: var(--serif);
        }
        .schedule-card p {
            color: var(--dark-brown);
            opacity: 0.78;
            margin-bottom: 18px;
            font-size: 15px;
        }
        .social-row {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .social-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--cream);
            border: 1px solid rgba(139, 99, 71, 0.18);
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            color: var(--warm-brown);
            transition: background 0.2s, transform 0.2s;
        }
        .social-pill:hover {
            background: var(--rose);
            color: var(--white);
            transform: translateY(-2px);
        }
        .social-pill .label-soon {
            font-size: 10px;
            opacity: 0.7;
            margin-left: 4px;
        }

        /* ── Section: Contact ───────────────────────────────────────── */
        .contact {
            background: linear-gradient(180deg, var(--warm-brown) 0%, var(--warm-brown-deep) 100%);
            color: var(--cream);
            position: relative;
            overflow: hidden;
        }
        .contact::before {
            content: '🐔';
            position: absolute;
            top: 30px; left: 5%;
            font-size: 68px;
            opacity: 0.10;
            transform: rotate(-12deg);
        }
        .contact::after {
            content: '🌻';
            position: absolute;
            bottom: 30px; right: 5%;
            font-size: 68px;
            opacity: 0.10;
            transform: rotate(20deg);
        }
        .contact .container { position: relative; z-index: 1; }
        .contact h2 { color: var(--cream); }
        .contact .section-head .script-accent { color: var(--gold); }
        .contact .section-head .sub { color: rgba(245, 240, 232, 0.82); }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 56px;
            align-items: start;
        }
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .contact-info .info-row {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 16px;
            color: rgba(245, 240, 232, 0.92);
        }
        .contact-info .info-row .icon {
            font-size: 24px;
            width: 38px;
            text-align: center;
        }
        .contact-info .info-row .soon {
            font-family: var(--script);
            color: var(--gold);
            font-size: 18px;
            margin-left: 4px;
        }

        .contact-form {
            background: rgba(245, 240, 232, 0.06);
            border: 1px solid rgba(245, 240, 232, 0.18);
            border-radius: 18px;
            padding: 28px;
        }
        .contact-form .field { margin-bottom: 16px; }
        .contact-form label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 6px;
        }
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid rgba(245, 240, 232, 0.25);
            background: rgba(245, 240, 232, 0.08);
            color: var(--cream);
            border-radius: 10px;
            font-family: var(--sans);
            font-size: 15px;
            transition: border-color 0.2s, background 0.2s;
        }
        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(245, 240, 232, 0.12);
        }
        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }
        .contact-form .btn {
            background: var(--gold);
            color: var(--dark-brown);
            width: 100%;
            justify-content: center;
            margin-top: 4px;
        }
        .contact-form .btn:hover {
            background: #d8b75e;
            color: var(--dark-brown);
            transform: translateY(-2px);
        }
        .form-disclaimer {
            margin-top: 14px;
            font-size: 12px;
            color: rgba(245, 240, 232, 0.6);
            font-style: italic;
            text-align: center;
        }

        /* ── Footer ─────────────────────────────────────────────────── */
        footer {
            background: var(--dark-brown);
            color: rgba(245, 240, 232, 0.88);
            padding: 56px 0 32px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 40px;
            align-items: start;
            margin-bottom: 36px;
        }
        .footer-brand .brand-line {
            font-family: var(--serif);
            font-size: 22px;
            font-weight: 700;
            color: var(--cream);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-brand .tagline-line {
            font-family: var(--script);
            font-size: 20px;
            color: var(--gold);
        }
        .footer-col h4 {
            font-family: var(--sans);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-size: 12px;
            color: var(--gold);
            margin-bottom: 14px;
            font-weight: 700;
        }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 8px; }
        .footer-col a {
            color: rgba(245, 240, 232, 0.78);
            font-size: 15px;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: var(--rose); }
        .footer-bottom {
            text-align: center;
            padding-top: 24px;
            border-top: 1px solid rgba(245, 240, 232, 0.12);
            font-size: 13px;
            color: rgba(245, 240, 232, 0.55);
            line-height: 1.9;
        }
        .footer-bottom .heart { color: var(--rose); }

        /* ── Reveal animations (progressive) ───────────────────────── */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── Responsive ─────────────────────────────────────────────── */
        @media (max-width: 980px) {
            section { padding: 72px 0; }
            .hero { padding: 64px 0 80px; }
            .hero-inner, .story-grid, .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .photo-placeholder { max-width: 460px; margin: 0 auto; }
            .product-grid { grid-template-columns: repeat(2, 1fr); }
            .find-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .nav-links { gap: 18px; }
        }
        @media (max-width: 640px) {
            section { padding: 56px 0; }
            .container { padding: 0 20px; }
            .product-grid, .find-grid, .generations, .footer-grid {
                grid-template-columns: 1fr;
            }
            .nav-inner { flex-direction: column; gap: 12px; }
            .nav-links { gap: 14px; font-size: 14px; }
            .hero-ctas { flex-direction: column; align-items: stretch; }
            .hero-ctas .btn { justify-content: center; }
            .contact-info { align-items: flex-start; }
        }

/* ==== Additions for the WordPress/WooCommerce context ==== */
.tcc-home-page { background: var(--cream); }
.nav-shop {
    background: var(--sage);
    color: var(--white) !important;
    padding: 0.45rem 1.1rem;
    border-radius: 6px;
    font-weight: 700;
}
.nav-shop:hover { background: var(--sage-deep); color: var(--white) !important; }
.store-ctas { margin: 1.4rem 0; }
.store-ctas .btn { display: inline-block; }

/* ==== Homepage: suppress Storefront chrome ====
   The bespoke landing design ships its own <nav class=\"topnav\"> and its own <footer>.
   Storefront's header.php/footer.php still emit their wrapper elements even after
   remove_all_actions('storefront_header'/'storefront_footer') strips their contents —
   which left an empty coloured header bar and a SECOND footer on the homepage.
   Suppressed via the body class WordPress already emits for this template.
   Shop, cart, checkout and account keep the full Storefront chrome. */
.page-template-template-tcc-home .site-header,
.page-template-template-tcc-home #colophon,
.page-template-template-tcc-home .site-footer,
.page-template-template-tcc-home .storefront-handheld-footer-bar {
    display: none !important;
}
.page-template-template-tcc-home .site-content,
.page-template-template-tcc-home #content {
    margin: 0 !important;
    padding: 0 !important;
}
