/*
Theme Name: NowaCare
Theme URI: https://nowacare.de
Author: NowaCare GmbH
Author URI: https://nowacare.de
Description: Modernes Premium WordPress Theme für NowaCare GmbH
Version: 1.0.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: nowacare
*/
:root{
	--primary:#ff00a8;
	--primary-hover:#e50097;

	--gold:#d1ab70;
	--gold-light:#f7f1e8;

	--text:#262626;
	--text-light:#666666;

	--white:#ffffff;
	--background:#fcfcfc;

	--shadow:
		0 10px 40px rgba(0,0,0,.08);

	--radius-sm:16px;
	--radius-md:24px;
	--radius-lg:32px;
	--radius-xl:40px;

	--container:1200px;

	--transition:.3s ease;
}

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

html{
	scroll-behavior:smooth;
}

body{
	font-family:Inter,sans-serif;
	font-size:16px;
	line-height:1.7;
	color:var(--text);
	background:var(--background);
}

img{
	display:block;
	max-width:100%;
	height:auto;
}

a{
	text-decoration:none;
	color:inherit;
}

ul{
	list-style:none;
}

h1,h2,h3,h4,h5{
	font-family:"Playfair Display",serif;
	line-height:1.2;
	font-weight:700;
}

h1{
	font-size:clamp(2.8rem,5vw,4.8rem);
}

h2{
	font-size:clamp(2rem,4vw,3.2rem);
}

h3{
	font-size:1.4rem;
}

section{
	padding: 0;
}

.container{
	width:100%;
	max-width:var(--container);
	margin:0 auto;
	padding:0 20px;
}