/*
Theme Name: PowerOn Soccer v1.1
Theme URI: https://pressmegpt.com
Author: PressMeGPT
Author URI: https://pressmegpt.com
Description: https://poweron-soccer-184201709624.us-west1.run.app | This theme was generated by PressMeGPT.com - AI WordPress Theme Generator. Free software released under GNU GPLv2 with attribution.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: poweron-soccer
Tags: custom, pressmegpt, ai-generated, custom-logo, custom-menu, custom-colors, light, custom-fonts

This theme was created with PressMeGPT.com - AI WordPress Theme Generator.
Free to use, modify, and distribute under GNU GPLv2 with attribution.
*/

/* Reset and base styles */
*, *::before, *::after {
box-sizing: border-box;
}

body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
}

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

a {
text-decoration: none;
}

/* ===== Header Styles ===== */
.site-header {
padding: 1rem 2rem;
}

.header-inner {
max-width: 1400px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}

/* Header Layout: Logo Left, Menu Right (default) */
.header-layout-logo-left-menu-right .header-inner {
flex-direction: row;
justify-content: space-between;
}

/* Header Layout: Logo Right, Menu Left */
.header-layout-logo-right-menu-left .header-inner {
flex-direction: row-reverse;
justify-content: space-between;
}

/* Header Layout: Logo Center, Menu Below */
.header-layout-logo-center-menu-below .header-inner {
flex-direction: column;
text-align: center;
}

.header-layout-logo-center-menu-below .site-branding {
margin-bottom: 1rem;
}

/* Header Layout: Logo Center, Menu Split */
.header-layout-logo-center-menu-split .header-inner {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
}

.header-layout-logo-center-menu-split .menu-left {
justify-self: end;
}

.header-layout-logo-center-menu-split .menu-right {
justify-self: start;
}

/* Site Branding */
.site-branding {
display: flex;
align-items: center;
gap: 1rem;
}

.site-branding a {
display: inline-block;
}

.custom-logo {
display: block;
height: auto;
}

.site-title {
margin: 0;
font-size: 1.5rem;
font-weight: 700;
}

.site-title a {
color: inherit;
}

.site-description {
margin: 0.25rem 0 0;
font-size: 0.875rem;
opacity: 0.8;
}

/* Primary Navigation */
.main-navigation {
display: flex;
align-items: center;
}

.main-navigation ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 1.5rem;
}

.main-navigation li {
position: relative;
}

.main-navigation a {
display: block;
padding: 0.5rem 0;
font-weight: 500;
transition: color 0.2s ease;
}

.main-navigation a:hover {
opacity: 0.7;
}

/* Dropdown menus */
.main-navigation ul ul {
position: absolute;
top: 100%;
left: 0;
min-width: 200px;
flex-direction: column;
gap: 0;
background: #fff;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
border-radius: 4px;
padding: 0.5rem 0;
opacity: 0;
visibility: hidden;
transition: opacity 0.2s, visibility 0.2s;
}

.main-navigation li:hover > ul {
opacity: 1;
visibility: visible;
}

.main-navigation ul ul a {
padding: 0.5rem 1rem;
color: #333;
}

/* Mobile Menu Toggle */
.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}

.menu-toggle svg {
width: 24px;
height: 24px;
}

@media (max-width: 768px) {
.menu-toggle {
    display: block;
}

.main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: inherit;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.main-navigation.toggled {
    display: block;
}

.main-navigation ul {
    flex-direction: column;
    gap: 0.5rem;
}

.main-navigation ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding-left: 1rem;
}
}

/* ===== Footer Styles ===== */
.site-footer {
padding: 2rem;
}

.footer-inner {
max-width: 1400px;
margin: 0 auto;
}

/* Footer Layout: Centered */
.footer-layout-centered .footer-inner {
text-align: center;
}

.footer-layout-centered .footer-navigation ul {
justify-content: center;
}

/* Footer Layout: Left Aligned */
.footer-layout-left-aligned .footer-inner {
text-align: left;
}

/* Footer Layout: Split */
.footer-layout-split .footer-inner {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

/* Footer Navigation */
.footer-navigation {
margin-bottom: 1rem;
}

.footer-navigation ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 1.5rem;
flex-wrap: wrap;
}

.footer-navigation a {
font-size: 0.875rem;
transition: opacity 0.2s;
}

.footer-navigation a:hover {
opacity: 0.7;
}

/* Footer Menu Position */
.footer-menu-below .footer-navigation {
order: 2;
margin-bottom: 0;
margin-top: 1rem;
}

