/*
Theme Name: Alpha Care
Theme URI: https://alphacare.hr
Author: Jure Tufekčić
Author URI: https://alphacare.hr
Description: Custom WordPress tema za Alpha Care projekt.
Version: 1.2
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alphacare
*/

/* ===== Global reset & base ===== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Noto Sans", sans-serif;
	background: #ECF3FE;
	color: #111827;
	min-height: 100vh;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ===== Layout ===== */

.coming-soon-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 40px;
	background-image: linear-gradient(to bottom, #f5efe7 0%, #ffffff 100%);
}

.coming-soon-inner {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* ===== Top bar (logo + social) ===== */

.coming-soon-top {
	position: absolute;
	top: 32px;
	left: 40px;
	right: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cs-logo {
	display: block;
	height: 32px;
}

.cs-logo img {
	height: 100%;
}

.cs-top-right {
	display: flex;
	align-items: center;
	gap: 24px;
	font-size: 14px;
	color: #4b5563;
}

.cs-socials {
	display: flex;
	align-items: center;
	gap: 12px;
}

/* male kružne ikone umjesto pravih loga */
.cs-social-circle {
	width: 26px;
	height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ===== Left column ===== */

.cs-left {
	max-width: 560px;
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.cs-badge {
	display: inline-block;
	background: #e34b4b;
	color: #ffffff;
	font-weight: 700;
	padding: 10px 22px;
	border-radius: 6px;
	margin-bottom: 26px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.cs-heading {
	font-size: clamp(40px, 3.5vw, 46px);
	line-height: 1.1;
	font-weight: 700;
	margin-bottom: 20px;
	color: #111827;
}

.cs-subtitle {
	font-size: 18px;
	color: #6b7280;
	margin-bottom: 24px;
}

/* newsletter forma */
.newsletter-form {
	max-width: 520px;
	width: 100%;
	margin: 32px auto 0;
}

/* vanjski MailPoet container kao kartica */
.newsletter-form #mailpoet_form_1 {
	width: 100%;
	background: #ffffff !important;
	border-radius: 14px;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
	border: 1px solid #e5e7eb !important;
	padding: 24px 24px 20px !important;
}

/* resetiraj interni layout na standardni blok */
.newsletter-form #mailpoet_form_1 form.mailpoet_form {
	display: block;
	padding: 0 !important;
	border: none !important;
	background: transparent !important;
	box-shadow: none !important;
}

/* paragrafi jedan ispod drugog */
.newsletter-form #mailpoet_form_1 .mailpoet_paragraph {
	margin: 0 0 16px 0 !important;
}

/* EMAIL input – punu širinu, zaobljen, uredan */
.newsletter-form #mailpoet_form_1 .mailpoet_text {
	width: 100% !important;
	border-radius: 8px !important;
	border: 1px solid #d1d5db !important;
	padding: 14px 16px !important;
	font-size: 16px;
	outline: none;
	color: #111827;
	box-shadow: none !important;
	margin: 0 !important;
}

.newsletter-form #mailpoet_form_1 .mailpoet_text::placeholder {
	color: #9ca3af;
}

/* GUMB – cijela širina ispod inputa */
.newsletter-form #mailpoet_form_1 .mailpoet_submit {
	display: inline-block;
	width: 100%;
	text-align: center;
	border: none !important;
	border-radius: 8px !important;
	background: #2563eb !important;
	color: #ffffff !important;
	padding: 12px 16px !important;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	white-space: normal;
}

/* loader sakrijemo da ne remeti raspored */
.newsletter-form #mailpoet_form_1 .mailpoet_form_loading {
	display: none !important;
}

/* poruke ispod forme */
.newsletter-form #mailpoet_form_1 .mailpoet_message {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.4;
}

.newsletter-form #mailpoet_form_1 .mailpoet_validate_success {
	color: #047857;
}

.newsletter-form #mailpoet_form_1 .mailpoet_validate_error {
	color: #b91c1c;
}

/* sakrij honeypot labelu i popup overlay */
.newsletter-form #mailpoet_form_1 .mailpoet_hp_email_label {
	display: none !important;
}

.newsletter-form .mailpoet_form_popup_overlay {
	display: none !important;
}

/* mala poruka */
.cs-message {
	margin-top: 12px;
	font-size: 14px;
	color: #ffeb99;
}

/* ===== Right column – kontakt kartica ===== */

/* Removed .cs-right-card styles as per instructions */

/* ===== Responsivno ===== */

@media (max-width: 900px) {
	.coming-soon-inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.coming-soon-top {
		left: 20px;
		right: 20px;
	}
}

@media (max-width: 600px) {
}

form#sib_signup_form_2 p.sib-alert-message {
	margin-bottom: 0;
}

/* Toast popup stil za Brevo poruke */
.ac-toast {
	position: fixed;
	bottom: 24px;
	right: 24px;
	max-width: 360px;
	padding: 12px 16px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.4;
	color: #ffffff;
	background: #111827;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.45);
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	z-index: 9999;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.ac-toast-visible {
	opacity: 1;
	transform: translateY(0);
}

.ac-toast-success {
	background: #16a34a;
}

.ac-toast-error {
	background: #b91c1c;
}

.ac-toast-warning {
	background: #92400e;
}