/* WagzUp Main Stylesheet - Modern Premium Edition */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
	/* Vibrant Modern Palette */
	--primary: #4F2FC0;       /* Deep Purple */
	--primary-light: #7E57C2; /* Soft Purple */
	--secondary: #00BCD4;     /* Vibrant Cyan */
	--secondary-light: #80DEEA;
	--accent: #FF4081;        /* Pink Accent */
	
	/* Neutral & Backgrounds */
	--bg-main: #F4F7FE;       /* Ultra-light grayish blue */
	--bg-light: #FFFFFF;
	--text-dark: #1E293B;     /* Slate dark */
	--text-muted: #64748B;    /* Slate muted */
	
	/* Layout & Styles */
	--border-radius: 16px;
	--card-shadow: 0 20px 40px rgba(0,0,0,0.04);
	--glass-bg: rgba(255, 255, 255, 0.85);
	--glass-border: 1px solid rgba(255, 255, 255, 0.5);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--text-dark);
	background-color: var(--bg-main);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.2;
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--secondary);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-padding {
	padding: 100px 0;
}

/* Utilities */
.glass-panel {
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: var(--glass-border);
	box-shadow: var(--card-shadow);
	border-radius: var(--border-radius);
}

/* Buttons */
.btn-primary, .btn-secondary {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 30px;
	font-family: 'Outfit', sans-serif;
	font-weight: 600;
	font-size: 1.1rem;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: white;
	box-shadow: 0 10px 20px rgba(79, 47, 192, 0.2);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 25px rgba(79, 47, 192, 0.3);
	color: white;
}

.btn-secondary {
	background: white;
	color: var(--primary);
	border: 2px solid transparent;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
	border-color: var(--secondary);
	color: var(--secondary);
	transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

.animate-up {
	animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Global Header (Navbar) */
.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(15px);
	border-bottom: 1px solid rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	padding: 15px 0;
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-branding .site-title a {
	font-family: 'Outfit', sans-serif;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--primary);
	background: linear-gradient(135deg, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 30px;
	margin: 0;
}

.main-navigation a {
	font-weight: 500;
	color: var(--text-dark);
	font-size: 1.05rem;
}

.main-navigation a:hover {
	color: var(--primary);
}

/* Page Headers */
.page-header {
	padding: 180px 0 100px;
	text-align: center;
	background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
	color: var(--text-dark);
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	margin-bottom: 60px;
}

.page-header h1 {
	font-size: 3.5rem;
	color: var(--text-dark);
	margin-bottom: 20px;
}

/* Forms */
.form-control {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid transparent;
	background: rgba(255,255,255,0.6);
	border-radius: 12px;
	font-family: inherit;
	font-size: 1rem;
	transition: all 0.3s;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-control:focus {
	outline: none;
	border-color: var(--secondary);
	background: white;
	box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.1);
}

label {
	font-weight: 600;
	margin-bottom: 8px;
	display: block;
	color: var(--text-dark);
}

/* Global Footer */
.site-footer {
	background: var(--text-dark);
	color: white;
	padding: 80px 0 40px;
	margin-top: 100px;
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 50px;
}

.footer-widget h3 {
	color: white;
	margin-bottom: 25px;
	font-size: 1.5rem;
}

.footer-widget ul {
	list-style: none;
}

.footer-widget ul li {
	margin-bottom: 12px;
}

.footer-widget a {
	color: #cbd5e1;
}

.footer-widget a:hover {
	color: var(--secondary);
}

.site-info {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: #94a3b8;
}

@media (max-width: 1024px) {
	.main-navigation ul { gap: 15px; }
	.page-header h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
	/* Mobile Menu Toggle */
	.mobile-menu-toggle { display: block !important; }
	.header-btn { padding: 10px 20px !important; font-size: 0.95rem !important; }
	
	/* Mobile Navigation Dropdown */
	.main-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(15px);
		box-shadow: 0 15px 30px rgba(0,0,0,0.05);
		border-top: 1px solid rgba(0,0,0,0.05);
		padding: 0;
		display: none;
		max-height: calc(100vh - 70px);
		overflow-y: auto;
	}
	
	.main-navigation.toggled {
		display: block;
		animation: fadeInUp 0.3s ease forwards;
	}

	.main-navigation ul {
		flex-direction: column;
		gap: 0;
		display: flex !important;
		padding: 10px 20px 20px;
	}
	
	.main-navigation ul li {
		border-bottom: 1px solid rgba(0,0,0,0.03);
	}
	
	.main-navigation ul li:last-child {
		border-bottom: none;
	}
	
	.main-navigation a {
		display: block;
		padding: 15px 0;
		font-size: 1.15rem;
	}
	
	/* Layout adjustments */
	.section-padding { padding: 60px 0; }
	.page-header { padding: 120px 0 60px; }
	.page-header h1 { font-size: clamp(2rem, 8vw, 3rem); }
	
	/* Typography scaling */
	h1 { font-size: clamp(2.5rem, 8vw, 3.5rem) !important; }
	h2 { font-size: clamp(2rem, 6vw, 2.5rem) !important; }
	h3 { font-size: clamp(1.5rem, 5vw, 1.8rem) !important; }
	
	/* Form layouts */
	.form-group, .form-control { width: 100%; box-sizing: border-box; }
	
	/* Footer */
	.footer-widgets { grid-template-columns: 1fr; gap: 30px; text-align: center; }
	.site-footer { padding: 50px 0 30px; margin-top: 50px; }
}

@media (max-width: 480px) {
	.btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 14px 20px; }
	.section-padding { padding: 40px 0; }
	.page-header { padding: 100px 0 40px; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; }
}
