/*!
Theme Name: curatedrecipes
Theme URI: http://underscores.me/
Author: Bridget Walsh
Author URI: http://underscores.me/
Description: Description
Version: 1.0.3
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: curated
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

curatedrecipes is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* ROOT VARIABLES
--------------------------------------------- */

/* Define your color variables */
:root {
  --primary-color: #FF4D4D;
  --secondary-color: #962623;
  --accent-color: #e74c3c;
  --background-color: white;
  --stroke-color: black;
  --text-color: #2c3e50;
  --link-color: #FF4D4D;
    --link-visited-color: #962623;
    --link-active-color: purple;
    --faq-background-color: #2c3338;
    --faq-text-color: black;
    --faq-heading-color: #ff4d4d;
    --margin-top: 61px;
}

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
    font-size: 16px; /* 1rem = 16px */
      height: 100%;
  margin: 0;
}

@media (max-width: 900px) {
  html {
    font-size: 14px; /* 1rem = 15px */
  }
}

@media (max-width: 600px) {
  html {
    font-size: 12px; /* 1rem = 14px */
  }
}


/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
  height: 100%;
  margin: 0;
}



#page {
  display: grid;
  grid-template-rows: auto 1fr auto; 
  min-height: 100svh; /* full viewport height, safe on mobile */
}

/**
 * Render the `main` element consistently in IE.
 */
main {

    padding: 0 2vw; /* instead of margin pushing the whole layout */
    padding-top: 0; 
    min-height: 0;
      display: flex;                 /* let inner content stretch to consume space */
  flex-direction: column;
}

#main-content {
  flex: 1 0 auto;                /* consumes leftover space so footer sits at bottom when short */
  min-height: 0;                 /* prevents child overflow from blocking growth */
}

#primary {
        margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */

@font-face {
  font-family: 'TayJukeboxJohnny';
  src: url('fonts/TAYJukeboxJohnny.woff2') format('woff2'),
       url('fonts/TAYJukeboxJohnny.woff') format('woff'),
       url('fonts/TAYJukeboxJohnny.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TayWingman';
  src: url('fonts/TAYWingman.woff2') format('woff2'),
       url('fonts/TAYWingman.woff') format('woff'),
       url('fonts/TAYWingman.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}



body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: "tt-commons-pro", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;

}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

#hero 
    .bg-label {
        font-size: 30vw;
        white-space: normal;
        line-height: 24vw;
        color: rgba(255, 255, 255, 0.1);
    
}


#primary-menu {
    text-transform: uppercase;
    letter-spacing: -0.07em;
    font-size: 18px;
    font-family: 'TayWingman', sans-serif;
}


/* Elements
--------------------------------------------- */
body {
    background-color: var(--background-color);
}

hr {
	background-color: var(--stroke-color);
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: var(--link-color);
}

a:visited {
	color: var(--link-visited-color);
}

a:hover,
a:focus,
a:active {
	color: var(--link-active-color);
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/



/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* ========= FIXED HEADER ========= */

#masthead {
    position: sticky;
    height: var(--margin-top);
    top: 0;
    left: 2vw;
    width: 96vw;
    z-index: 1000;
    background: var(--background-color);
    padding: 1rem 0;
    border-bottom: black solid 2px;
}

/* ========= HERO SECTION ========= */

#hero {
  position: relative;
  background: var(--background-color);
  color: #fff;
  z-index: 1;
}

/* Background label text */
.bg-label {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10vw;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

/* Foreground intro content */
.intro-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.intro-content p.tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ========= INGREDIENT SEARCH FORM ========= */
#ingredient-search {
  align-items: center;     
  gap: 0.5rem;              
}

#ingredient-search input {
  background-color: transparent;
  border: black solid 1px;
  width: 100%;
  border-radius: 0;
  color: var(--text-color);
  padding: 10px;
  font-size: 1.5rem;
}

