/* ---- JUDITH.LOVE STYLE GUIDE ---- */

:root {
    /* ---- COLOR PALETTE ---- */
    /* Neutrals for background and text */
    --color-navy: #192A3E; /* Deep navy for footer and text */
    --color-cream: #F9F6F2; /* Warm off-white for main background */
    --color-dark-text: #333333; /* Primary text color */
    --color-light-text: #FFFFFF; /* Text on dark backgrounds */

    /* Accent and Highlight Colors */
    --color-mauve: #D2B4BC; /* Primary button and soft accents */
    --color-magenta-highlight: #B3446C; /* For button hover and key links */
    --color-periwinkle-highlight: #A0A8D3; /* For subtle highlights or borders */

    /* ---- TYPOGRAPHY ---- */
    /* Fonts from the brand's vision document */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Responsive Font Sizes */
    --font-size-base: clamp(1rem, 2.5vw, 1.1rem); /* Scales with viewport */
    --font-size-h1: clamp(2.5rem, 7vw, 4.5rem);
    --font-size-h2: clamp(1.8rem, 5vw, 2.5rem);
    --font-size-h3: clamp(1.4rem, 4vw, 1.8rem);

    /* ---- DESIGN ELEMENTS ---- */
    /* Button styling */
    --button-border-radius: 30px;
    --button-padding: 12px 28px;
    --transition-speed: 0.3s ease;
}

