===========================
    GLOBAL STYLES
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7f9fc;
    color: #333;
}

/* ===========================
    NAVBAR
=========================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #333;
    text-decoration: none;
}

.nav-right a {
    margin-left: 24px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: 0.2s;
}

.nav-right a:hover {
    color: #4a54d1;
}

/* ===========================
    PAGE CONTENT WRAPPER
=========================== */
.content {
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

/* ===========================
    HERO SECTION
=========================== */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom right, #dfe7ff, #eef1ff);
    border-radius: 20px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: #333;
}

.hero p {
    font-size: 18px;
    margin-top: 10px;
    color: #555;
}

.btn, .cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #4a54d1;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn:hover, .cta-btn:hover {
    background: #343ec9;
}
/* ======= Premium Action-style Calendar ======= */

.calendar-hero {
    background: linear-gradient(135deg, #fff8e7, #eef6ff);
    border-radius: 16px;
    padding: 36px 20px;
    margin-bottom: 28px;
    text-align: center;
}

.calendar-hero .cal-title {
    font-size: 32px;
    font-weight: 700;
    color: #2a3568;
    margin-bottom: 6px;
}

.calendar-hero .cal-sub {
    color: #555;
    margin-bottom: 14px;
}

.month-form {
    margin-top: 14px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.month-form select {
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.08);
    background: white;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* weekday header */
.weekday-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto 12px auto;
    color: #666;
    font-weight: 700;
    padding: 0 10px;
}

/* month grid */
.month-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 10px;
}

.cell {
    min-height: 140px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #fffdf8);
    box-shadow: 0 6px 18px rgba(30,30,60,0.06);
    padding: 14px;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease;
    overflow: hidden;
}

.cell.empty {
    background: transparent;
    box-shadow: none;
}

/* date top */
.date {
    font-weight: 700;
    color: #2a3568;
    font-size: 18px;
    margin-bottom: 8px;
}

/* entry text */
.entry {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quote {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    max-height: 5.4em; /* limit height for longer quotes */
    overflow: hidden;
    text-overflow: ellipsis;
}

.action {
    font-size: 13px;
    color: #666;
    background: rgba(74,84,209,0.06);
    padding: 8px;
    border-radius: 8px;
    font-weight: 600;
}

/* hover */
.cell:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(30,30,60,0.10);
}

/* responsive */
@media (max-width: 900px) {
    .cell { min-height: 120px; padding: 12px; }
    .date { font-size: 16px; }
    .quote { font-size: 13px; }
    .month-form { display: block; }
    .month-form select { width: 48%; }
}

/* ===========================
    CALENDAR
=========================== */
.page-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

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

.day-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
    transition: 0.25s;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.day-number {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.day-text {
    color: #555;
    font-size: 15px;
    line-height: 1.4;
}

/* ===========================
    KINDNESS IDEAS
=========================== */
.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 30px;
}

.idea-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
    transition: 0.25s;
}

.idea-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.idea-card p {
    font-size: 16px;
    color: #444;
}

/* ===========================
    STRESS TECHNIQUES
=========================== */
.stress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.stress-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
    transition: 0.25s;
}

.stress-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.stress-card h3 {
    color: #4a54d1;
    margin-bottom: 10px;
}

/* ===========================
    EMOTIONS PAGE
=========================== */
.emotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.emotion-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
    transition: 0.25s;
    border-left: 6px solid #ccc;
}

.emotion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.icon {
    font-size: 38px;
    margin-bottom: 12px;
}