.footer-menu-below .site-info {
order: 1;
}

/* Footer Widgets */
.footer-widgets {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-widgets .widget {
margin-bottom: 0;
}

.footer-widgets .widget-title {
font-size: 1rem;
font-weight: 600;
margin-bottom: 1rem;
}

/* Site Info */
.site-info {
font-size: 0.875rem;
opacity: 0.8;
}

.site-info p {
margin: 0;
}

@media (max-width: 768px) {
.footer-layout-split .footer-inner {
    flex-direction: column;
    text-align: center;
}

.footer-navigation ul {
    justify-content: center;
}
}

/* ===== Widget Styles ===== */
.widget {
margin-bottom: 2rem;
}

.widget-title {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 1rem;
}

.widget ul {
list-style: none;
padding: 0;
margin: 0;
}

.widget li {
padding: 0.25rem 0;
}

/* ===== Content Styles ===== */
.content-area {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}

.content-area.has-sidebar {
display: grid;
grid-template-columns: 1fr 300px;
gap: 3rem;
align-items: start;
}

@media (max-width: 768px) {
.content-area.has-sidebar {
    grid-template-columns: 1fr;
    gap: 2rem;
}
}

/* PressMeGPT: full-bleed entry header for blog posts (rendered outside .content-area) */
.single .entry-header,
.page .entry-header.full-bleed {
width: 100%;
margin: 0;
}

.primary-content {
min-width: 0;
}

.page-content-wrapper {
max-width: 1200px;
margin: 0 auto;
}

/* PressMeGPT inner pages render full-bleed (sections handle their own width) */
.pressmegpt-page-content,
.pressmegpt-page-content.entry-content {
width: 100%;
max-width: none;
margin: 0;
padding: 0;
line-height: inherit;
}

.page-header {
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 2px solid #CC0000;
}

.page-title {
font-size: 2rem;
margin: 0 0 0.5rem;
color: #0A1128;
}

.archive-description {
font-size: 1rem;
opacity: 0.7;
}

.entry-header {
margin-bottom: 1.5rem;
}

.entry-title {
font-size: 2rem;
margin: 0 0 0.5rem;
}

.entry-title a {
color: #0A1128;
text-decoration: none;
transition: color 0.2s;
}

.entry-title a:hover {
color: #CC0000;
}

.entry-meta {
font-size: 0.875rem;
opacity: 0.7;
margin-bottom: 0.5rem;
}

.entry-content {
margin-bottom: 2rem;
line-height: 1.8;
}

.entry-footer {
font-size: 0.875rem;
padding: 1rem 0;
border-top: 1px solid rgba(0,0,0,0.1);
margin-bottom: 1.5rem;
}

.entry-footer .cat-links,
.entry-footer .tags-links {
display: block;
margin-bottom: 0.25rem;
}

.entry-footer a {
color: #CC0000;
}

.post-thumbnail {
margin-bottom: 1.5rem;
}

.post-thumbnail img {
border-radius: 8px;
width: 100%;
}

/* Post navigation */
.post-navigation,
.posts-navigation {
padding: 1.5rem 0;
border-top: 1px solid rgba(0,0,0,0.1);
margin-top: 1rem;
}

.post-navigation a,
.posts-navigation a,
.nav-links a {
color: #CC0000;
text-decoration: none;
font-weight: 500;
}

.post-navigation a:hover,
.posts-navigation a:hover,
.nav-links a:hover {
text-decoration: underline;
}

.nav-subtitle {
display: block;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.05em;
opacity: 0.6;
margin-bottom: 0.25rem;
}

/* ===== Search ===== */
.search-form {
display: flex;
max-width: 500px;
}

.search-form .search-field {
flex: 1;
padding: 10px 16px;
border: 2px solid rgba(0,0,0,0.15);
border-right: none;
border-radius: 6px 0 0 6px;
font-size: 1rem;
outline: none;
}

.search-form .search-field:focus {
border-color: #CC0000;
}

.search-form .search-submit {
padding: 10px 20px;
background: #CC0000;
color: #fff;
border: 2px solid #CC0000;
border-radius: 0 6px 6px 0;
cursor: pointer;
font-weight: 600;
font-size: 1rem;
}

.search-result {
padding-bottom: 1.5rem;
margin-bottom: 1.5rem;
border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ===== Comments ===== */
.comments-area {
margin-top: 2rem;
padding-top: 2rem;
border-top: 2px solid rgba(0,0,0,0.08);
}

.comments-title {
font-size: 1.5rem;
margin-bottom: 1.5rem;
}

.comment-list {
list-style: none;
padding: 0;
margin: 0;
}

.comment-list li {
padding: 1rem 0;
border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comment-list .comment-author img {
border-radius: 50%;
margin-right: 0.75rem;
vertical-align: middle;
}

.comment-form label {
display: block;
margin-bottom: 0.25rem;
font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
width: 100%;
padding: 10px 14px;
border: 2px solid rgba(0,0,0,0.12);
border-radius: 6px;
font-size: 1rem;
margin-bottom: 1rem;
}

.comment-form textarea {
min-height: 120px;
resize: vertical;
}

.comment-form .submit-button,
.comment-form input[type="submit"] {
background: #CC0000;
color: #fff;
border: none;
padding: 12px 24px;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
font-size: 1rem;
}

/* ===== Sidebar ===== */
.widget-area {
padding: 1.5rem;
background: rgba(0,0,0,0.03);
border-radius: 8px;
}

.widget-area .widget {
margin-bottom: 2rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid rgba(0,0,0,0.08);
}

.widget-area .widget:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}

.widget-area .widget-title {
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: #0A1128;
}

.widget-area ul {
list-style: none;
padding: 0;
margin: 0;
}

.widget-area li {
padding: 0.35rem 0;
}

.widget-area a {
color: #CC0000;
text-decoration: none;
}

.widget-area a:hover {
text-decoration: underline;
}

/* ===== Utility Classes ===== */
.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;
width: 1px;
word-wrap: normal !important;
}

.skip-link:focus {
background-color: #f1f1f1;
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;
}

/* Theme Designer Custom Styles */

/* Universal styles */
* { min-width: 0; box-sizing: border-box; }
body { margin: 0; font-family: var(--td-font-body); color: var(--td-color-text); background-color: var(--td-color-background); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--td-color-link); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--td-color-link-hover); }

