/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background-color: #f9f9f9;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 2rem 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

/* Page Header (Non-Hero) */
.page-header {
    background-color: #1a1a1a;
    position: relative;
    padding: 1.5rem 0;
}

.page-header .header-container {
    color: #fff;
}

.page-body {
    background-color: #fff;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

nav a {
    margin-left: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    opacity: 0.8;
}

nav a:hover,
nav a.active {
    opacity: 1;
    color: #fff;
}

.search-icon {
    margin-left: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-image: url('hero_background_v4.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    margin-left: 5%;
}

.headline {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sub-headline {
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Narrative Box */
.narrative-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2.5rem;
    max-width: 600px;
}

.narrative-box p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

.btn-read {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 5px;
    margin-top: 1rem;
}

.btn-read:hover {
    border-bottom: 1px solid #fff;
}

/* Gold Standard Section */
.gold-standard {
    padding: 8rem 0;
    background-color: #f4f4f4;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #222;
    letter-spacing: -0.5px;
}

.section-summary {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 5rem;
    color: #555;
    font-weight: 300;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
}

.content-block h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: #888;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    display: inline-block;
}

.content-block p {
    margin-bottom: 1.5rem;
    color: #444;
    font-weight: 300;
    font-size: 0.95rem;
}

/* Page Standard Layouts */
.page-content {
    padding: 4rem 0 6rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    color: #111;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* About Page */
.about-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 300;
    color: #444;
}

.about-stat {
    border-left: 1px solid #ddd;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-stat h3 {
    font-size: 4rem;
    color: #000;
    line-height: 1;
}

.about-stat span {
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: #888;
}

.gold-standard-box {
    background-color: #f8f8f8;
    padding: 3rem;
    border-left: 4px solid #1a1a1a;
}

.gold-standard-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Blog Categories Layout */
.blog-category-section {
    margin-bottom: 5rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 3rem;
}

.category-title {
    font-size: 0.9rem;
    letter-spacing: 2.5px;
    color: #999;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    /* Cleaner sans-serif for category headers */
    font-weight: 600;
}

.blog-row {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    /* Space for scrollbar if needed */
}

/* Hide scrollbar for cleaner look but keep functionality */
.blog-row::-webkit-scrollbar {
    height: 6px;
}

.blog-row::-webkit-scrollbar-thumb {
    background-color: #eee;
    border-radius: 4px;
}

.blog-card {
    min-width: 300px;
    /* Ensure cards have width in flex row */
    max-width: 350px;
    border-right: 1px solid #eee;
    /* Divider between cards */
    padding-right: 2rem;
    border-bottom: none;
    /* Reset old style */
}

.blog-card:last-child {
    border-right: none;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #1a1a1a;
}

.blog-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.read-more {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #000;
}

/* Clear old grid styles */

/* Article Layout */
.article-layout {
    max-width: 800px;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-category {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #888;
    display: block;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    border: none;
}

.article-intro {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
}

.article-body p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    font-weight: 300;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.article-body h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.8rem;
    color: #444;
}

.article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.highlight-box {
    background-color: #f4f4f4;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 3px solid #ccc;
}

.highlight-box h4 {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.highlight-box h4:first-child {
    margin-top: 0;
}

.article-footer {
    margin-top: 4rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .contact-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #555;
    font-weight: 300;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #999;
}

.contact-item p {
    font-size: 1rem;
    color: #111;
}

.minimal-form .form-group {
    margin-bottom: 2rem;
}

.minimal-form label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #888;
}

.minimal-form input,
.minimal-form select,
.minimal-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 0.5rem 0;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: transparent;
    outline: none;
    transition: 0.3s;
}

.minimal-form input:focus,
.minimal-form select:focus,
.minimal-form textarea:focus {
    border-bottom: 1px solid #000;
}

.btn-submit {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #333;
}


/* Footer Same */
footer {
    background-color: #fff;
    padding: 5rem 0;
    border-top: 1px solid #eaeaea;
}

.footer-container {
    display: flex;
    justify-content: space-between;
}

.footer-col h4 {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    color: #111;
}

.newsletter {
    flex: 2;
    padding-right: 4rem;
}

.newsletter p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.newsletter form {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    max-width: 400px;
}

.newsletter input {
    border: none;
    outline: none;
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
}

.newsletter button {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #000;
    cursor: pointer;
}

.links,
.social {
    flex: 1;
}

.links p,
.social a {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.social a:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    .content-grid,
    .about-section,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }

    .newsletter {
        padding-right: 0;
    }

    .about-stat {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #ddd;
        padding-top: 1rem;
    }
}

/* 
   ----------------------------------------
   WHY WHOLECARES SECTION
   ----------------------------------------
*/
.why-wholecares {
    padding: 6rem 0;
    background-color: #FAFAF8;
    /* Very subtle off-white/warm grey */
    text-align: center;
    border-bottom: 1px solid #eee;
}

.why-wholecares .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #111;
    letter-spacing: 0.05em;
}

.why-wholecares .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.value-card {
    text-align: left;
    padding: 0 1rem;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #222;
    position: relative;
    padding-bottom: 1rem;
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #222;
}

.value-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

/* Mobile Responsive Adjustments for Why Wholecares */
@media (max-width: 768px) {
    .why-wholecares {
        padding: 4rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .value-card {
        text-align: center;
    }

    .value-card h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* 
   ----------------------------------------
   WHATSAPP FLOATING BUTTON
   ----------------------------------------
*/
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #000;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 10px #666;
}

.whatsapp-float svg {
    margin-top: 2px;
    /* Slight adjustment for visual centering */
}