/*
Theme Name: HealthBridge
Theme URI: https://healthbridge.example.com
Author: Your Name
Author URI: https://yourportfolio.example.com
Description: A modern, healthcare-focused WordPress theme converted from a React landing page.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: healthbridge
*/

.hb-primary-color {
    color: rgb(35,150,153);
}

.hb-primary-color-bg {
    background-color: rgb(35,150,153);
}

.hb-primary-color-bg-hover {
    background-color: rgb(16,119,132)
}
.hb-primary-color-border {
    border-color: rgb(35,150,153);
}

.hb-primary-color-text {
    color: rgb(35,150,153);
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.custom-logo {
    max-width: 150px;;
}

ol.numbered-items {
    list-style: decimal !important;
    padding: 15px;
}

ol.numbered-items > li::marker {
	color: rgb(35,150,153);
    font-weight: bold;
}

ol.numbered-items > li {
	margin: 15px 0;
}

ul.hb-block-list > li {
    margin: 15px 0;
    padding-bottom: 15px;
}

.form-block__required-notice {
    font-style: italic;
    margin-bottom: 25px;
}

.wp-block-form-block-input > input {
    padding: 10px 15px;
    border: 1px solid #d0cfcf;
    border-radius: 10px;
}

.wp-block-form-block-textarea > textarea {
    padding: 10px 15px;
    border: 1px solid #d0cfcf;
    border-radius: 10px;
}

form.form-center {
    margin-left: auto;
    margin-right: auto;
}

.is-required {
    color: red;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}