/* ---- TOP MEDITATION SECTION ---- */
.top-meditation {
    background-color: rgba(249, 246, 242, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(210, 180, 188, 0.1);
}

.meditation-minimal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.meditation-text {
    color: var(--color-dark-text);
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.8;
}

.meditation-audio-minimal {
    height: 32px;
    width: 200px;
    opacity: 0.7;
}

.meditation-audio-minimal::-webkit-media-controls-panel {
    background-color: rgba(249, 246, 242, 0.9);
}

/* Mobile responsive top meditation */
@media (max-width: 768px) {
    .top-meditation {
        padding: 0.4rem 0;
    }
    
    .meditation-minimal {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .meditation-text {
        font-size: 0.8rem;
    }
    
    .meditation-audio-minimal {
        width: 180px;
        height: 28px;
    }
}

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

body {
    background-color: var(--color-cream);
    color: var(--color-dark-text);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: 600;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: 500;
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- BUTTON STYLES ---- */
.btn {
    display: inline-block;
    padding: var(--button-padding);
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: var(--button-border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-size: 1rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Primary Button Style (e.g., Book a Heart-to-Heart) */
.btn-primary {
    background-color: var(--color-mauve);
    color: var(--color-navy);
}

.btn-primary:hover {
    background-color: var(--color-magenta-highlight);
    color: var(--color-light-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(179, 68, 108, 0.3);
}

/* Secondary Button Style (e.g., Learn More) */
.btn-secondary {
    background-color: transparent;
    color: var(--color-navy);
    border-color: var(--color-periwinkle-highlight);
}

.btn-secondary:hover {
    background-color: var(--color-periwinkle-highlight);
    color: var(--color-navy);
}

/* ---- HEADER STYLES ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(249, 246, 242, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-speed);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-navy);
    text-decoration: none;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    color: var(--color-dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.nav-desktop a:hover {
    color: var(--color-magenta-highlight);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-navy);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    flex-direction: column;
    background-color: var(--color-cream);
    padding: 2rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: var(--color-dark-text);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(210, 180, 188, 0.3);
    transition: color var(--transition-speed);
}

.nav-mobile a:hover {
    color: var(--color-magenta-highlight);
}

.nav-mobile a:last-child {
    border-bottom: none;
    margin-top: 1rem;
}

/* ---- HERO SECTION ---- */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.judith-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Legacy video styles for fallback */
.hero-video {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-magenta-highlight) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 42, 62, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Video Control Button */
.video-control {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    z-index: 3;
    backdrop-filter: blur(10px);
}

.video-control:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.video-control svg {
    color: var(--color-light-text);
    width: 24px;
    height: 24px;
}

.hero-content {
    text-align: center;
    color: var(--color-light-text);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    color: var(--color-light-text);
    margin-bottom: 1.5rem;
}

.hero-content .highlight {
    color: var(--color-magenta-highlight);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--color-light-text);
    opacity: 0.9;
}



/* ---- INVITATION SECTION ---- */
.invitation {
    padding: 6rem 0;
    background-color: var(--color-light-text);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    margin-bottom: 2rem;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.image-content {
    display: flex;
    justify-content: center;
}

.nature-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, var(--color-mauve) 0%, var(--color-periwinkle-highlight) 100%);
    border-radius: 20px;
    opacity: 0.8;
    overflow: hidden;
    position: relative;
}

.judith-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform var(--transition-speed);
}

.judith-header-image:hover {
    transform: scale(1.05);
}

/* ---- HOW WE BEGIN SECTION ---- */
.how-we-begin {
    padding: 6rem 0;
    background-color: var(--color-cream);
    text-align: center;
}

.how-we-begin h2 {
    margin-bottom: 2rem;
}

.how-we-begin p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ---- FOOTER STYLES ---- */
.footer {
    background-color: var(--color-navy);
    color: var(--color-light-text);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content h3 {
    color: var(--color-light-text);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a {
    color: var(--color-light-text);
    transition: color var(--transition-speed);
}

.social-links a:hover {
    color: var(--color-mauve);
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info a {
    color: var(--color-mauve);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--color-light-text);
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .invitation,
    .how-we-begin {
        padding: 4rem 0;
    }
    
    .hero-text-left {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 1.5rem;
        max-width: none;
    }
    
    .hero-text-left h1 {
        font-size: 2rem;
    }
    
    .hero-text-left .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nature-image {
        height: 300px;
    }
    
    .video-control {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .video-control svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
}

/* ---- PAGE-SPECIFIC STYLES ---- */

/* Active Navigation Link */
.nav-desktop a.active,
.nav-mobile a.active {
    color: var(--color-magenta-highlight);
    font-weight: 600;
}

/* Page Hero Sections */
.page-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 42, 62, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.page-hero .hero-content {
    text-align: center;
    color: var(--color-light-text);
    max-width: 800px;
}

/* Floating Left Content */
.hero-content-floating {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text-left {
    max-width: 600px;
    padding: 2rem;
    background: rgba(25, 42, 62, 0.7);
    border-radius: 20px;
    margin-left: 4rem;
}

.hero-text-left h1 {
    color: var(--color-light-text);
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-text-left .hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-light-text);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: left;
}

.hero-text-left .hero-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-light-text);
    opacity: 0.9;
    margin-bottom: 2rem;
    text-align: left;
}

.page-hero .hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--color-light-text);
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-light-text);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.page-hero .hero-intro {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    color: var(--color-light-text);
    opacity: 0.9;
}

/* About Page Styles */
.about-hero {
    padding: 8rem 0 4rem;
    background-color: var(--color-light-text);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.judith-portrait {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--color-magenta-highlight) 0%, var(--color-periwinkle-highlight) 50%, var(--color-mauve) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.judith-portrait::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.judith-portrait-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform var(--transition-speed);
}

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

.about-text h1 {
    margin-bottom: 1rem;
}

.about-text .subtitle {
    font-size: 1.2rem;
    color: var(--color-dark-text);
    opacity: 0.8;
    font-style: italic;
}

/* Philosophy Section */
.philosophy {
    padding: 6rem 0;
    background-color: var(--color-cream);
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Values Grid */
.values {
    padding: 6rem 0;
    background-color: var(--color-light-text);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card h3 {
    color: var(--color-magenta-highlight);
    margin-bottom: 1.5rem;
}

/* Offerings Page Styles */
.offerings {
    padding: 6rem 0;
    background-color: var(--color-cream);
}

.offerings-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.offering-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background-color: var(--color-light-text);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.offering-card:nth-child(even) {
    direction: rtl;
}

.offering-card:nth-child(even) > * {
    direction: ltr;
}

.offering-image {
    display: flex;
    justify-content: center;
}

.offering-img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform var(--transition-speed);
}

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

.image-placeholder {
    width: 100%;
    height: 650px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.sessions-image {
    background: linear-gradient(45deg, var(--color-mauve) 0%, var(--color-periwinkle-highlight) 100%);
}

.salons-image {
    background: linear-gradient(45deg, var(--color-periwinkle-highlight) 0%, var(--color-magenta-highlight) 100%);
}

.ceremony-image {
    background: linear-gradient(45deg, var(--color-magenta-highlight) 0%, var(--color-mauve) 100%);
}

.deck-image {
    background: linear-gradient(45deg, var(--color-magenta-highlight) 0%, var(--color-periwinkle-highlight) 100%);
}

.guide-image {
    background: linear-gradient(45deg, var(--color-periwinkle-highlight) 0%, var(--color-mauve) 100%);
}

.divine-image {
    background: linear-gradient(45deg, var(--color-mauve) 0%, var(--color-magenta-highlight) 100%);
}

.offering-content h3 {
    margin-bottom: 1rem;
    color: var(--color-navy);
}

.offering-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-magenta-highlight);
}

.offering-note {
    font-style: italic;
    color: var(--color-dark-text);
    opacity: 0.7;
    margin-top: 1rem;
}

/* ---- CALMING SECTION ---- */
.calming-section {
    padding: 5rem 0;
    background-color: var(--color-cream);
}

.calming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.calming-text h2 {
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.calming-text p {
    color: var(--color-dark-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.calming-text p:last-child {
    margin-bottom: 0;
    font-style: italic;
}

.calming-text p:last-child:not(.calming-emphasis) {
    color: var(--color-mauve);
}

.calming-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calming-emphasis {
    color: var(--color-magenta-highlight) !important;
    font-weight: 500;
}

/* ---- ABOUT PAGE TWO-COLUMN LAYOUT ---- */

/* Section title only visible on mobile */
.section-title-mobile {
    display: none;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--color-dark-text);
    margin-bottom: 2rem;
    text-align: center;
}

/* Two-column philosophy layout */
.philosophy-content-two-col {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.philosophy-image {
    flex: 0 0 45%;
}

.judith-about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-dark-text);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    opacity: 0.8;
}

.philosophy-text-centered {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.philosophy-text-centered p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark-text);
    margin-bottom: 1.5rem;
}

.values-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--color-dark-text);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* About page CTA buttons */
.about-text {
    text-align: center;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* ---- LOVE LETTERS INVITATION SECTION ---- */

.love-letters-invite {
    background-color: rgba(210, 180, 188, 0.1);
    padding: 3rem 0;
    border-top: 1px solid rgba(210, 180, 188, 0.2);
    border-bottom: 1px solid rgba(210, 180, 188, 0.2);
}

.love-letters-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.love-letters-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-magenta-highlight);
    margin-bottom: 1rem;
    font-weight: 600;
}

