/* === Reiki Landing Page — Zdraví Šťastní === */
/* All colours via CSS custom properties from theme.json */

/* --------------------------------
   RESET & BASE
-------------------------------- */
body.reiki-landing-page {
    background-color: var(--wp--preset--color--offwhite);
    font-family: var(--wp--preset--font-family--primary);
    color: var(--wp--preset--color--charcoal);
    margin: 0;
    padding: 0;
}

body.reiki-landing-page #wpadminbar { display: none; }
body.reiki-landing-page.admin-bar .rl-hero { margin-top: 0; }

/* --------------------------------
   LAYOUT HELPERS
-------------------------------- */
.rl-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.rl-section {
    position: relative;
    padding: 96px 0 0;
    overflow: hidden;
}

.rl-section-inner {
    padding-bottom: 80px;
}

/* --------------------------------
   SECTION HEADERS
-------------------------------- */
.rl-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.rl-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--wp--preset--color--teal);
    margin-bottom: 14px;
}

.rl-eyebrow--gold {
    color: var(--wp--preset--color--gold);
}

.rl-section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--wp--preset--color--navy);
    margin: 0 0 16px;
    line-height: 1.2;
}

.rl-section-header h2.on-dark,
.on-dark .rl-section-header h2 {
    color: var(--wp--preset--color--white);
}

.rl-section-header p {
    font-size: 18px;
    color: var(--wp--preset--color--charcoal);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.8;
}

.rl-section-header p.on-dark,
.on-dark .rl-section-header p {
    color: var(--wp--preset--color--white);
    opacity: 0.75;
}

/* --------------------------------
   BUTTONS
-------------------------------- */
.rl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 9999px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    line-height: 1;
}

.rl-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.rl-btn--cta {
    background: linear-gradient(135deg, var(--wp--preset--color--gold) 0%, var(--wp--preset--color--teal) 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(90, 193, 193, 0.35);
}

.rl-btn--cta:hover {
    box-shadow: 0 8px 30px rgba(90, 193, 193, 0.45);
}

.rl-btn--outline {
    background: transparent;
    color: var(--wp--preset--color--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.rl-btn--outline:hover {
    border-color: var(--wp--preset--color--white);
    background: rgba(255, 255, 255, 0.08);
}

/* --------------------------------
   WAVE SEPARATORS
-------------------------------- */
.rl-wave {
    display: block;
    width: 100%;
    line-height: 0;
    position: relative;
    z-index: 1;
}

.rl-wave svg {
    display: block;
    width: 100%;
}

/* --------------------------------
   1. HERO
-------------------------------- */
.rl-hero {
    background-color: var(--wp--preset--color--navy);
    color: var(--wp--preset--color--white);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

/* Stars */
.rl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.8) 0%, transparent 100%),
        radial-gradient(1px 1px at 82% 18%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 55% 55%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 8% 72%, rgba(255,255,255,0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 92% 78%, rgba(255,255,255,0.6) 0%, transparent 100%),
        radial-gradient(2px 2px at 65% 8%, rgba(90, 193, 193, 0.7) 0%, transparent 100%),
        radial-gradient(1px 1px at 35% 88%, rgba(255, 178, 38, 0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 75% 62%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 42% 38%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 28% 58%, rgba(90, 193, 193, 0.5) 0%, transparent 100%);
}

/* Glow */
.rl-hero::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(90,193,193,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.rl-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 64px;
}

.rl-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--wp--preset--color--gold);
    margin-bottom: 20px;
    background: rgba(255, 178, 38, 0.1);
    padding: 6px 18px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 178, 38, 0.25);
}

.rl-hero h1 {
    font-size: clamp(32px, 5.5vw, 60px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--wp--preset--color--white);
    margin: 0 0 28px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.rl-hero h1 em {
    font-style: normal;
    color: var(--wp--preset--color--teal);
}

.rl-hero-sub {
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
    color: rgba(250, 250, 241, 0.82);
    max-width: 680px;
    margin: 0 auto 44px;
}

.rl-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.rl-hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(250, 250, 241, 0.12);
}

.rl-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(250, 250, 241, 0.7);
    font-weight: 500;
}

.rl-trust-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--wp--preset--color--teal);
    fill: none;
    flex-shrink: 0;
}

/* --------------------------------
   2. PRO KOHO
-------------------------------- */
.rl-for-whom {
    background-color: var(--wp--preset--color--offwhite);
}

.rl-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.rl-card {
    background: var(--wp--preset--color--white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 6px rgba(34,42,52,0.07), 0 2px 4px rgba(34,42,52,0.04);
    border: 1px solid rgba(34, 42, 52, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rl-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(34,42,52,0.10), 0 4px 10px rgba(34,42,52,0.06);
}

.rl-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(90,193,193,0.15), rgba(255,178,38,0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.rl-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--wp--preset--color--navy);
    margin: 0 0 8px;
    line-height: 1.3;
}

.rl-card p {
    font-size: 14px;
    color: var(--wp--preset--color--charcoal);
    margin: 0;
    line-height: 1.65;
    opacity: 0.75;
}

/* --------------------------------
   3. CO ZÍSKÁŠ
-------------------------------- */
.rl-benefits {
    background-color: var(--wp--preset--color--navy);
}

.rl-benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.rl-benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(90, 193, 193, 0.18);
    border-radius: 14px;
    padding: 24px 22px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.rl-benefit-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(90, 193, 193, 0.35);
}