/* Color categories */
.positive { border-left-color: #00b894; }
.challenging { border-left-color: #d63031; }
.neutral { border-left-color: #0984e3; }

/* ===========================
    ABOUT PAGE
=========================== */
.about-section {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.about-box {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 14px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    text-align: left;
}

.about-box h2 {
    color: #4a54d1;
    margin-bottom: 10px;
}

/* ===========================
    FOOTER
=========================== */
.footer {
    text-align: center;
    padding: 18px;
    margin-top: 50px;
    color: #555;
}
.logo img,
.logo-img {
    height: 45px;    /* adjust size */
    width: auto;
    vertical-align: middle;
}
/* BEAUTIFUL HERO DESIGN */
.hero {
    text-align: center;
    padding: 100px 30px;
    border-radius: 20px;
    background: linear-gradient(to bottom right, #eef3ff, #f8fbff);
    animation: fadeIn 1s ease-in-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2a3568;
    margin-bottom: 20px;
    animation: slideDown 1.2s ease;
}

.hero-subtitle {
    font-size: 22px;
    color: #444;
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto 20px auto;
    line-height: 1.55;
}

.highlight {
    background: linear-gradient(90deg, #ff9a9e, #fad0c4, #a1c4fd, #c2e9fb);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 700;
    animation: glow 3s infinite alternate ease-in-out;
}

.hero-text {
    font-size: 18px;
    color: #555;
    max-width: 620px;
    margin: 20px auto;
    line-height: 1.6;
    opacity: 0.85;
}

.hero-btn {
    margin-top: 25px;
    padding: 14px 34px;
    border-radius: 10px;
    font-size: 18px;
    background: #5a6dff;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #4456e6;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-25px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    from { opacity: 0.7; }
    to   { opacity: 1; }
}
/* ================================
   PREMIUM ABOUT PAGE (APPLE STYLE)
================================ */

.about-hero {
    text-align: center;
    padding: 120px 20px 80px;
}

.about-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    background: linear-gradient(90deg, #4d6fff, #5ac8fa);
    -webkit-background-clip: text;
    color: transparent;
}

.about-hero p {
    max-width: 700px;
    margin: 20px auto;
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards;
}

.delay {
    animation-delay: 0.3s;
}

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

/* ABOUT SECTIONS */
.about-block {
    max-width: 950px;
    margin: 60px auto;
    padding: 50px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.about-block.alt {
    background: #f5f7ff;
}

.section-title {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2a3568;
}

.section-text {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
}

/* Clean list */
.clean-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.clean-list li {
    font-size: 18px;
    margin: 12px 0;
    color: #333;
    background: #eef1ff;
    padding: 12px 18px;
    border-radius: 12px;
}

/* Offer Grid */
.offer-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.offer-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Final message */
.about-last {
    text-align: center;
    max-width: 700px;
    margin: 80px auto;
    font-size: 22px;
    color: #333;
    line-height: 1.7;
    font-weight: 500;
}

/* ======================================
   PREMIUM APPLE-STYLE HOMEPAGE DESIGN
====================================== */

/* Fullscreen Hero */
.hero-pro {
    text-align: center;
    padding: 140px 30px;
    background: linear-gradient(145deg, #eef2ff, #ffffff);
}

.hero-pro-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    background: linear-gradient(90deg, #4d6fff, #5ac8fa);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.hero-pro-sub {
    font-size: 22px;
    max-width: 780px;
    margin: 0 auto;
    color: #444;
    line-height: 1.6;
    opacity: 0.9;
    margin-top: 10px;
}

.hero-pro-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 36px;
    background: #5a6dff;
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.25s ease;
}

.hero-pro-btn:hover {
    background: #4557ea;
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.hero-pro-btn.small {
    font-size: 16px;
    padding: 12px 26px;
}

/* Feature Grid */
.home-feature-grid {
    max-width: 1100px;
    margin: 80px auto;
    padding: 20px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.feature-pro {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.feature-pro:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.feature-pro h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2a3568;
    margin-bottom: 10px;
}

.feature-pro p {
    color: #555;
    margin-bottom: 20px;
}

.feature-link {
    text-decoration: none;
    color: #4d6fff;
    font-weight: 600;
}

/* Daily Happiness Section */
.daily-pro {
    text-align: center;
    padding: 80px 20px;
    background: #f5f7ff;
    border-radius: 20px;
    max-width: 1100px;
    margin: 50px auto;
}

.daily-pro h2 {
    font-size: 32px;
    color: #2a3568;
    margin-bottom: 12px;
}

.daily-pro p {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

/* Smooth Fade Animations */
.fade-top {
    opacity: 0;
    animation: fadeFromTop 1.2s ease forwards;
}

.fade-top.delay {
    animation-delay: 0.3s;
}

.fade-top.delay2 {
    animation-delay: 0.6s;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

.fade-in.delay {
    animation-delay: 0.25s;
}

.fade-in.delay2 {
    animation-delay: 0.45s;
}

@keyframes fadeFromTop {
    from { opacity: 0; transform: translateY(-18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
/* HERO */
.ideas-hero {
    background: linear-gradient(135deg, #fff3e0, #ffe6ea);
    border-radius: 18px;
    padding: 60px 20px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.ideas-title {
    font-size: 34px;
    font-weight: 700;
    color: #3f3d56;
}

.ideas-sub {
    font-size: 16px;
    margin-top: 10px;
    color: #555;
}

/* RIBBON */
.quote-ribbon {
    background: #fff7f2;
    padding: 14px;
    text-align: center;
    font-style: italic;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 30px;
    color: #444;
}

/* GRID */
.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* CARD */
.idea-card {
    background: white;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.25s ease;
}

.idea-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 42px rgba(0,0,0,0.08);
}

.idea-accent {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ffb347, #ff6f91);
    border-radius: 12px;
    margin-bottom: 16px;
}

.idea-text {
    font-size: 17px;
    color: #333;
    font-weight: 600;
    margin-bottom: 18px;
}

/* BUTTONS */
.idea-actions {
    display: flex;
    gap: 10px;
}

.idea-btn {
    flex: 1;
    padding: 10px 6px;
    border-radius: 10px;
    border: none;
    background: #f2f2f2;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.idea-btn:hover {
    background: #e8e8e8;
}

.try-btn {
    background: #ffe5c2;
}

.try-btn:hover {
    background: #ffd7a3;
}

.save-btn {
    background: #e3f4ff;
}

.save-btn:hover {
    background: #d5ecff;
}

.share-btn {
    background: #ffe1e9;
}

.share-btn:hover {
    background: #ffd2de;
}

/* MODAL */
.kindness-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

.kindness-modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 16px;
    top: 10px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

.modal-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.modal-idea {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-quote {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.modal-btn {
    padding: 12px 24px;
    background: linear-gradient(90deg, #ffb347, #ff6f91);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
}

.modal-btn:hover {
    opacity: 0.9;
}

/* HERO */
.ideas-hero {
    background: linear-gradient(135deg, #fff3e0, #ffe6ea);
    border-radius: 18px;
    padding: 60px 20px;
    margin-bottom: 40px;
    text-align: center;
}

.try-today-main-btn {
    margin-top: 20px;
    padding: 14px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    background: linear-gradient(90deg, #ffb347, #ff6f91);
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(255,150,150,0.3);
}

.try-today-main-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(255,150,150,0.4);
}

/* MODAL */
.kindness-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.kindness-modal-content {
    background: white;
    width: 90%;
    max-width: 480px;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
}

.modal-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.modal-idea {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.modal-quote {
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.modal-btn {
    padding: 12px 20px;
    background: linear-gradient(90deg, #ffb347, #ff6f91);
    border-radius: 10px;
    border: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.modal-close {
    position: absolute;
    right: 16px;
    top: 10px;
    font-size: 26px;
    border: none;
    background: none;
    cursor: pointer;
}
/* DAILY KINDNESS CHALLENGE */
.kindness-challenge {
    margin-top: 60px;
    background: linear-gradient(135deg, #fff9f3, #fff0f7);
    padding: 50px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.kc-title {
    font-size: 28px;
    font-weight: 700;
    color: #3f3d56;
    margin-bottom: 10px;
}

.kc-sub {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

.kc-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.kc-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.kc-list li {
    background: #fdf2e9;
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    border-left: 5px solid #ffb347;
    color: #444;
    transition: 0.25s ease;
}

.kc-list li:hover {
    background: #ffe7d2;
    transform: translateX(5px);
}

.kc-btn {
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(90deg, #ffb347, #ff6f91);
    border: none;
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

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

/* KINDNESS STORIES */
.kindness-stories {
    margin-top: 60px;
    text-align: center;
}

.kindness-stories h2 {
    font-size: 28px;
    font-weight: 700;
}

.stories-sub {
    color: #666;
    margin-bottom: 30px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.story-card {
    background: white;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.07);
    text-align: left;
    transition: 0.3s ease;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

/* SELF KINDNESS */
.self-kindness {
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #fff7f2, #ffeaf7);
    border-radius: 18px;
}

.self-list {
    max-width: 500px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.self-list li {
    padding: 12px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    font-weight: 500;
}

/* KINDNESS METER */
.kindness-meter {
    text-align: center;
    margin-top: 60px;
}

.kindness-meter span {
    font-size: 32px;
    cursor: pointer;
    margin: 0 6px;
    transition: 0.2s;
}

.kindness-meter span:hover {
    transform: scale(1.2);
}

.meter-status {
    margin-top: 10px;
    color: #444;
}

/* REFLECTION */
.reflection {
    margin-top: 60px;
    padding: 40px 20px;
}

.reflection-list {
    list-style: none;
    max-width: 500px;
    margin: auto;
    padding: 0;
}

.reflection-list li {
    padding: 12px;
    border-left: 4px solid #ffb347;
    background: #fff7ef;
    margin-bottom: 10px;
    border-radius: 10px;
}

/* MANTRA STRIP */
.mantra-strip {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
    background: #fff3e0;
    border-radius: 14px;
}

.mantra-strip h2 {
    font-size: 24px;
    font-weight: 700;
}

/* JOIN CTA */
.join-movement {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #e8faff, #fff3e8);
    border-radius: 18px;
}

.join-btn {
    margin-top: 14px;
    padding: 12px 26px;
    background: linear-gradient(90deg, #ffb347, #ff6f91);
    border-radius: 12px;
    border: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

/* FLOATING LOTUS EFFECT */
.lotus-floating {
    position: fixed;
    bottom: -50px;
    right: -50px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,188,188,0.15), transparent);
    filter: blur(20px);
    animation: lotusFloat 6s infinite alternate ease-in-out;
    z-index: -1;
}

@keyframes lotusFloat {
    0% { transform: translate(0,0); opacity: 0.6; }
    100% { transform: translate(-30px,-30px); opacity: 0.8; }
}
body {
    font-family: 'Poppins', sans-serif;
    background: #fafbff;
    color: #333;
}

.home-container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #fff5f5, #f3f7ff);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    margin-bottom: 60px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e2a45;
}

.hero-subtitle {
    font-size: 18px;
    margin: 20px auto;
    max-width: 700px;
    color: #555;
}

.primary-btn {
    padding: 16px 32px;
    background: #5a6dff;
    color: white;
    font-size: 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.primary-btn:hover {
    background: #4456e6;
}

/* INTRO BLOCK */
.intro-block {
    text-align: center;
    margin: 60px auto;
}

.intro-img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
}

.intro-title {
    font-size: 28px;
    font-weight: 700;
}

.intro-text {
    max-width: 600px;
    margin: 10px auto;
    color: #666;
}

/* PILLARS */
.pillars {
    display: flex;
    gap: 20px;
    margin: 60px 0;
}

.pillar-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}
.pillar-card:hover {
    transform: translateY(-6px);
}

.icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.link {
    color: #5a6dff;
    text-decoration: none;
    font-weight: 600;
}

/* QUOTE */
.quote {
    text-align: center;
    margin: 70px 0;
    font-size: 26px;
    font-weight: 600;
    color: #333;
}

/* CALENDAR PREVIEW */
.calendar-preview {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.calendar-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.month-card {
    padding: 30px 45px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.month-card:hover {
    transform: translateY(-6px);
}

/* month colors */
.jan { background: #6ea8ff; }
.feb { background: #ff7aa2; }
.mar { background: #ffd27d; }
.apr { background: #9b7aff; }

.calendar-link {
    font-weight: 600;
    text-decoration: none;
    color: #5a6dff;
}
/* FIX: remove accidental large empty space below wisdom section */
.wisdom-core {
    margin-bottom: 0px !important;
    padding-bottom: 20px !important;
}

/* Ensure no hidden/invisible blocks remain empty */
.values-grid, .why-strip {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* prevent large empty container if grid not populated */
.values-grid:empty,
.why-strip:empty {
    display: none !important;
}
/* Tightened spacing */
.calendar-preview{
  margin-top:12px;              /* reduced from 26px */
  padding-bottom:0;             /* ensures no extra empty gap */
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:12px;
}

.lotus-wrap{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:center;
  margin-top:16px;              /* reduced from 28px */
}

/* Optional: reduce bottom margin below calendar */
section[style*="margin-top:28px"]{
  margin-bottom:0 !important;
}
/* Remove extra bottom spacing below wisdom section */
.wisdom-core {
  margin-bottom: 0;
  padding-bottom: 10px;
}

.wisdom-core + section {
  margin-top: 10px !important;
}
/* CONTACT SECTION */
.contact-section {
  margin-top: 60px;
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(180deg, #fffdfb, #f8fbff);
  border-radius: 18px;
}

.contact-section h2 {
  font-size: 26px;
  font-weight: 700;
  color: #2a2f6b;
  margin-bottom: 12px;
}

.contact-section p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: #555;
  line-height: 1.6;
}

.contact-box {
  display: inline-block;
  padding: 24px 32px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-email {
  display: inline-block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #ff7a7a;
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-note {
  margin-top: 14px;
  font-size: 14px;
  color: #777;
}
.about-me {
  margin-top: 60px;
  padding: 36px 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
  text-align: center;
}

.about-me h2 {
  font-size: 26px;
  font-weight: 700;
  color: #2a2f6b;
  margin-bottom: 20px;
}

.about-me p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-me .signature {
  margin-top: 24px;
  font-style: italic;
  color: #666;
}

.about-me .signature span {
  display: block;
  margin-top: 6px;
  font-weight: 600;
  color: #444;
}