.fse-group, .fse-section { overflow-x: hidden; }
.fse-section { padding: 80px 0; }
.fse-section:not(.fse-hero-section) { padding: 80px 20px; }
.fse-group { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin-top: 0; margin-bottom: 0.5em; letter-spacing: -0.02em; }
.fse-heading { font-family: var(--td-font-heading); color: var(--td-color-heading); letter-spacing: -0.03em; margin-bottom: 20px; }
.fse-paragraph { font-family: var(--td-font-body); color: var(--td-color-text); line-height: 1.7; margin-bottom: 15px; }
.fse-heading.h1 { font-size: clamp(3rem, 7vw, 5rem); line-height: 1.1; margin-bottom: 0.4em; }
.fse-heading.h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; margin-bottom: 0.5em; }
.fse-heading { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3.fse-heading { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4.fse-heading { font-size: 1.1rem; }
.fse-paragraph { font-size: var(--td-font-size-base); }

/* Buttons */
.fse-button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 6px; font-weight: 600; font-size: 1rem; cursor: pointer; text-decoration: none; transition: background-color 0.3s ease, transform 0.3s ease, filter 0.3s ease; white-space: nowrap; }
.fse-button-primary { background-color: var(--td-color-btn-primary-bg); color: var(--td-color-btn-primary-text); border: none; }
.fse-button-primary:hover { filter: brightness(1.1); transform: translateY(-2px); text-decoration: none; }
.fse-button-secondary { background-color: var(--td-color-btn-secondary-bg); color: var(--td-color-btn-secondary-text); border: none; }
.fse-button-secondary:hover { filter: brightness(1.1); transform: translateY(-2px); text-decoration: none; }
.fse-button-text { background: none; border: none; color: var(--td-color-primary); padding: 0; font-weight: 600; font-size: 1rem; }
.fse-button-text:hover { color: var(--td-color-link-hover); transform: translateX(5px); filter: none; }
.fse-button-text i { margin-left: 8px; }

/* Header */
.fse-header { padding: 15px 0; background: var(--td-color-header-bg); border-bottom: 1px solid rgba(0,0,0,0.05); }
.fse-header-content { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.fse-header-left { display: flex; align-items: center; gap: 10px; flex: 0 1 auto; padding-left: 0px; }
.fse-header-right { display: flex; align-items: center; gap: 15px; flex: 0 0 auto; margin-left: auto; padding-right: 0px; }
.fse-logo-area { display: flex; align-items: center; gap: 10px; }
.fse-logo { height: 70px; width: auto; min-height: 60px; max-height: 70px; object-fit: contain; }
.fse-site-title { font-size: 1.5rem; font-weight: 700; color: var(--td-color-header-text); font-family: var(--td-font-heading); }
.fse-main-nav { display: flex; }
.fse-nav-menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; justify-content: center; align-items: center; }
.fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; white-space: nowrap; }
.fse-nav-menu a:hover { color: var(--td-color-primary); }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--td-color-header-text); }
.fse-header-actions { display: flex; gap: 15px; }
.fse-main-nav.mobile-open { display: flex !important; position: absolute; top: 100%; left: 0; right: 0; background: var(--td-color-header-bg, #fff); flex-direction: column; padding: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); z-index: 100; }
.fse-main-nav.mobile-open .fse-nav-menu { flex-direction: column; gap: 15px; align-items: flex-start; }

/* Hero Section */
.fse-hero-section { background-color: var(--td-color-background); padding: 100px 0; display: flex; align-items: center; position: relative; overflow: hidden; }
.fse-hero-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); z-index: 1; }
.fse-hero-content { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; position: relative; z-index: 2; }
.fse-hero-text { flex: 1 1 50%; min-width: 300px; text-align: left; }
.fse-hero-text .fse-heading { font-size: clamp(3.5rem, 8vw, 5.5rem); line-height: 1; margin-bottom: 20px; color: var(--td-color-heading); }
.fse-hero-text .fse-paragraph { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 30px; }
.fse-hero-image-container { flex: 1 1 40%; min-width: 300px; text-align: right; box-shadow: 0 20px 60px rgba(0,0,0,0.1); border-radius: 6px; overflow: hidden; }
.fse-hero-image-container .fse-image { border-radius: 6px; }
.fse-hero-buttons { display: flex; justify-content: flex-start; gap: 15px; flex-wrap: wrap; margin-top: 30px; }