#searchInput::placeholder {
  opacity: 1;
  transition: opacity 0.4s ease;
  color: var(--text-color);
}

#searchInput.fade-placeholder::placeholder {
  opacity: 0.3;
}


.search-actions {
  display: flex;
  align-items: center;
  justify-content: space-between; /* button left, attribution right */
  margin-top: 0.5rem;
}

#ingredient-search button {
  padding: 0.75rem 1.25rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

#ingredient-search button:hover {
  background: var(--primary-color);
}

#google-attribution img {
  height: 20px; /* adjust to match button height visually */
}


#ingredient-search button {
  padding: 0.75rem 1.25rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

#ingredient-search button:hover {
  background: var(--primary-color);
}

#google-attribution {
  display: flex;             /* ensures img stays vertically centered */
  align-items: center;
}
#google-attribution img {
  height: 20px;              /* adjust to fit alongside button nicely */
}

/* ===== Base (mobile-first): sidebar above results ===== */
#main-content {
  background: transparent;
  color: black;
  position: relative;
  z-index: 2;
  max-width: 96vw;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;                 /* stack */
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "sidebar"
    "results";
  grid-auto-rows: auto;
  min-height: 0;

}

#main-content .sidebar {
  grid-area: sidebar;
  position: sticky;                   
  top: auto;
  margin-bottom: 1.25rem;                      /* space above results */
}

#main-content .columns {
  grid-area: results;
  display: flex;
  flex-direction: column;
}


/* ========= SEARCH RESULTS ========= */


/* Default list view */
#results {
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0; /* fixes flexbox overflow issues */
      display: grid;
  grid-template-columns: 100%; 
    grid-template-rows: auto;
  gap: 0;
  scrollbar-width: none; /* Firefox */
}


#results .result a {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 30% 1fr;
    gap: 2vw;
}



#results.results-grid::-webkit-scrollbar, #results.results-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
#results.results-grid .result a{
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto;
    gap: 2vw;
}




#results-header-outer {
            border-bottom: black solid 1px;
        padding: 0 0 0 2vw;
        height: var(--margin-top);
        display: grid;
    grid-template-columns: 1fr 80px;
        align-items: center;

}

#results-header h2 {
        padding: 0;
    margin: 0;

}

#results-choice {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.view-grid, .view-list{

}

.view-grid, .view-list {
  width: 24px;
  height: 24px;
  display: inline-block;
  color: black; /* change this to your desired color */
        opacity: 0.3;
}


.view-grid.active, .view-list.active{
    opacity: 1;
}


.view-grid:hover, .view-list:hover{
    opacity: 1;
    color: var( --primary-color);
}

 

 



.results-header-topic {
        text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}
.result {
        background: rgb(255 255 255);
    padding: 1rem;
    border-bottom: black solid 1px;
    border-right: black solid 1px;
    height: 100%;
}

.result img.thumb {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  display: block;
}

.result a {
    color: black;
    text-decoration: none !important;
    height: 100%;
}

.result-content {
      display: flex;
  flex-direction: column;
  height: 100%; 
}

.result-content h3 {
        font-size: 1.2rem;
    margin-top: 1rem;
    line-height: 1.2em;
}

.result-content p {
      display: -webkit-box;
  -webkit-line-clamp: 3;     /* Clamp to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


#results .result a .meta-row {
      margin-top: auto;  /* This pushes it to the bottom */
}


/* Default meta-row style for LIST view: horizontal row */
.result-content .meta-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* link left, paywall right */
  align-items: center;
  gap: 1em;

  font-size: 16px;
}

/* Make link align left, paywall right in list view */
.meta-link {
  order: 1;
}
.meta-paywall {
  order: 2;
}

/* META ROW in GRID: stack paywall above link */
.results-grid .result-content .meta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* start = left */
  gap: 0;
}

.results-grid .meta-paywall {
  order: 1;
  margin-bottom: 0.2em; /* small gap if needed */
}
.results-grid .meta-link {
  order: 2;
}