.love-letters-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-dark-text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.love-letters-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-magenta-highlight);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-speed);
    display: inline-block;
}

.love-letters-link:hover {
    color: var(--color-mauve);
}

@media (max-width: 768px) {
    .love-letters-invite {
        padding: 2.5rem 1.5rem;
    }
    
    .love-letters-text {
        font-size: 1rem;
    }
}

/* ---- COMING SOON PAGE STYLES ---- */

.coming-soon {
    background-color: var(--color-cream);
    padding: 8rem 0 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.coming-soon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-image {
    margin-bottom: 3rem;
}

.logo-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.coming-soon-text {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    line-height: 1.9;
    color: var(--color-dark-text);
}

.coming-soon-text p {
    margin-bottom: 2rem;
}

.coming-soon-emphasis {
    font-style: italic;
    color: var(--color-magenta-highlight);
    font-weight: 500;
    margin-top: 3rem !important;
}

.coming-soon-cta {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .coming-soon {
        padding: 6rem 1.5rem 4rem 1.5rem;
    }
    
    .logo-image {
        max-width: 300px;
    }
    
    .coming-soon-text {
        font-size: 1rem;
    }
    
    .coming-soon-image {
        margin-bottom: 2rem;
    }
}

/* ---- COLLECTION2 PAGE OFFERINGS ---- */

.collection-offerings {
    padding: 4rem 0;
    background-color: var(--color-cream);
}

.collection-offering-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.collection-offering-card.reverse {
    flex-direction: row-reverse;
}

.offering-image-col {
    flex: 0 0 40%;
}

.offering-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.offering-text-col {
    flex: 1;
}

.offering-text-col h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    color: var(--color-dark-text);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.offering-tagline {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.offering-text-col p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-dark-text);
    margin-bottom: 1rem;
}

