@charset "UTF-8";

/* ====================================================
   ReLUMI Concept Design - "Medical Chic"
   Ref: hari-nature.com (Clean, Trustworthy, Elegant)
   ==================================================== */

:root {
    /* Color Palette */
    --primary: #B08D55;
    /* Primary Gold (was Deep Green #085640) */
    --primary-light: #F4EBD0;
    /* Gold Light (was #E8F3F1) */
    --accent: #E55C5C;
    /* Coral Red */
    --accent-hover: #D14B4B;
    --text-main: #333333;
    --text-sub: #666666;
    --bg-body: #FAFAFA;
    --bg-white: #FFFFFF;

    /* Typography */
    --font-sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGSMinchoE", serif;

    /* Spacing & Sizes */
    --container-max: 1000px;
    --header-height: 80px;
    --radius-card: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background: var(--bg-body);
    line-height: 1.8;
    padding-top: var(--header-height);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

/* Typography Utilities */
.serif {
    font-family: var(--font-serif);
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

/* Layout Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent);
}

/* ====================================================
   Header (Split Layout)
   ==================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    /* Wider for header */
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

.nav-pc {
    display: flex;
    gap: 30px;
}

.nav-pc a {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.header-cta {
    background: var(--accent);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(229, 92, 92, 0.3);
}

.header-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ====================================================
   Hero (Full Width + Card Overlay)
   ==================================================== */
.hero {
    position: relative;
    height: 400px;
    /* Reduced from 600px for compact view */
    background: url('../images/hero.jpg') center/cover no-repeat;
}

.hero-overlay-card {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 4px;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background: #eee;
    color: #555;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    line-height: 1.4;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-sub);
    margin-bottom: 0;
}

/* ====================================================
   Features (Grid)
   ==================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-sub);
    line-height: 1.8;
}

/* ====================================================
   CTA (Campaign)
   ==================================================== */
.cta-section {
    background: var(--primary-light);
    padding: 60px 0;
}

.cta-box {
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    border-top: 5px solid var(--accent);
}

.cta-content {
    padding: 50px 40px;
    text-align: center;
}

.cta-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.cta-head {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.price-box {
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px dashed #ddd;
}

.price-large {
    color: var(--accent);
    font-size: 3rem;
    font-weight: bold;
    font-family: var(--font-sans);
    /* Number usually Sans */
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-main {
    background: var(--accent);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(229, 92, 92, 0.4);
}

.btn-line {
    background: #06C755;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.3);
}

/* Carousel styles removed to avoid duplication with carousel_clean.css */