/* About Section */
.fse-about-section { background-color: var(--td-color-background); padding: 100px 0; }
.fse-about-content { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 60px; }
.fse-about-text { flex: 1 1 45%; min-width: 300px; }
.fse-about-text .fse-tagline { color: var(--td-color-primary); font-weight: 600; margin-bottom: 10px; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.05em; }
.fse-about-text .fse-heading { margin-bottom: 30px; }
.fse-about-text .fse-paragraph { margin-bottom: 25px; }
.fse-about-benefits { flex: 1 1 45%; min-width: 300px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.fse-benefit-item { background: var(--td-color-accent); padding: 30px; border-radius: 6px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.fse-benefit-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.fse-benefit-item .fse-heading { font-size: 1.25rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; color: var(--td-color-text); }
.fse-benefit-item .fse-icon { color: var(--td-color-primary); font-size: 1.5rem; width: auto; height: auto; max-width: none; max-height: none; }
.fse-benefit-item .fse-paragraph { font-size: 0.95rem; line-height: 1.6; margin-bottom: 0; }

/* Programs Section */
.fse-programs-section { background-color: var(--td-color-background); padding: 100px 0; }
.fse-section-header { text-align: center; margin-bottom: 60px; }
.fse-section-header .fse-heading { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 15px; }
.fse-section-header .fse-paragraph { font-size: 1.2rem; color: var(--td-color-primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.fse-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.fse-service-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 30px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; text-align: center; }
.fse-service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(0,0,0,0.12); }
.fse-service-card img { width: 100%; height: 220px; object-fit: cover; margin-bottom: 20px; }
.fse-service-card .fse-heading { font-size: 1.6rem; margin-bottom: 10px; padding: 0 20px; color: var(--td-color-heading); }
.fse-service-card .fse-paragraph { font-size: 1rem; padding: 0 20px 20px; flex-grow: 1; margin-bottom: 0; }
.fse-service-card .fse-button-text { margin-top: auto; padding-bottom: 25px; align-self: center; }

/* Events Section */
.fse-events-section { background-color: var(--td-color-accent); padding: 100px 0; }
.fse-section-header-split { display: flex; justify-content: space-between; align-items: center; margin-bottom: 60px; flex-wrap: wrap; gap: 20px; text-align: left; }
.fse-section-header-split .fse-text-left .fse-heading { margin-bottom: 10px; }
.fse-section-header-split .fse-text-left .fse-paragraph { color: var(--td-color-primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0; }
.fse-events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.fse-event-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 30px rgba(0,0,0,0.08); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; padding: 30px; position: relative; }
.fse-event-card:hover { transform: translateY(-5px); box-shadow: 0 10px 35px rgba(0,0,0,0.12); }
.fse-event-meta { background: var(--td-color-primary); color: #fff; padding: 15px 20px; border-radius: 6px; text-align: center; margin-bottom: 25px; display: inline-block; position: absolute; top: -20px; left: 30px; min-width: 100px; box-shadow: 0 5px 15px rgba(204,0,0,0.3); }
.fse-event-date { display: block; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.fse-event-category { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 5px; opacity: 0.8; }
.fse-event-details { padding-top: 40px; }
.fse-event-details .fse-heading { font-size: 1.4rem; margin-bottom: 10px; line-height: 1.3; color: var(--td-color-heading); }
.fse-event-details .fse-paragraph { font-size: 0.95rem; margin-bottom: 10px; color: #555; }
.fse-event-details .fse-location, .fse-event-details .fse-eligibility { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; margin-bottom: 8px; color: #777; }
.fse-event-details .fse-location i { color: var(--td-color-primary); }
.fse-event-specs { list-style: none; padding: 0; margin: 20px 0; border-top: 1px solid #eee; padding-top: 20px; }
.fse-event-specs li { font-size: 0.9rem; margin-bottom: 8px; display: flex; justify-content: space-between; }
.fse-event-specs li strong { font-weight: 600; color: var(--td-color-heading); }
.fse-event-details .fse-button { margin-top: 20px; width: 100%; }

/* Final CTA Section */
.fse-cta-section { background-color: var(--td-color-secondary); color: #fff; padding: 100px 0; text-align: center; }
.fse-cta-section.fse-section-dark .fse-heading, .fse-cta-section.fse-section-dark .fse-paragraph { color: #fff; }
.fse-cta-content .fse-heading { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 20px; }
.fse-cta-content .fse-paragraph { font-size: clamp(1.1rem, 2vw, 1.4rem); max-width: 800px; margin: 0 auto 40px auto; }
.fse-cta-content .fse-button-primary { background-color: var(--td-color-primary); color: var(--td-color-btn-primary-text); }
.fse-cta-content .fse-button-primary:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* Footer */
.fse-footer { background: var(--td-color-footer-bg); padding: 80px 0 30px; color: var(--td-color-footer-text); }
.fse-footer-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.fse-footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 50px; }
.fse-footer-columns .fse-column { text-align: left; }
.fse-footer-columns .fse-column h4 { margin-bottom: 20px; font-size: 1.2rem; color: #fff; text-align: left; font-family: var(--td-font-heading); letter-spacing: -0.01em; }
.fse-footer-logo { height: 60px; width: auto; margin-bottom: 20px; object-fit: contain; filter: brightness(0) invert(1); /* Makes dark logo white for dark footer */ }
.fse-footer-about .fse-paragraph { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.8); margin-bottom: 0; }
.fse-footer-menu { list-style: none; padding: 0; margin: 0; text-align: left; }
.fse-footer-menu li { margin-bottom: 12px; }
.fse-footer-menu a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; }
.fse-footer-menu a:hover { color: var(--td-color-primary); }
.fse-contact-list { list-style: none; padding: 0; margin: 0; text-align: left; }
.fse-contact-list li { margin-bottom: 15px; display: flex; align-items: flex-start; gap: 12px; justify-content: flex-start; font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.fse-contact-list i { width: 20px; color: var(--td-color-primary); flex-shrink: 0; font-size: 1.1em; margin-top: 3px; }
.fse-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; text-align: center; }
.fse-copyright { font-size: 0.9rem; text-align: center; color: rgba(255,255,255,0.6); margin-bottom: 0; }

/* Scroll Animations */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; will-change: opacity, transform; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.animate-slide-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; will-change: opacity, transform; }
.animate-slide-left.is-visible { opacity: 1; transform: translateX(0); }
.animate-slide-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; will-change: opacity, transform; }
.animate-slide-right.is-visible { opacity: 1; transform: translateX(0); }

/* Responsive */
@media (max-width: 992px) {
  .fse-hero-content { flex-direction: column; text-align: center; }
  .fse-hero-text { text-align: center; }
  .fse-hero-text .fse-heading { font-size: clamp(3rem, 7vw, 4.5rem); }
  .fse-hero-buttons { justify-content: center; }
  .fse-about-content { flex-direction: column; gap: 40px; }
  .fse-about-benefits { grid-template-columns: 1fr; gap: 20px; }
  .fse-services-grid { grid-template-columns: repeat(2, 1fr); }
  .fse-events-grid { grid-template-columns: repeat(2, 1fr); }
  .fse-event-card { flex-direction: column; }
  .fse-event-meta { position: static; margin-bottom: 20px; display: block; width: 100%; border-radius: 6px 6px 0 0; box-shadow: none; }
  .fse-event-details { padding-top: 0; }
  .fse-section-header-split { flex-direction: column; text-align: center; }
  .fse-section-header-split .fse-text-left, .fse-section-header-split .fse-text-right { text-align: center; width: 100%; }
}

@media (max-width: 768px) {
  .fse-section { padding: 60px 0; }
  .fse-hero-section { padding: 80px 0; }
  .fse-header-content { flex-wrap: wrap; }
  .fse-toggle-button { display: block; order: 3; margin-left: auto; }
  .fse-main-nav { display: none; }
  .fse-header-actions { display: none; }
  .fse-site-title { font-size: 1.2rem; }
  .fse-logo { height: 50px; min-height: 50px; }
  .fse-hero-text .fse-heading { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .fse-hero-buttons { flex-direction: column; align-items: center; }
  .fse-hero-buttons .fse-button { width: 100%; max-width: 280px; text-align: center; }
  .fse-columns { flex-direction: column; }
  .fse-column { flex: 1 1 100%; width: 100%; }
  .fse-services-grid, .fse-events-grid { grid-template-columns: 1fr; }
  .fse-footer-columns { grid-template-columns: 1fr; gap: 30px; }
  .fse-footer-columns .fse-column { text-align: center; }
  .fse-footer-columns .fse-column h4 { text-align: center; }
  .fse-footer-menu { text-align: center; }
  .fse-contact-list li { justify-content: center; }
}

@media (max-width: 480px) {
  .fse-hero-text .fse-heading { font-size: clamp(2rem, 7vw, 3rem); }
  .fse-section-header .fse-heading { font-size: clamp(2rem, 5vw, 2.5rem); }
  .fse-footer-logo { margin: 0 auto 20px auto; }
}
/* === Scroll Reveal Animation System === */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.animate-on-scroll { opacity: 0; }
.animate-slide-left { opacity: 0; }
.animate-slide-right { opacity: 0; }
.animate-scale { opacity: 0; }
.animate-on-scroll.visible { animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-left.visible { animation: fadeSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-right.visible { animation: fadeSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-scale.visible { animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
/* Hover micro-interactions — buttons only lighten slightly, no underline, no text color change */
.fse-button { transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.2s ease; }
.fse-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); filter: brightness(1.1); text-decoration: none !important; }
.fse-button:hover * { text-decoration: none !important; color: inherit !important; }

/* Fallback styles for truncated themes */
:root { --td-color-primary: #6366f1; --td-color-secondary: #4f46e5; --td-color-background: #ffffff; --td-color-text: #333333; --td-color-heading: #111111; --td-color-header-bg: #ffffff; --td-color-header-text: #333333; --td-color-footer-bg: #1a1a2e; --td-color-footer-text: #ffffff; --td-font-body: 'Inter', sans-serif; --td-font-heading: 'Inter', sans-serif; }
* { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
body { font-family: var(--td-font-body); color: var(--td-color-text); background: var(--td-color-background); }
img { max-width: 100%; height: auto; }
.fse-section { padding: 60px 20px; }
.fse-group { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.fse-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; background: var(--td-color-header-bg); }
.fse-header-left { display: flex; align-items: center; gap: 10px; flex: 0 1 auto; padding-left: 16px; }
.fse-header-right { display: flex; align-items: center; gap: 15px; flex: 0 0 auto; margin-left: auto; padding-right: 16px; }
.fse-logo { height: 70px; width: auto; }
.fse-nav-menu { display: flex; gap: 30px; list-style: none; justify-content: center; }
.fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); }
.fse-button { display: inline-block; padding: 12px 24px; background: var(--td-color-primary); color: white; text-decoration: none; border-radius: 6px; }
.fse-hero { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, var(--td-color-primary), var(--td-color-secondary)); }
.fse-hero-content { color: white; padding: 80px 20px; }
.fse-columns { display: flex; flex-wrap: wrap; gap: 30px; }
.fse-column { flex: 1 1 300px; min-width: 0; }
.fse-footer { background: var(--td-color-footer-bg); color: var(--td-color-footer-text); padding: 60px 20px; }
.fse-footer-columns { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }
@media (max-width: 768px) {
  .fse-columns { flex-direction: column; }
  .fse-column { flex: 1 1 100%; }
  .fse-toggle-button { display: block; }
  .fse-nav-menu { display: none; }
}

/* Source-site branding (Firecrawl) */
:root {
  --td-color-primary: #CC0000;
  --td-color-secondary: #0A1128;
  --td-color-secondary: #FAE6E6;
  --td-color-background: #FFFFFF;
  --td-color-text: #0A1128;
  --td-color-link: #FAE6E6;
  --td-color-heading: #0A1128;
  --td-font-body: "Inter", sans-serif;
  --td-font-heading: "Montserrat", sans-serif;
  --td-radius: 6px;
  --td-color-btn-primary-bg: #CC0000;
}
h1, .fse-heading { font-size: 96px; }
h2 { font-size: 14px; }
body, .fse-paragraph { font-size: 24px; }
.fse-button, .fse-header .fse-button {
  background: #CC0000;
}
body {
  background-color: #FFFFFF;
  color: #0A1128;
}
[hidden], [aria-hidden="true"], .sr-only, .visually-hidden { display: none !important; }
.fse-header .fse-main-nav ul, .fse-header .fse-nav-menu { display: flex; flex-wrap: wrap; list-style: none; gap: 1.25rem; margin: 0; padding: 0; }
.fse-header .fse-main-nav a, .fse-header .fse-nav-menu a { text-decoration: none; }


/* PressMeGPT: header bar vertical padding floor (never 0) */
.site-header,
.theme-designer-header > header,
.theme-designer-header .fse-header,
header.fse-header,
.fse-header {
padding-top: 10px !important;
padding-bottom: 10px !important;
}


/* PressMeGPT FAQ accordion (native details/summary + JS fallback) */
.fse-faq-details,
details.fse-faq-item,
details[class*="faq"] {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.fse-faq-details summary,
details.fse-faq-item summary,
details[class*="faq"] summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
}
.fse-faq-details summary::-webkit-details-marker,
details.fse-faq-item summary::-webkit-details-marker {
  display: none;
}
.fse-faq-answer,
.fse-faq-details > div,
details.fse-faq-item > div {
  padding-bottom: 1rem;
}
.fse-faq-item.is-open > .fse-faq-answer,
.fse-accordion-item.is-open > .fse-accordion-body {
  display: block;
}
.fse-faq-item:not(.is-open) > .fse-faq-answer,
.fse-accordion-item:not(.is-open) > .fse-accordion-body {
  display: none;
}


/* PressMeGPT header archetype (designed markup): logo-left-menu-right */
.theme-designer-header .fse-logo img:not(.fse-logo-sprite), .theme-designer-header .site-logo img:not(.fse-logo-sprite), .theme-designer-header .logo img:not(.fse-logo-sprite), .theme-designer-header .custom-logo:not(.fse-logo-sprite), .theme-designer-header header img.logo:not(.fse-logo-sprite), .theme-designer-header img.fse-logo:not(.fse-logo-sprite), .theme-designer-header img.site-logo:not(.fse-logo-sprite), .theme-designer-header img.logo:not(.fse-logo-sprite), .theme-designer-header .fse-logo-area img:not(.fse-logo-sprite), .theme-designer-header .site-branding img:not(.fse-logo-sprite), .theme-designer-header .fse-header-left img:not(.fse-logo-sprite) {
  height: auto !important;
  width: auto !important;
  max-height: 60px !important;
  max-width: min(320px, 60vw) !important;
  object-fit: contain;
}
@media (max-width: 781px) {
  .theme-designer-header .fse-logo img:not(.fse-logo-sprite), .theme-designer-header .site-logo img:not(.fse-logo-sprite), .theme-designer-header .logo img:not(.fse-logo-sprite), .theme-designer-header .custom-logo:not(.fse-logo-sprite), .theme-designer-header header img.logo:not(.fse-logo-sprite), .theme-designer-header img.fse-logo:not(.fse-logo-sprite), .theme-designer-header img.site-logo:not(.fse-logo-sprite), .theme-designer-header img.logo:not(.fse-logo-sprite), .theme-designer-header .fse-logo-area img:not(.fse-logo-sprite), .theme-designer-header .site-branding img:not(.fse-logo-sprite), .theme-designer-header .fse-header-left img:not(.fse-logo-sprite) { max-height: 44px !important; }
}
.theme-designer-header .fse-header-inner, .theme-designer-header .header-inner, .theme-designer-header .fse-header > div, .theme-designer-header > div { flex-direction: row; justify-content: space-between; align-items: center; }
/* PressMeGPT — sprite logos keep their designed crop */
.theme-designer-header img.fse-logo-sprite {
  object-fit: none !important;
  max-width: none !important;
  max-height: none !important;
  flex: 0 0 auto;
}
.theme-designer-header img.fse-logo-sprite[style*="height"] {
  /* height/width come from the element's own inline style */
  transform-origin: left center;
}
@media (max-width: 781px) {
  .theme-designer-header img.fse-logo-sprite { transform: scale(0.75); }
}


/* PressMeGPT header: static (design declares fse-header-static) */

/* PressMeGPT footer archetype: columns-3 */
.theme-designer-footer .fse-footer-columns, .theme-designer-footer:not(:has(.fse-footer-columns)) .fse-footer-inner, .theme-designer-footer:not(:has(.fse-footer-columns, .fse-footer-inner)) .footer-inner, .theme-designer-footer:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner)) > .container, .theme-designer-footer:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) > div:only-child > div:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)), .theme-designer-footer:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) > div:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)), .fse-footer .fse-footer-columns, .fse-footer:not(:has(.fse-footer-columns)) .fse-footer-inner, .fse-footer:not(:has(.fse-footer-columns, .fse-footer-inner)) .footer-inner, .fse-footer:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner)) > .container, .fse-footer:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) > div:only-child > div:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)), .fse-footer:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) > div:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)), footer.fse-section .fse-footer-columns, footer.fse-section:not(:has(.fse-footer-columns)) .fse-footer-inner, footer.fse-section:not(:has(.fse-footer-columns, .fse-footer-inner)) .footer-inner, footer.fse-section:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner)) > .container, footer.fse-section:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) > div:only-child > div:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)), footer.fse-section:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) > div:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
  text-align: left;
}
@media (max-width: 781px) {
  .theme-designer-footer .fse-footer-columns, .theme-designer-footer:not(:has(.fse-footer-columns)) .fse-footer-inner, .theme-designer-footer:not(:has(.fse-footer-columns, .fse-footer-inner)) .footer-inner, .theme-designer-footer:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner)) > .container, .theme-designer-footer:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) > div:only-child > div:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)), .theme-designer-footer:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) > div:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)), .fse-footer .fse-footer-columns, .fse-footer:not(:has(.fse-footer-columns)) .fse-footer-inner, .fse-footer:not(:has(.fse-footer-columns, .fse-footer-inner)) .footer-inner, .fse-footer:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner)) > .container, .fse-footer:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) > div:only-child > div:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)), .fse-footer:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) > div:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)), footer.fse-section .fse-footer-columns, footer.fse-section:not(:has(.fse-footer-columns)) .fse-footer-inner, footer.fse-section:not(:has(.fse-footer-columns, .fse-footer-inner)) .footer-inner, footer.fse-section:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner)) > .container, footer.fse-section:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) > div:only-child > div:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)), footer.fse-section:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) > div:not(:has(.fse-footer-columns, .fse-footer-inner, .footer-inner, .container)) { grid-template-columns: 1fr; }
}




