
/* ========== CSS VARIABLES ========== */
:root {
	--logo-color: rgb(234, 61, 42);
	--primary-color: #ff6b35;
	--secondary-color: #DC143C;
	/*orange:  #ff6b35;	*/
	--accent-blue: #667eea;
	--light-gray: #f8f9fa;
	
	/* Gradients */
	--hero-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	--download-gradient: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
	--accent-gradient: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-color) 100%);
}

.page-content {
	margin-top: 40px;
	min-height:400px;
}

.logo {
	font-size: 2.5rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--logo-color);
}

.img-logo {
	max-width: 300px;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	border-radius: 20px;
}

.navbar-brand .img-logo { 
	display: inline-block; 
	vertical-align: bottom; 
	max-width:80px; 
	margin-bottom: 0;
}
.navbar-brand .logo { 
	display: inline-block; 
	vertical-align: bottom; 
	margin-left: .5rem; 
	margin-bottom: .5rem;
}

.btn-primary  {
	background-color: var(--logo-color);
	color: white;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 10px;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
	background-color: var(--secondary-color)!important;
	color: white!important;
}
.btn-outline-primary {
	border: 1px solid var(--logo-color);
	color: var(--logo-color);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
	background-color: var(--logo-color)!important;
	color: white!important;
}

.modal-header {
	background-color: var(--logo-color)!important;
	color: white;
}

.modal-header .btn-close {
	display: none;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
	.logo {
		font-size: 2rem;
	}
}

@media (max-width: 480px) {
	.logo {
		font-size: 1.75rem;
	}
}

.hero-section {
	background: var(--hero-gradient);
	color: white;
	padding: 80px 0;
	text-align: center;
}

.hero-section h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.hero-section p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.app-features {
	padding: 80px 0;
}

.feature-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
}

.feature-card {
	text-align: center;
	padding: 2rem;
	height: 100%;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

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

.stats-section {
	background: var(--light-gray);
	padding: 60px 0;
}

.stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
}

.download-section {
	background: var(--download-gradient);
	color: white;
	padding: 80px 0;
	text-align: center;
}

.app-store-btn {
	background: #000;
	color: white;
	padding: 12px 30px;
	border-radius: 10px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	margin: 10px;
	transition: transform 0.3s ease;
}

.app-store-btn:hover {
	transform: scale(1.05);
	color: white;
}

.app-store-btn i {
	font-size: 2rem;
	margin-right: 15px;
}

.phone-mockup {
	max-width: 300px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 2.5rem;
	}
	
	.hero-section p {
		font-size: 1.1rem;
	}
}

footer {
  width: 100%;
  text-align: center;
  font-size: 12px;
  padding: 10px;
}

body:not(.with-captcha) .grecaptcha-badge { opacity:0;}

