/*
Theme Name: Linaava Landing Page Theme
Author: Faysal Ahmed
Description: Custom theme for the Linaava landing page.
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: linaava
Tags: custom-layout, one-column, custom-background
*/

/*
Since we are enqueuing output.css, this file can remain empty
or contain minimal CSS specific to WordPress admin styling.
*/

/* Standardized waitlist button styles */
.btn-waitlist {
	display: inline-block;
	background-color: rgb(212,165,165);
	color: #ffffff;
	padding: 0.5rem 2rem;
	border-radius: 9999px;
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1;
	transition: background-color 0.3s ease, color 0.3s ease;
	text-decoration: none;
	white-space: nowrap;
}
.btn-waitlist:hover {
	background-color: rgb(155,126,126);
}

/* Inverse variation (used on colored backgrounds) */
.btn-waitlist--inverse {
	background-color: #ffffff;
	color: rgb(75,85,99);
}
.btn-waitlist--inverse:hover {
	background-color: rgb(255,245,242);
}