.meta-paywall {
    font-size: 80%;
    font-style: italic;
}

.noresults {
    padding: 2vw;;
}

#load-more-container {
  display: none; /* initially hidde, JS activated */
      margin-top: auto;
  padding: 0; 
  text-align: center;
}

#load-more-btn {
    background: black;
    color: white;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0px;
    width: 100%;
    border-radius: 0;
    padding: 1em;
    font-size: 1.2rem;
}


#load-more-btn:hover {
    background: var(--primary-color);

}

/* ========= DATA SOURCES========= */


#data-sources .intro {
    
}

#sources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;           
  align-items: start;   /* tidy tops */
        margin-top: 2vw;
}


#sources .publications, #sources .chefs, #sources .blogs {
    
}



/* ========= FAQ s========= */

#faq {
  color: var(--faq-text-color);
  padding: 2rem 2rem;
  position: relative;
  z-index: 5;
}

#faq-inner {
    max-width: 60vw;
    margin: 0 auto;
}

#faq h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--faq-heading-color);
  font-family: "TAYWingman", sans-serif;
}

details {
  margin-bottom: 0.5rem;
  border-radius: 4px;
}


details summary {
  font-weight: 500;
  cursor: pointer;
    font-size: 1.5rem;
        text-decoration: underline var(--primary-color);
    color:  var(--primary-color);
      list-style: none;
}

details summary::marker,
details summary::-webkit-details-marker {
  display: none !important;
}
details summary::before {
    content: none;
}

details p {
    margin-top: 1rem;
    font-size: 1rem;
    font-family: 'tt-commons-pro';
    font-weight: 100;
}


/* ========== Footer ========== */

#site-footer{
  background:#000;
  color:var(--secondary-color);
  padding:3rem 1.5rem 1.5rem;
  font-size:.95rem;
  position:relative;
  z-index:200;
  margin-top: 0;

}


.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  gap: 2rem;
    font-size: 1.1rem;
}

.footer-left {
  flex: 1 1 55%;
}

.footer-right {
  text-align: right;
  flex: 1 1 40%;
}

.footer-tagline {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--primary-color);
  letter-spacing: -0.05em;
margin: 0;
        font-family: "TAYWingman", sans-serif;
}

.footer-feedback {
    margin: 0;
}

.footer-feedback a {
  color: var(--primary-color);
  text-decoration: underline;
    margin: 0;

}



.footer-copy {
    margin: 0;
    font-size: 1rem;

}

.footer-links a {
  text-decoration: none;
  margin-left: 0.5rem;
    font-size: 1rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    text-align: left;
  }
}



/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

/* Show toggle only on small screens */
@media (min-width: 768px){ .menu-toggle{ display:none; } }

.menu-toggle{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem; padding:.6rem .8rem; border:1px solid var(--border,#ccc);
  border-radius:10px; background:transparent; cursor:pointer;
}

/* Accessible hidden text */
.sr-only{ position:absolute; width:1px; height:1px; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); }

/* Hamburger icon (3 lines) */
.hamburger{ position:relative; width:24px; height:18px; display:inline-block; }
.hamburger span{
  position:absolute; left:0; right:0; height:2px; background:currentColor;
  transition:transform .25s ease, opacity .2s ease, top .25s ease, bottom .25s ease;
}
.hamburger span:nth-child(1){ top:0; }
.hamburger span:nth-child(2){ top:8px; }
.hamburger span:nth-child(3){ bottom:0; }

/* When menu is open, animate to "X" */
.main-navigation.toggled ~ .menu-toggle .hamburger span,
.menu-toggle[aria-expanded="true"] .hamburger span { 
  /* ignore; see JS hook below for class on button instead */
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1){
  top:8px; transform:rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2){
  opacity:0;
}
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3){
  bottom:auto; top:8px; transform:rotate(-45deg);
}


