:root {
	--primary-red: #d32f2f; /* Avon Red-ish */
	--dark-red: #b71c1c;
	--black: #1a1a1a;
	--dark-gray: #333;
	--light-gray: #f4f4f4;
	--white: #ffffff;
	--text-color: #333;
	--font-main: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-main);
	color: var(--text-color);
	line-height: 1.6;
	background-color: var(--light-gray);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--black);
}
a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s;
}

/* Layout */
.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header */
header {
	background: var(--white);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}
.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--primary-red);
}
.nav-links {
	display: flex;
	gap: 20px;
	list-style: none;
}
.nav-links a {
	font-weight: 500;
	font-size: 1.1rem;
}
.nav-links a:hover {
	color: var(--primary-red);
}
.nav-links a.cta-btn {
	background: var(--primary-red);
	color: var(--white);
	padding: 0.5rem 1rem;
	border-radius: 5px;
}
.nav-links a.cta-btn:hover {
	background: var(--dark-red);
}

/* Mobile Menu */
.hamburger {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
}

@media (max-width: 768px) {
	.nav-links {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--white);
		padding: 1rem;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	}
	.nav-links.active {
		display: flex;
	}
	.hamburger {
		display: block;
	}
}

/* Sections */
section {
	padding: 4rem 0;
}
.section-title {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2.5rem;
	color: var(--black);
}
.section-title span {
	color: var(--primary-red);
}

/* Hero */
.hero {
	background: linear-gradient(135deg, #ffffff 0%, #fef5f9 100%); /* White to very pale pink */
	color: var(--black); /* Dark text for contrast */
	text-align: center;
	padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

/* Optional: Add a subtle pattern overlay if desired, or keep clean */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(230, 0, 126, 0.03) 0%, transparent 70%); /* Very subtle pink glow */
    pointer-events: none;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
    color: var(--black);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: none; /* Removed shadow for clean look */
    line-height: 1.2;
}
.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
    font-weight: 400;
    color: #555; /* Slightly softer dark gray */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.btn {
	display: inline-block;
	background: var(--primary-red); /* Back to Brand Red */
	color: var(--white);
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: bold;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3); /* Reddish shadow */
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn:hover {
	background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 28, 28, 0.4);
    color: var(--white);
}

@media (max-width: 768px) {
	.hero {
		padding: 4rem 1rem;
	}
	.hero h1 {
		font-size: 2rem;
	}
    .hero p {
        font-size: 1rem;
    }
}

/* Features/Advantages */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}
.feature-card {
	background: var(--white);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s;
}
.feature-card:hover {
	transform: translateY(-5px);
}
.feature-icon {
	font-size: 2.5rem;
	color: var(--primary-red);
	margin-bottom: 1rem;
}

/* Blog Grid */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}
.blog-card {
	background: var(--white);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.blog-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	background: #ddd;
}
.blog-content {
	padding: 1.5rem;
}
.blog-title {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}
.read-more {
	color: var(--primary-red);
	font-weight: bold;
}

/* Contact / Membership Form */
.form-container {
	max-width: 600px;
	margin: 0 auto;
	background: var(--white);
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.form-group {
	margin-bottom: 1.5rem;
}
.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: bold;
}
.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
}
.form-group button {
	width: 100%;
	border: none;
	cursor: pointer;
}

/* Footer */
footer {
	background: var(--black);
	color: var(--white);
	padding: 3rem 0;
	text-align: center;
}
.footer-links {
	margin-bottom: 1.5rem;
}
.footer-links a {
	color: #aaa;
	margin: 0 10px;
}
.footer-links a:hover {
	color: var(--white);
}
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.9);
	color: var(--white);
	padding: 1rem;
	text-align: center;
	z-index: 9999;
	display: none; /* Show via JS if not accepted */
}
.cookie-btn {
	background: var(--primary-red);
	color: white;
	border: none;
	padding: 0.5rem 1rem;
	margin-left: 1rem;
	cursor: pointer;
	border-radius: 3px;
}

/* Fixed Icons */
.fixed-icons {
	position: fixed;
	right: 20px;
	bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 999;
}
.icon-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	font-size: 1.5rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s;
}
.icon-btn:hover {
	transform: scale(1.1);
}
.whatsapp-btn {
	background: #25d366;
}
.phone-btn {
	background: #3498db;
}
