/* ColdChain Pro Theme - Inline Styles Extracted */
/* This file contains styles previously embedded in functions.php */

/* Base Styles */
:root {
	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

/* Tailwind Utilities */
@layer utilities {
	.content-auto {
		content-visibility: auto;
	}
	.text-shadow {
		text-shadow: 0 2px 4px rgba(0,0,0,0.1);
	}
	.transition-transform-opacity {
		transition-property: transform, opacity;
	}
}

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

@keyframes slideInFromLeft {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInFromRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.animate-fadeIn {
	animation: fadeIn 0.8s ease forwards;
}

.animate-slideInLeft {
	animation: slideInFromLeft 0.8s ease forwards;
}

.animate-slideInRight {
	animation: slideInFromRight 0.8s ease forwards;
}

/* Hover Effects */
.hover-scale {
	transition: transform 0.3s ease;
}

.hover-scale:hover {
	transform: scale(1.02);
}

/* Team Card Modal Styles */
.team-member-card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Contact Form Styles */
.contact-form-wrapper input,
.contact-form-wrapper textarea {
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Navigation Styles */
.site-header {
	transition: box-shadow 0.3s ease;
}

.site-header.sticky {
	position: sticky;
	top: 0;
	z-index: 50;
}

/* Button Styles */
.btn-primary {
	background-color: #3b82f6;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
	background-color: #2563eb;
	transform: translateY(-2px);
}

/* Card Styles */
.card {
	background: white;
	border-radius: 0.5rem;
	box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	transform: translateY(-2px);
}

/* Loading Spinner */
.loading-spinner {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Mega Menu Styles */
.mega-menu {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.menu-item:hover .mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Footer Styles */
.site-footer a {
	transition: color 0.3s ease;
}

.site-footer a:hover {
	color: #3b82f6;
}

/* Responsive Utilities */
@media (max-width: 768px) {
	.mobile-hidden {
		display: none !important;
	}
}

@media (min-width: 769px) {
	.desktop-hidden {
		display: none !important;
	}
}
