/*
Theme Name: Kloecup Native Theme
Theme URI: https://kloecup.com
Author: Leonelkrea
Author URI: https://leonelkrea.com
Description: A modern, feminine, and professional native WordPress theme for Kloecup. Built for speed and elegance, featuring pastel colors and seamless submenu integration.
Version: 1.0.0
Text Domain: kloecup
*/

/* ==========================================================================
   CSS Variables (Design System)
   ========================================================================== */
:root {
	/* Brand Colors */
	--kloecup-pink: #DE7A88;
	--kloecup-pink-light: #F2A9B3; /* Lighter shade for hovers */
	--kloecup-blue: #233D5B;      /* Deep professional blue */
	--kloecup-blue-light: #3A6392;
	--kloecup-orange: #ED7D31;    /* Accent from logo */

	/* Neutrals & UI */
	--bg-color: #FAFAFD;          /* Very soft, clean background */
	--text-color: #333333;
	--text-light: #777777;
	--border-color: #E2E2E2;

	/* Typography */
	--font-primary: 'Poppins', system-ui, -apple-system, sans-serif;
	--font-secondary: 'Poppins', Georgia, serif; /* Elegant heading font (Also Poppins now per user request) */

	/* Layout */
	--container-width: 1200px;
	--transition: all 0.3s ease;
	--header-height: 80px;
}

/* ==========================================================================
   Base Reset
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	color: var(--text-color);
	background-color: var(--bg-color);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--kloecup-blue);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--kloecup-pink);
}

ul {
	list-style: none;
}

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

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}
