/* ---------------------------------------------------------
   Thrive & Glow — Organic Feminine Blogger Theme
   Sage • Medium Blush • Soft Minimal Wellness Style
----------------------------------------------------------*/

/* GLOBAL RESET + BASE TYPOGRAPHY */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #FAF8F5;
    font-family: 'Inter', sans-serif;
    color: #555;
    line-height: 1.7;
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------------------------------------------------
   HEADER + NAVIGATION
----------------------------------------------------------*/

.header {
    background: #FFFFFF;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #EDEDED;
    position: sticky;
    top: 0;
    z-index: 99;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #7C9B78; /* soft sage */
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #7C9B78;
    font-weight: 600;
}

/* ---------------------------------------------------------
   HERO SECTIONS
----------------------------------------------------------*/

.hero {
    position: relative;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
}

.hero-overlay.center h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.45);
}

.hero-overlay.center p {
    font-size: 18px;
    margin-top: 10px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

/* ---------------------------------------------------------
   INTRO SPLIT SECTION
----------------------------------------------------------*/

.intro-section {
    display: flex;
    gap: 40px;
    width: 85%;
    max-width: 1150px;
    margin: 70px auto;
    align-items: center;
}

.intro-img img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.intro-text h2 {
    font-family: 'Playfair Display', serif;
    color: #7C9B78;
    margin-bottom: 15px;
    font-size: 32px;
}

.intro-text p {
    margin-bottom: 20px;
}

.button-sage {
    padding: 12px 24px;
    background: #7C9B78;
    color: #FFF;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.button-sage:hover {
    opacity: 0.85;
}

/* ---------------------------------------------------------
   FEATURE GRID
----------------------------------------------------------*/

.feature-grid {
    width: 85%;
    max-width: 1150px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.feature-card {
    background: #FFFFFF;
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #F2E8EA; /* soft blush */
    transition: 0.3s ease;
}

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

.feature-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    color: #7C9B78;
    margin-top: 15px;
    font-size: 22px;
}

/* ---------------------------------------------------------
   CIRCLE IMAGE ROW
----------------------------------------------------------*/

.circle-row {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 50px auto;
}

.circle-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #EED7D9; /* blush */
    transition: 0.3s ease;
}

.circle-img:hover {
    transform: scale(1.05);
}

/* ---------------------------------------------------------
   SLIDESHOW
----------------------------------------------------------*/

.slideshow {
    width: 90%;
    max-width: 900px;
    margin: 40px auto 70px;
}

.slideshow-container {
    position: relative;
}

.slide {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
    display: none;
}

.slide.active {
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    padding: 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s ease;
}

.prev:hover, .next:hover {
    background: rgba(255,255,255,1);
}

.prev { left: -20px; }
.next { right: -20px; }

/* ---------------------------------------------------------
   CONTACT PAGE
----------------------------------------------------------*/

.contact-section {
    width: 85%;
    max-width: 1150px;
    margin: 70px auto;
    display: flex;
    gap: 45px;
}

.contact-img img {
    width: 100%;
    border-radius: 14px;
}

.contact-text h2 {
    font-family: 'Playfair Display', serif;
    color: #7C9B78;
    margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #DDD;
    margin-bottom: 14px;
    font-size: 16px;
}

/* ---------------------------------------------------------
   MEDITATION AUDIO
----------------------------------------------------------*/

.meditation {
    text-align: center;
    margin: 60px auto;
}

.meditation h2 {
    font-family: 'Playfair Display', serif;
    color: #7C9B78;
    margin-bottom: 14px;
}

/* ---------------------------------------------------------
   FOOTER
----------------------------------------------------------*/

.footer {
    background: #FFFFFF;
    padding: 20px;
    text-align: center;
    color: #777;
    margin-top: 70px;
}

/* ---------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------*/

@media (max-width: 850px) {

    .intro-section,
    .contact-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-img {
        height: 320px;
    }

    .hero-overlay.center h1 {
        font-size: 36px;
    }

    .circle-row {
        flex-wrap: wrap;
    }

    .prev, .next {
        display: none; /* hide buttons on mobile */
    }
}