/*
Theme Name: Biotek Holistic
Theme URI: https://biotekclinic.id
Author: Jaka Hartanto
Author URI: https://www.ptbig.id
Description: Tema WordPress untuk Biotek Holistic Clinic – perawatan kesehatan holistik yang elegan dan menenangkan.
Version: 1.0.0
License: GPL v2 or later
Text Domain: biotek-holistic
*/

:root {
    --primary-color: #22b24c;
    --primary-light: #4ade80;
    --secondary-color: #89CFF0;
    --bg-light: #F9FAFB;
    --text-main: #1F2937;
    --text-muted: #6B7280;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    font-size: 15px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Tombol Primary */
.btn-primary {
    padding: 0.625rem 1.5rem; /* py-2.5 px-6 */
    font-size: 0.875rem;      /* text-sm */
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 9999px;    /* rounded-full */
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(34, 178, 76, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    line-height: 1.5;
}
.btn-primary:hover {
    background-color: rgba(34, 178, 76, 0.9);
    box-shadow: 0 20px 25px -5px rgba(34, 178, 76, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffffff;
}
.btn-primary:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Tombol Secondary */
.btn-secondary {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    background-color: #ffffff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(34, 178, 76, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    line-height: 1.5;
}
.btn-secondary:hover {
    background-color: #f0fdf4; /* green-50 */
    box-shadow: 0 10px 15px -3px rgba(34, 178, 76, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--primary-color);
}
.btn-secondary:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Variasi ukuran (opsional) */
.btn-primary.sm, .btn-secondary.sm {
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
}
.btn-primary.lg, .btn-secondary.lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}