.rl-check-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--wp--preset--color--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.rl-check-circle svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
}

.rl-benefit-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--wp--preset--color--white);
    margin-bottom: 5px;
    line-height: 1.35;
}

.rl-benefit-text span {
    font-size: 14px;
    color: rgba(250, 250, 241, 0.65);
    line-height: 1.55;
}

/* --------------------------------
   4. TERMÍNY A CENA
-------------------------------- */
.rl-dates {
    background-color: var(--wp--preset--color--offwhite);
}

.rl-dates-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.rl-date-card {
    background: var(--wp--preset--color--white);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 10px 30px rgba(34,42,52,0.10), 0 2px 8px rgba(34,42,52,0.06);
    border: 1.5px solid var(--wp--preset--color--teal);
    position: relative;
    overflow: hidden;
}

.rl-date-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wp--preset--color--teal), var(--wp--preset--color--gold));
}

.rl-date-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(90, 193, 193, 0.12);
    color: var(--wp--preset--color--teal-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.rl-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.rl-detail-icon {
    width: 38px;
    height: 38px;
    background: rgba(90, 193, 193, 0.10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rl-detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--wp--preset--color--teal-dark);
    fill: none;
    stroke-width: 1.8;
}

.rl-detail-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--wp--preset--color--charcoal);
    opacity: 0.5;
    margin-bottom: 3px;
}

.rl-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--wp--preset--color--navy);
    line-height: 1.4;
}

.rl-price-block {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(34,42,52,0.09);
}

.rl-price-main {
    font-size: 42px;
    font-weight: 700;
    color: var(--wp--preset--color--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.rl-price-note {
    font-size: 13px;
    color: var(--wp--preset--color--charcoal);
    opacity: 0.6;
    margin-bottom: 20px;
}

.rl-capacity-section {
    margin-top: 6px;
}

.rl-capacity-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--wp--preset--color--charcoal);
    opacity: 0.65;
    margin-bottom: 8px;
}

.rl-capacity-meta strong {
    color: var(--wp--preset--color--navy);
    opacity: 1;
    font-weight: 700;
}

.rl-progress {
    height: 8px;
    background: rgba(34,42,52,0.1);
    border-radius: 9999px;
    overflow: hidden;
}

.rl-progress-fill {
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--wp--preset--color--teal), var(--wp--preset--color--gold));
    transition: width 0.6s ease;
}

/* Right col: programme summary */
.rl-programme {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rl-programme-day {
    background: var(--wp--preset--color--white);
    border-radius: 14px;
    padding: 24px 22px;
    border: 1px solid rgba(34,42,52,0.08);
    box-shadow: 0 2px 8px rgba(34,42,52,0.05);
}

.rl-programme-day-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--wp--preset--color--teal-dark);
    margin-bottom: 6px;
}

.rl-programme-day-time {
    font-size: 20px;
    font-weight: 700;
    color: var(--wp--preset--color--navy);
    margin-bottom: 4px;
}

.rl-programme-day-desc {
    font-size: 14px;
    color: var(--wp--preset--color--charcoal);
    opacity: 0.65;
    line-height: 1.5;
}

/* --------------------------------
   5. CO SI VZÍT
-------------------------------- */
.rl-bring {
    background-color: var(--wp--preset--color--navy);
}

.rl-checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.rl-checklist-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 178, 38, 0.18);
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: background 0.2s ease;
}

.rl-checklist-item:hover {
    background: rgba(255, 255, 255, 0.10);
}

.rl-checklist-emoji {
    font-size: 36px;
    line-height: 1;
}

.rl-checklist-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(250, 250, 241, 0.88);
    line-height: 1.4;
}

/* --------------------------------
   6. PŘIHLÁŠKA
-------------------------------- */
.rl-signup {
    background: linear-gradient(160deg, var(--wp--preset--color--navy) 0%, #0c2138 100%);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rl-signup::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(90,193,193,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.rl-signup .rl-container {
    position: relative;
    z-index: 1;
}

.rl-signup h2 {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    color: var(--wp--preset--color--white);
    margin: 0 0 20px;
}

.rl-signup-desc {
    font-size: 18px;
    color: rgba(250, 250, 241, 0.78);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.7;
}

.rl-signup-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.rl-woo-cart-form {
    display: inline-block;
}

.rl-woo-cart-form button[type="submit"],
.rl-woo-cart-form .single_add_to_cart_button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px 56px !important;
    border-radius: 9999px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer !important;
    background: linear-gradient(135deg, var(--wp--preset--color--gold), var(--wp--preset--color--teal)) !important;
    box-shadow: 0 6px 24px rgba(90,193,193,0.4) !important;
    transition: opacity 0.2s, transform 0.2s !important;
    text-decoration: none !important;
}