/* ===== Per-Page Scoped Styles (PressMeGPT) ===== */


/* ===== PressMeGPT: Blog/Archive Layout Enforcement (must win over master CSS) ===== */
body.single .content-area,
body.blog .content-area,
body.archive .content-area,
body.search .content-area,
body.error404 .content-area {
max-width: 1200px !important;
margin-left: auto !important;
margin-right: auto !important;
padding-left: 2rem !important;
padding-right: 2rem !important;
box-sizing: border-box;
}

@media (max-width: 768px) {
body.single .content-area,
body.blog .content-area,
body.archive .content-area,
body.search .content-area,
body.error404 .content-area {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
}

body.single .content-area.has-sidebar,
body.blog .content-area.has-sidebar,
body.archive .content-area.has-sidebar,
body.search .content-area.has-sidebar {
display: grid !important;
grid-template-columns: minmax(0, 1fr) 300px !important;
gap: 3rem !important;
align-items: start;
}

@media (max-width: 900px) {
body.single .content-area.has-sidebar,
body.blog .content-area.has-sidebar,
body.archive .content-area.has-sidebar,
body.search .content-area.has-sidebar {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}
}

body.single .primary-content,
body.single .primary-content > article,
body.single .entry-content,
body.single .entry-footer,
body.single .post-navigation,
body.single .comments-area,
body.blog .primary-content,
body.archive .primary-content {
max-width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
box-sizing: border-box;
}
