/*
Theme Name: FounderFlow
Theme URI: https://example.com/founderflow
Author: Calistario.com
Author URI: https://calistario.com
Description: Thème WordPress premium orienté performance pour agences, studios et consultants.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: founderflow
*/

:root {
	--ff-bg: #ffffff;
	--ff-text: #0b1120;
	--ff-primary: #1d4ed8;
	--ff-accent: #fbbf24;
	--ff-muted: #6b7280;
	--ff-border: #e5e7eb;
}

body {
	margin: 0;
	padding: 0;
	background-color: var(--ff-bg);
	color: var(--ff-text);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
	font-size: 16px;
}

a {
	color: var(--ff-primary);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
/* ===== Layout ===== */

.ff-container {
	max-width: 960px;
	margin: 0 auto;
	padding: 40px 20px;
}

/* ===== Header ===== */

.ff-header {
	border-bottom: 1px solid var(--ff-border);
	background: var(--ff-bg);
}

.ff-header-inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ff-logo a {
	font-size: 20px;
	font-weight: 700;
	color: var(--ff-text);
}

.ff-nav ul {
	list-style: none;
	display: flex;
	gap: 24px;
	margin: 0;
	padding: 0;
}

.ff-nav a {
	color: var(--ff-text);
	font-size: 14px;
	font-weight: 500;
}

/* ===== Posts ===== */

.ff-post {
	border-bottom: 1px solid var(--ff-border);
	padding-bottom: 32px;
	margin-bottom: 32px;
}

.ff-post-title {
	font-size: 26px;
	margin-bottom: 8px;
}

.ff-post-title a {
	color: var(--ff-text);
}

.ff-post-meta {
	font-size: 13px;
	color: var(--ff-muted);
	margin-bottom: 12px;
}

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

.ff-footer {
	border-top: 1px solid var(--ff-border);
	padding: 24px 0;
	font-size: 13px;
	color: var(--ff-muted);
	text-align: center;
}
/* ===== HOMEPAGE ===== */

.ff-home {
	margin-top: 0;
}

/* HERO */
.ff-hero {
	padding: 80px 0;
	background: var(--ff-bg);
}

.ff-hero-title {
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.ff-hero-text {
	font-size: 18px;
	color: var(--ff-muted);
	max-width: 640px;
	margin-bottom: 32px;
}

.ff-btn-primary {
	display: inline-block;
	background: var(--ff-primary);
	color: #fff;
	padding: 14px 28px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 15px;
}

/* SECTIONS */
.ff-section {
	padding: 80px 0;
}

.ff-section-light {
	background: #f9fafb;
}

.ff-section h2 {
	font-size: 32px;
	margin-bottom: 16px;
}

.ff-section p {
	max-width: 720px;
	margin-bottom: 12px;
	font-size: 16px;
}

/* GRID */
.ff-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.ff-card {
	border: 1px solid var(--ff-border);
	padding: 24px;
	border-radius: 8px;
	background: #fff;
}

.ff-card h3 {
	margin-bottom: 8px;
	font-size: 20px;
}

/* PROCESS */
.ff-process {
	margin-top: 24px;
	padding-left: 20px;
}

.ff-process li {
	margin-bottom: 12px;
	font-size: 16px;
}

/* CTA */
.ff-cta {
	padding: 80px 0;
	background: var(--ff-dark);
	color: #fff;
}

.ff-cta h2 {
	font-size: 32px;
	margin-bottom: 12px;
}

.ff-cta p {
	font-size: 16px;
	margin-bottom: 24px;
	color: #e5e7eb;
}

/* RESPONSIVE */
@media (max-width: 768px) {

	.ff-hero-title {
		font-size: 34px;
	}

	.ff-grid-3 {
		grid-template-columns: 1fr;
	}
}