:root {
	--primary-color: #ffdf57;
	--primary-color-hover: #ffe98a;
	--secondary-color: #111111;
	--success-color: #28a745;
	--danger-color: #dc3545;
	--light-gray: #f8f9fa;
	--border-color: #e6e6e6;
}

body {
	font-family: "comma-sans", sans-serif;
	color: #111111;
}

a {
	color: #111111;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

a:hover,
a:focus {
	color: #111111;
	text-decoration: none;
}

/* Navigation */
.navbar-brand {
	font-size: 1.5rem;
	color: var(--primary-color) !important;
}

/* Sticky, dark navbar with yellow links/logo */
.navbar {
	background: #111111 !important;
	border-bottom: 1px solid var(--border-color);
}

.navbar .nav-link {
	color: var(--primary-color) !important;
}

.navbar .nav-link:hover {
	opacity: 0.85;
}

.navbar .navbar-brand {
	color: var(--primary-color) !important;
}

/* Toggler visible on dark background */
.navbar .navbar-toggler {
	border-color: rgba(255, 223, 87, 0.6);
}

.navbar .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,223,87, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
	background: linear-gradient(180deg, #ffe98a 0%, #ffdf57 100%);
	color: #111111;
	min-height: 600px;
	display: flex;
	align-items: center;
	padding-bottom: calc(3rem + 50px) !important;
}

.hero h1,
.hero .lead {
	color: #111111;
}

/* Phone Mockup */
.phone-mockup {
	max-width: 300px;
	margin: 0 auto;
	background: white;
	border-radius: 30px;
	padding: 15px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-content {
	background: #f8f9fa;
	border-radius: 20px;
	overflow: hidden;
	min-height: 500px;
}

.profile-preview {
	padding: 20px;
}

.profile-header {
	height: 120px;
	background: linear-gradient(135deg, #ffe98a 0%, #ffdf57 100%);
	margin: -20px -20px 0 -20px;
}

.profile-avatar {
	width: 80px;
	height: 80px;
	background: white;
	border-radius: 50%;
	margin: -40px auto 15px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-name, .profile-bio {
	height: 20px;
	background: #dee2e6;
	border-radius: 10px;
	margin-bottom: 10px;
	animation: pulse 2s infinite;
}

.profile-name {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}

.profile-bio {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	height: 15px;
}

.profile-link {
	height: 50px;
	background: white;
	border-radius: 10px;
	margin-bottom: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.6;
	}
}

/* Features */
.feature-card {
	background: white;
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
	font-size: 3rem;
}

/* Pricing */
.pricing-card {
	background: #ffffff;
	border: 2px solid var(--border-color);
	border-radius: 12px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card-featured {
	border-color: var(--primary-color);
	box-shadow: 0 10px 30px rgba(255, 223, 87, 0.25);
}

.pricing-card ul li {
	padding: 8px 0;
}

/* Modals */
.modal-content {
	border: none;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
	padding: 1.5rem;
}

.modal-body {
	padding: 1.5rem;
}

/* Form Elements */
.form-control {
	border-radius: 8px;
	border: 1px solid var(--border-color);
	padding: 0.75rem;
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(255, 223, 87, 0.35);
}

.btn {
	border-radius: 8px;
	padding: 0.75rem 1.5rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-primary {
	background: var(--primary-color);
	border: none;
	color: #111111;
}

.btn-primary:hover {
	background: var(--primary-color-hover);
	color: #111111;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 223, 87, 0.3);
}

/* Alerts */
.alert {
	border-radius: 8px;
	border: none;
	margin-bottom: 1rem;
}

/* Footer */
.simple-footer {
	background: #000;
	background-color: #000 !important;
	color: #fff;
	text-align: center;
	padding: 14px 0;
	margin-top: auto;
	width: 100%;
	position: sticky;
	bottom: 0;
	left: 0;
	align-self: stretch;
	flex-shrink: 0;
	z-index: 10;
}

.simple-footer > div:first-child {
	font-size: 14px;
}

.simple-footer div + div {
	margin-top: 1px;
	font-size: 13px;
}

.simple-footer a {
	color: #ffdf57;
	text-decoration: none;
}

.simple-footer a:hover {
	opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
	.hero {
		min-height: auto;
		padding: 3rem 0;
	}
	
	.hero h1 {
		font-size: 2rem;
	}
	
	.phone-mockup {
		margin-top: 3rem;
	}
}