/* ======================
FLOWLINE – THEME DARK
Premium / sobre / contrasté
Design only
====================== */

#flowline {
	--bg: #000030;
	--bg-soft: #11141c;
	--bg-elevated: #161a24;
	--text: #00d4ff;
	--muted: rgba(242, 244, 248, 0.65);
	--line: rgba(242, 244, 248, 0.12);
	--accent: #7c8cff;
	--radius: 26px;
	--shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
	--shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.75);
	--logo-url: url("https://www.francescosun.com/assets/images/logos/logo-00d4ff.svg");

	background: radial-gradient(
		1200px 600px at 20% -10%,
		#141826 0%,
		var(--bg) 60%
	);
	color: var(--text);
}

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


#flowline header {
	background: rgba(11, 13, 18, 0.75);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}

#flowline nav {
	padding: 22px 0;
}

#flowline .logo {
	font-weight: 700;
	letter-spacing: 0.2px;
}

#flowline .logo-badge {
	background-image: var(--logo-url);
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 0;
	color: var(--text);
}

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

#flowline .hero {
	padding: 160px 0 160px;
	background:none!important
}

#flowline .hero h1 {
	font-size: clamp(40px, 5.8vw, 88px);
	line-height: 1.02;
	letter-spacing: -0.045em;
	margin-bottom: 22px;
}

#flowline .hero p {
	color: var(--muted);
	font-size: 18px;
	line-height: 1.75;
	max-width: 62ch;
	margin-top: 0;
}

.hero-card {
position:relative;
background:url(https://www.francescosun.com/assets/images/themes/first/informatique.png) no-repeat center / cover;
aspect-ratio: 1;
}

.hero-card::before{
  content:"";
  position:absolute;
  width:1920px;
  height:1920px;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:#000d3a url("https://www.francescosun.com/assets/images/themes/background/informatique.jpg")
             no-repeat top center / cover;
  z-index:-1;
		  overflow:hidden;

}

/* CTA */
#flowline .cta {
	margin-top: 38px;
	gap: 14px;
}

/* Buttons */
#flowline .btn {
	padding: 14px 24px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--bg-elevated);
	color: var(--text);
	font-weight: 600;
	letter-spacing: 0.25px;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

#flowline .btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
	background: #1b2030;
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.6);
}

#flowline .btn-primary {
	background: #00d4ff;
	border-color: transparent;
	color: #000;
	box-shadow: 0 18px 46px rgba(95, 109, 255, 0.45);
}

#flowline .btn-primary:hover {
	background: #00d4ff;
	box-shadow: 0 26px 70px rgba(95, 109, 255, 0.6);
}

#flowline .btn-primary::before{
  filter: brightness(0);
}

#flowline .btn-primary {
color:#000!important;
}

/* ======================
MAIN / TYPO
====================== */

#flowline main {
	padding: 120px 0;
}

#flowline .section-title {
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 20px;
}

#flowline .section-description {
	color: var(--muted);
	font-size: 17px;
	line-height: 1.85;
	max-width: 88ch;
	margin-top: 0;
	position: relative;
	padding-left: 18px;
}

#flowline .section-description::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 2px;
	height: calc(100% - 20px);
	background: var(--accent);
	opacity: 0.5;
	border-radius: 999px;
}

#flowline .section-description-title {
	color: var(--text);
	font-weight: 800;
}

#flowline .section-description-link {
	color: var(--text);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ======================
GRID / CARDS
====================== */

#flowline .grid {
	gap: 34px;
	margin-top: 46px;
}

#flowline .card {
	padding: 36px;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.04),
		rgba(255, 255, 255, 0.02)
	);
	box-shadow: var(--shadow);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#flowline .card:hover {
	transform: translateY(-2px);
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.8);
}

#flowline .card h3 {
	font-size: 20px;
	letter-spacing: -0.01em;
	margin-bottom: 12px;
}

#flowline .card p {
	color: var(--muted);
	margin-top: 0;
}

/* ======================
CTA SECTION
====================== */

#flowline .cta-section {
	margin-top: 80px;
	padding: 68px;
	border-radius: var(--radius);
	border: 1px solid var(--line);
	background:
		radial-gradient(
			900px 520px at 20% 20%,
			rgba(124, 140, 255, 0.22),
			transparent 70%
		),
		linear-gradient(
			180deg,
			var(--bg-elevated),
			var(--bg-soft)
		);
	box-shadow: var(--shadow);
}

#flowline .cta-title {
	font-size: clamp(26px, 3.2vw, 46px);
	line-height: 1.1;
	letter-spacing: -0.035em;
	margin-bottom: 16px;
}

#flowline .cta-text {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.8;
	max-width: 74ch;
	margin-top: 0;
}

#flowline .cta-section .cta {
	margin-top: 28px;
}

/* ======================
FOOTER
====================== */

#flowline footer {
	margin-top: 130px;
	background: var(--bg);
	border-top: 1px solid var(--line);
}

#flowline .footer-inner {
	padding: 70px 0;
	gap: 44px;
}

#flowline footer h4 {
	font-size: 12px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--text);
	margin-bottom: 16px;
}

#flowline .footer-links a {
	color: var(--muted);
}

#flowline .footer-links a:hover {
	color: var(--text);
	text-decoration-thickness: 2px;
}

#flowline .social {
	gap: 14px;
}

#flowline .icon {
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--bg-elevated);
	color: var(--text);
	font-weight: 800;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#flowline .icon:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.7);
	text-decoration: none;
}

#flowline .icon svg {
	fill: currentColor;
}
#flowline .icon {
	color: #fff;
}

/* COPYRIGHT */
#flowline .copyright {
	border-top: 1px solid var(--line);
	color: var(--muted);
	padding: 20px 0;
}

/* ======================
RESPONSIVE (visual only)
====================== */

@media (max-width: 900px) {
	
	

.hero-card {
background-size:80%}

.hero-card::before{
  width:1000px;
  height:1000px;
}
	
	#flowline .hero {
		padding: 120px 0 130px;
	}

	#flowline main {
		padding: 95px 0;
	}

	#flowline .grid {
		gap: 24px;
		margin-top: 36px;
	}

	#flowline .card {
		padding: 30px;
		border-radius: 22px;
	}

	#flowline .cta-section {
		padding: 38px;
		border-radius: 22px;
	}

	#flowline footer {
		margin-top: 100px;
	}

	#flowline .footer-inner {
		padding: 52px 0;
		gap: 30px;
	}
}