/* Mobile menu panel */
@media (max-width:767px){
    .menu-toggle{ 
        display:inline-flex;
    border: none;
        color: var(--primary-color);
    }          
  .main-navigation{ display:block; }            /* keep nav visible */
  .main-navigation ul{ display:none; }          /* hide links by default */
  .main-navigation.toggled ul{ 
      display:block; 
      background: white; 
      padding: 2vw;
    } 
}










@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
        justify-content: space-between;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {

}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}


/* Media Queries & Breakpoints
--------------------------------------------- */
/* Base styles - mobile first */

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Small devices: 480px+ */
@media (min-width: 480px) {
    button, a, summary { min-height: 44px; }
    html { font-size: 14px; }
    body { color: var(--text); }
    .container { width: min(100% - 32px, 1200px); margin-inline: auto; }



    
    /* === Base: mobile-first, sidebar above results === */
    #main-content {
      display: grid;
      grid-template-columns: 1fr;  /* stack sidebar + results */
      grid-template-areas:
        "sidebar"
        "results";
      gap: 24px;
    }

    .sidebar {
      grid-area: sidebar;
      position: static; /* disable sticky on small screens */
      padding-right: 0;
      margin-bottom: 1.25rem;
    }

    .columns {
      grid-area: results;
    }

    /* ===== Grid View ===== */
    #results.results-grid {
      display: grid;
      grid-template-columns: 1fr; /* single col on phones */
      gap: 16px;
    }

    /* ===== List View ===== */
    #results.results-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    #results.results-list .result {
      display: grid;
              grid-template-columns: 1fr;
      gap: 12px;
    }

    #flavour-explorer { padding: 16px; }
    .fx-layout { display: block; }
    .fx-sidepanel { display: none; }
    .fx-toggle {
      position: sticky; top: 0; z-index: 3;
      display: inline-flex; gap: .5rem; padding: .5rem .75rem;
    }
    #fx-sunburst {
      width: 100%; max-width: 520px; aspect-ratio: 1 / 1; margin-inline: auto;
    }
    .fx-sidepanel.open {
      display: block;
      position: fixed; inset: auto 0 0 0;
      max-height: 60vh; overflow: auto; padding: 16px; border-top: 1px solid var(--border);
      background: var(--surface);
    }

}

/* Medium devices: 768px+ */
@media (min-width: 768px) {
    
  #main-content {
    grid-template-columns: 30% 1fr;
    grid-template-areas: "sidebar results";
    column-gap: 2vw;
  }

  .sidebar {
    position: sticky;
    top: var(--margin-top);
    overflow-y: auto;
    border-right: black solid 1px;
    padding-right: 2vw;
    max-height: calc(100dvh - var(--margin-top));
    scrollbar-width: none;
  }
  .sidebar::-webkit-scrollbar { width: 0; height: 0; }

  /* Grid view */
  #results.results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* List view: media layout */
  #results.results-list .result {
    align-items: start;
  }

  #fx-sunburst {
    max-width: 80%;
    margin: 0 auto;
  }
      .fx-sidepanel { display: block; margin-top: 12px; }


/* Large devices: 1024px+ */
@media (min-width: 1024px) {
  #results.results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  #results.results-list .result {

  }
}

/* === Wide: 4-up grid === */
@media (min-width: 1440px) {
  #results.results-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .fx-sidepanel {
    display: block;
  }
      .fx-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 24px;
    align-items: start;
  }
  #fx-sunburst { width: 100%; aspect-ratio: 1 / 1; }
  .fx-sidepanel { position: sticky; top: 72px; max-height: calc(100dvh - 96px); overflow:auto; }

}

/* XL screens: 1440px+ */
@media (min-width: 1440px) {
  .site-main {
    margin: 0 auto;
  }
    
      #main-content {
    grid-template-columns: 320px 1fr;          /* more predictable than % */
  }
}




