/* --- Denge Terapi Calming Style --- */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;600&display=swap');

:root {
    --bg-calm: #f0fdfa; /* Soft Mint Cream */
    --bg-card: #ffffff;
    --primary-teal: #0d9488; /* Calm Teal */
    --hover-teal: #0f766e;
    --accent-lavender: #faf5ff;
    --text-dark: #1f2937;
    --text-muted: #4b5563;
    --border-color: #ccfbf1;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-calm);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, .calm-font {
    font-family: 'Lora', serif;
}

.brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-teal);
    text-decoration: none;
    letter-spacing: 1px;
}

header {
    background: rgba(240, 253, 250, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--primary-teal);
}

/* Hero */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(240, 253, 250, 0.85), rgba(240, 253, 250, 0.9)), url('https://images.unsplash.com/photo-1527689368864-3a821dbccc34?auto=format&fit=crop&w=1200');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
    font-weight: normal;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
    font-style: italic;
}

.btn-teal {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-teal);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
}

.btn-teal:hover {
    background: var(--hover-teal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
}

/* Breathing Widget */
.breath-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 450px;
    margin: 50px auto;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.04);
}

.breath-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(13, 148, 136, 0.1);
    border: 2px solid var(--primary-teal);
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-teal);
    transition: all 4s ease-in-out;
}

.breath-circle.inhale {
    transform: scale(1.4);
    background: rgba(13, 148, 136, 0.3);
}

.breath-circle.exhale {
    transform: scale(0.9);
    background: rgba(13, 148, 136, 0.05);
}

/* Therapy Cards */
.therapies-section {
    padding: 80px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.therapy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
}

.therapy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.04);
    border-color: var(--primary-teal);
}

.therapy-icon {
    font-size: 2.2rem;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.therapy-card h3 {
    margin-bottom: 10px;
    font-weight: normal;
}

.therapy-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Blog */
.blog-section {
    padding: 80px 0;
}

.form-box {
    max-width: 600px;
    margin: 40px auto 0;
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    background: #fafafa;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--primary-teal);
    background: #fff;
    outline: none;
}

footer {
    background: #111b19;
    color: #8b9d99;
    padding: 40px 0;
    text-align: center;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .nav-flex {
        flex-direction: column;
        gap: 15px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
}