.rl-woo-cart-form button[type="submit"]:hover,
.rl-woo-cart-form .single_add_to_cart_button:hover {
    opacity: 0.9 !important;
    transform: translateY(-2px) !important;
}

.rl-woo-cart-form .quantity { display: none !important; }

.rl-trust-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(250, 250, 241, 0.5);
    margin-top: 4px;
}

.rl-trust-line svg {
    width: 16px;
    height: 16px;
    stroke: var(--wp--preset--color--teal);
    fill: none;
    flex-shrink: 0;
}

/* --------------------------------
   7. FAQ
-------------------------------- */
.rl-faq {
    background-color: var(--wp--preset--color--offwhite);
}

.rl-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rl-acc-item {
    background: var(--wp--preset--color--white);
    border-radius: 12px;
    border: 1px solid rgba(34,42,52,0.08);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(34,42,52,0.05);
    transition: box-shadow 0.2s;
}

.rl-acc-item.is-open {
    box-shadow: 0 4px 12px rgba(34,42,52,0.10);
}

.rl-acc-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
}

.rl-acc-trigger:hover,
.rl-acc-item.is-open .rl-acc-trigger {
    background: rgba(90, 193, 193, 0.06);
}

.rl-acc-q {
    font-size: 16px;
    font-weight: 600;
    color: var(--wp--preset--color--navy);
    line-height: 1.4;
    flex: 1;
}

.rl-acc-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(90,193,193,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.2s;
}

.rl-acc-item.is-open .rl-acc-arrow {
    transform: rotate(180deg);
    background: var(--wp--preset--color--teal);
}

.rl-acc-arrow svg {
    width: 13px;
    height: 13px;
    stroke: var(--wp--preset--color--teal-dark);
    fill: none;
    stroke-width: 2.5;
    transition: stroke 0.2s;
}

.rl-acc-item.is-open .rl-acc-arrow svg {
    stroke: #ffffff;
}

.rl-acc-body {
    display: none;
    padding: 4px 24px 22px;
}

.rl-acc-item.is-open .rl-acc-body {
    display: block;
}

.rl-acc-a {
    font-size: 15px;
    color: var(--wp--preset--color--charcoal);
    line-height: 1.75;
    opacity: 0.82;
}

/* --------------------------------
   8. SOCIÁLNÍ SDÍLENÍ
-------------------------------- */
.rl-social {
    background-color: var(--wp--preset--color--navy);
    padding: 72px 0;
    text-align: center;
}

.rl-social h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--wp--preset--color--white);
    margin: 0 0 10px;
}

.rl-social p {
    font-size: 15px;
    color: rgba(250,250,241,0.65);
    margin: 0 0 32px;
}

.rl-share-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.rl-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    line-height: 1;
}

.rl-share-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.rl-share-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.rl-share-btn--fb  { background: #1877F2; color: #fff !important; }
.rl-share-btn--wa  { background: #25D366; color: #fff !important; }
.rl-share-btn--copy {
    background: rgba(255,255,255,0.12);
    color: var(--wp--preset--color--white) !important;
    border: 1px solid rgba(255,255,255,0.22);
}

.rl-share-btn--copy.is-copied {
    background: var(--wp--preset--color--teal);
    border-color: transparent;
}

/* --------------------------------
   9. MINI FOOTER
-------------------------------- */
.rl-footer {
    background-color: var(--wp--preset--color--charcoal);
    padding: 36px 0;
    text-align: center;
}

.rl-footer p {
    font-size: 14px;
    color: rgba(250,250,241,0.55);
    margin: 0;
    line-height: 1.6;
}

.rl-footer a {
    color: var(--wp--preset--color--teal-light);
    text-decoration: none;
}

.rl-footer a:hover {
    text-decoration: underline;
    color: var(--wp--preset--color--teal);
}

/* --------------------------------
   RESPONSIVE
-------------------------------- */
@media (max-width: 1024px) {
    .rl-dates-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .rl-section { padding-top: 72px; }
    .rl-section-inner { padding-bottom: 60px; }
    .rl-hero { padding-top: 64px; }
    .rl-hero-trust { gap: 20px; }
    .rl-signup { padding: 80px 0; }
    .rl-cards-grid { grid-template-columns: 1fr; }
    .rl-benefit-grid { grid-template-columns: 1fr; }
    .rl-checklist-grid { grid-template-columns: repeat(2, 1fr); }
    .rl-date-card { padding: 28px 22px; }
    .rl-price-main { font-size: 34px; }
    .rl-acc-q { font-size: 15px; }
}

@media (max-width: 480px) {
    .rl-container { padding: 0 16px; }
    .rl-hero-cta { flex-direction: column; align-items: stretch; }
    .rl-hero-cta .rl-btn { text-align: center; }
    .rl-checklist-grid { grid-template-columns: 1fr 1fr; }
    .rl-share-row { flex-direction: column; align-items: center; }
}
