/* Custom CSS for Eliteedge International - Fallback if inline styles fail */
/* This file ensures CSS loads on live server */

:root {
	--brand:#D4AF37; /* gold */
	--brand-light:#F5C76C; /* light gold */
	--brand-dark:#8C6A10; /* deep gold */
	--accent:#E5A100; /* amber-gold */
	--ink:#0A0A0A; /* near black */
}

html, body { font-family:'Rubik', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
html { overflow-x: hidden; overflow-y: auto; }
body { position: relative; overflow-x: hidden; }

header { 
	position: fixed !important;
	top: 0 !important; 
	left: 0 !important;
	right: 0 !important;
	z-index: 9999 !important;
	width: 100% !important;
	background-color: white !important;
}

main {
	padding-top: 100px;
}

@media (max-width: 768px) {
	main {
		padding-top: 90px;
	}
}

.container { width:100%; max-width:1200px; margin-left:auto; margin-right:auto; padding-left:1rem; padding-right:1rem; }
img { object-fit: contain; }
* { box-sizing: border-box; }

/* Gradient text utility */
.gradient-text {
	background: linear-gradient(90deg, var(--brand-light) 0%, var(--brand) 50%, var(--brand-dark) 100%);
	-webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Subtle floating animation */
.float-slow { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-6px) } }

/* Soft card shadow */
.card { box-shadow: 0 10px 20px -10px rgba(2,6,23,.15); }

/* Enhanced Button Styles */
.btn-primary {
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: all 0.3s ease-out;
	background: #f2c85b;
	color: #0b1540;
	box-shadow: 0 4px 15px rgba(242,200,91,0.3);
	display: inline-block;
	text-align: center;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(242,200,91,0.5);
	background: #f5d270;
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-secondary {
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: all 0.3s ease-out;
	border: 2px solid #f2c85b;
	color: #0b1540;
	background: #f2c85b;
	position: relative;
	overflow: hidden;
	display: inline-block;
	text-align: center;
}

.btn-secondary::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s;
}

.btn-secondary:hover::before {
	left: 100%;
}

.btn-secondary:hover {
	border-color: #f5d270;
	color: #0b1540;
	box-shadow: 0 0 20px rgba(242,200,91,0.3);
	transform: translateY(-2px);
	background: #f5d270;
}

.btn-white {
	padding: 0.875rem 2rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: all 0.3s ease-out;
	background: #f2c85b;
	color: #0b1540;
	box-shadow: 0 4px 20px rgba(242,200,91,0.3);
	border: none;
	display: inline-block;
	text-align: center;
	text-decoration: none;
}

.btn-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(242,200,91,0.4);
	background: #f5d270;
}

.btn-white:active {
	transform: translateY(0);
}

.btn-submit {
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: all 0.3s ease-out;
	background: #f2c85b;
	color: #0b1540;
	box-shadow: 0 4px 15px rgba(242,200,91,0.3);
	border: none;
	cursor: pointer;
}

.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(242,200,91,0.4);
	background: #f5d270;
}

.btn-submit:active {
	transform: translateY(0);
}

.product-card {
	transition: all 0.3s ease-out;
}

.product-card:hover {
	transform: translateY(-8px);
}

.product-card img {
	transition: transform 0.5s ease-out;
}

.product-card:hover img {
	transform: scale(1.05);
}

.link-underline {
	position: relative;
	display: inline-block;
	transition: all 0.3s ease-out;
}

.link-underline::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--brand-light);
	transition: width 0.3s ease-out;
}

.link-underline:hover::after {
	width: 100%;
}

.feature-card {
	transition: all 0.3s ease-out;
	cursor: default;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-card:hover .feature-icon {
	transform: scale(1.1);
}

.feature-icon {
	transition: transform 0.3s ease-out;
}

/* Line clamp utilities for text truncation */
.line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Smooth scroll behavior */
html {
	scroll-behavior: smooth;
}

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

.fade-in-up {
	animation: fadeInUp 0.6s ease-out forwards;
}

/* Pulse animation for icons */
@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.05);
	}
}

.animate-pulse {
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}