.offering-text-col .btn {
    margin-top: 1.5rem;
}

/* Language That Holds Section */
.language-holds {
    background-color: rgba(160, 168, 211, 0.15);
    padding: 4rem 0;
    text-align: center;
}

.language-holds-content {
    max-width: 700px;
    margin: 0 auto;
}

.language-holds h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--color-dark-text);
    margin-bottom: 2rem;
    font-weight: 400;
}

.language-holds p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark-text);
    margin-bottom: 1.5rem;
}

.language-holds .btn {
    margin-top: 1.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--color-cream);
}

.how-it-works h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--color-dark-text);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-mauve);
    margin-bottom: 1rem;
    font-weight: 300;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark-text);
    margin-bottom: 1rem;
    font-weight: 500;
}

.step-card p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-dark-text);
    opacity: 0.9;
}

/* Mobile Responsive for Collection2 */
@media (max-width: 768px) {
    .collection-offering-card,
    .collection-offering-card.reverse {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .offering-image-col {
        flex: 1;
        width: 100%;
    }
    
    .offering-text-col h3 {
        font-size: 1.8rem;
    }
    
    .offering-text-col p {
        font-size: 1rem;
    }
    
    .language-holds {
        padding: 3rem 1.5rem;
    }
    
    .language-holds p {
        font-size: 1rem;
    }
    
    .how-it-works {
        padding: 3rem 1.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ---- COLLECTION PAGE INTRO STYLING ---- */

.collection-intro {
    padding: 4rem 0;
    background-color: var(--color-cream);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    color: var(--color-dark-text);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.intro-poetry {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    line-height: 1.9;
    color: var(--color-dark-text);
}

.intro-poetry p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.intro-emphasis {
    font-style: italic;
    color: var(--color-magenta-highlight);
    font-weight: 500;
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin: 2rem 0 !important;
}

@media (max-width: 768px) {
    .collection-intro {
        padding: 3rem 1.5rem;
    }
    
    .intro-headline {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .intro-poetry {
        font-size: 1rem;
    }
    
    .intro-emphasis {
        font-size: 1.05rem;
    }
}

/* Mobile responsive for about section */
@media (max-width: 768px) {
    .section-title-mobile {
        display: block;
    }
    
    .philosophy-content-two-col {
        flex-direction: column;
        gap: 2rem;
    }
    
    .philosophy-image {
        flex: 1;
        width: 100%;
    }
    
    .philosophy-text-centered {
        text-align: center;
    }
    
    .philosophy-text-centered p {
        font-size: 1rem;
    }
}

.cat-calm-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.cat-calm-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Mobile responsive for calming section */
@media (max-width: 768px) {
    .calming-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .calming-text h2 {
        font-size: 1.5rem;
    }
    
    .cat-calm-image {
        max-width: 300px;
    }
}

/* CTA Sections */
.cta-section,
.invitation-cta,
.collection-cta {
    padding: 6rem 0;
    background-color: var(--color-navy);
    color: var(--color-light-text);
    text-align: center;
}

.cta-content h2,
.invitation-content h2 {
    color: var(--color-light-text);
    margin-bottom: 1.5rem;
}

.cta-content p,
.invitation-content p {
    color: var(--color-light-text);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

/* Collection Page Styles */
.collection-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.collection-hero .hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.collection-hero .hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.collection-intro {
    padding: 4rem 0;
    background-color: var(--color-cream);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 2rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background-color: var(--color-light-text);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.product-card {
    background-color: var(--color-cream);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-image {
    margin-bottom: 2rem;
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform var(--transition-speed);
}

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

.product-content h3 {
    margin-bottom: 1.5rem;
    color: var(--color-navy);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-magenta-highlight);
    margin: 2rem 0;
}

/* Additional Product Showcase */
.additional-product {
    padding: 6rem 0;
    background-color: var(--color-cream);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background-color: var(--color-light-text);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.showcase-content h3 {
    margin-bottom: 1.5rem;
    color: var(--color-navy);
}

/* ---- RESPONSIVE DESIGN UPDATES ---- */
@media (max-width: 768px) {
    .about-content,
    .offering-card,
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offering-card:nth-child(even) {
        direction: ltr;
    }
    
    .offering-card {
        padding: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .judith-portrait {
        height: 400px;
    }
    
    .image-placeholder {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .page-hero,
    .about-hero,
    .collection-hero {
        padding: 6rem 0 3rem;
    }
    
    .offering-card,
    .product-card,
    .product-showcase {
        padding: 1.5rem;
    }
    
    .judith-portrait {
        height: 300px;
    }
    
    .image-placeholder {
        height: 200px;
    }
}

/* ---- UTILITY CLASSES ---- */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.highlight {
    color: var(--color-magenta-highlight);
}

/* ---- TESTIMONIALS PAGE STYLES ---- */
.testimonials-hero {
    padding: 6rem 0 4rem;
    background-color: var(--color-cream);
    text-align: left;
}

.testimonials-hero h1 {
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content-left {
    text-align: left;
}

.testimonials-hero .hero-subtitle {
    color: var(--color-dark-text);
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0;
}

.testimonials {
    padding: 4rem 0;
    background-color: var(--color-light-text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--color-cream);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    color: var(--color-dark-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--color-navy);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
}

.testimonials-cta {
    padding: 4rem 0;
    background-color: var(--color-cream);
    text-align: center;
}

.testimonials-cta h2 {
    color: var(--color-navy);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.testimonials-cta p {
    color: var(--color-dark-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Mobile responsive testimonials */
@media (max-width: 768px) {
    .testimonials-hero {
        padding: 4rem 0 3rem;
    }
    
    .testimonials-hero h1 {
        font-size: 2.2rem;
    }
    
    .testimonials-hero .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .testimonials {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonials-cta {
        padding: 3rem 1rem;
    }
    
    .testimonials-cta h2 {
        font-size: 2rem;
    }
}

/* ---- FOOTER STYLES ---- */
.footer {
    background-color: var(--color-navy);
    color: var(--color-light-text);
    padding: 0;
    margin-top: 0;
}

.footer-divider {
    width: 100vw;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-content {
    padding: 1rem 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.separator {
    color: rgba(255, 255, 255, 0.4);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.contact-info a:hover {
    color: var(--color-mauve);
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer {
        margin-top: 2rem;
    }
    
    .footer-content {
        padding: 1rem 0;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .separator {
        display: none;
    }
}

/* ---- BLOG PAGE STYLES ---- */

/* Blog Hero Section */
.blog-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.blog-hero-image {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: linear-gradient(135deg, 
        rgba(160, 168, 211, 0.3) 0%, 
        rgba(210, 180, 188, 0.4) 50%, 
        rgba(249, 246, 242, 0.5) 100%),
        url('assets/images/blog-header.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.blog-hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(249, 246, 242, 0.15);
    backdrop-filter: blur(0.5px);
    padding: 6rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.blog-hero-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    padding: 2rem;
}

.blog-hero-left {
    flex: 0 0 auto;
    text-align: left;
}

.blog-hero-right {
    flex: 1;
    max-width: 700px;
}

.blog-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.blog-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.2;
}

.blog-intro-text {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: #ffffff;
}

.blog-intro-text p {
    margin-bottom: 0.5rem;
}

.blog-intro-bold {
    font-weight: 700;
}

.signature {
    font-style: italic;
    margin-top: 1rem;
    font-size: 1.1em;
}

/* Blog Posts Grid Section */
.blog-posts {
    padding: 4rem 0;
    background-color: var(--color-cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Blog Card Styles */
.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
}

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

.blog-card-image-link {
    display: block;
    text-decoration: none;
}

.blog-card-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: color var(--transition-speed);
}

.blog-card-title-link:hover {
    color: var(--color-magenta-highlight);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-category {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-magenta-highlight);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-dark-text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-weight: 500;
}

.blog-card-excerpt {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-card-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-magenta-highlight);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-speed);
    display: inline-block;
    margin-top: auto;
}

.blog-card-link:hover {
    color: var(--color-mauve);
}

/* Tablet responsive - 2 columns */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .blog-hero-image {
        min-height: 500px;
        background-attachment: scroll;
    }
}

/* Mobile responsive - 1 column */
@media (max-width: 768px) {
    .blog-hero-image {
        min-height: auto;
    }
    
    .blog-hero-overlay {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .blog-hero-content {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .blog-hero-left {
        text-align: left;
    }
    
    .blog-hero-right {
        max-width: 100%;
    }
    
    .blog-hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 0;
    }
    
    .blog-intro-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .blog-posts {
        padding: 3rem 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 1.25rem;
    }
    
    .blog-card-title {
        font-size: 1.3rem;
    }
}

/* ---- BLOG POST PAGE STYLES ---- */

.blog-post {
    background-color: var(--color-cream);
    padding: 8rem 0 4rem 0;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-dark-text);
    font-weight: 400;
    margin-bottom: 1rem;
}

.post-featured-image {
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: 8px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.post-intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-dark-text);
    margin-bottom: 2rem;
    font-style: italic;
}

.post-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-dark-text);
    margin-bottom: 0.5rem;
}

/* Related Posts Section */
.related-posts {
    max-width: 900px;
    margin: 4rem auto 2rem;
    padding: 0 2rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-post-card {
    text-decoration: none;
    display: block;
    transition: transform var(--transition-speed);
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark-text);
    text-align: center;
    font-weight: 400;
}

/* Post Navigation */
.post-navigation {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.post-nav-previous {
    flex: 1;
}

.post-nav-next {
    flex: 1;
    text-align: right;
}

.next-post,
.prev-post {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: color var(--transition-speed);
}

.next-post:hover,
.prev-post:hover {
    color: var(--color-magenta-highlight);
}

.nav-label {
    font-weight: 400;
}

.nav-arrow {
    font-size: 2rem;
    line-height: 1;
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .blog-post {
        padding: 6rem 0 2rem 0;
    }
    
    .post-header {
        margin-bottom: 1.5rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .post-featured-image {
        margin-bottom: 2rem;
    }
    
    .post-content {
        padding: 0 1.5rem;
    }
    
    .post-intro {
        font-size: 1rem;
    }
    
    .post-content p {
        font-size: 0.95rem;
    }
    
    .related-posts {
        padding: 0 1.5rem;
        margin-top: 3rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .related-post-image {
        height: 250px;
    }
    
    .post-navigation {
        padding: 1.5rem;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .post-nav-previous,
    .post-nav-next {
        text-align: center;
    }
    
    .next-post,
    .prev-post {
        font-size: 1.2rem;
    }
    
    .nav-arrow {
        font-size: 1.5rem;
    }
}
