/* mn25_css/beans.css */
/* עיצוב מודרני לדף "פולים מול טחון" - Mazon Nahon 2025 */

:root {
    --beans-brown: #4e342e;
    --beans-dark: #3e2723;
    --alert-red: #d32f2f;
    --alert-bg: #ffebee;
    --fresh-green: #2e7d32;
    --gold: #ffd700;
    --light-cream: #fff8e1;
}

body {
    background-color: var(--light-cream);
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- 1. HERO SECTION (New Image) --- */
.hero-beans {
    position: relative;
    height: 60vh; /* גובה מרשים */
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 5px solid var(--gold);
}

/* תמונת הרקע בנפרד כדי לאפשר היפוך */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../mn25_images/beans/coffee-beans_and_grounded.jpg');
    background-size: cover;
    background-position: center;
    /* היפוך אופקי כדי שהחלק ה"עמוס" יהיה משמאל והטקסט מימין */
    transform: scaleX(-1); 
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: right;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 600px;
    line-height: 1.5;
}

/* --- 2. ANALOGY SECTION (Apple - 40/60 Split) --- */
.analogy-section {
    padding: 80px 20px;
    background-color: white;
}

.grid-analogy {
    display: grid;
    /* יחס של 60% טקסט, 40% תמונה - התמונה גדולה יותר */
    grid-template-columns: 1.5fr 1fr; 
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 1.3rem;
    color: #333;
    line-height: 1.6;
}

.apple-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15); /* צל עמוק יותר */
    transition: transform 0.3s;
}

.apple-img:hover {
    transform: scale(1.02);
}

/* --- 3. DIRTY SECRET SECTION --- */
.dirty-secret-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.warning-box {
    border: 3px solid var(--alert-red);
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.warning-box h2 {
    color: var(--alert-red);
    margin-top: 0;
    font-size: 2.2rem;
}

.evidence-list ul {
    list-style-type: none;
    padding: 0;
}

.evidence-list li {
    position: relative;
    padding-right: 35px;
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 1.1rem;
}

.evidence-list li::before {
    content: '❌';
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 1.2rem;
}

.evidence-img {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ref-link {
    font-size: 0.9rem;
    color: #0277bd;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
    font-weight: bold;
}
.ref-link:hover { text-decoration: underline; }





/* Fix for the Israeli Case image positioning */
.israeli-case-item {
    display: block; /* Ensures the container takes full width */
}

.evidence-img-container {
    margin-top: 15px;
    max-width: 400px; /* Limits image width so it doesn't scream at the user */
    display: block;
}

/* Remove the old grid layout for this specific section so it flows naturally */
.evidence-container {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}




/* --- 4. BRIDGE SECTION (Supermarket Trap) --- */
.bridge-section {
    background-color: var(--beans-dark);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.bridge-content {
    max-width: 800px;
    margin: 0 auto;
    border: 2px dashed rgba(255,255,255,0.3);
    padding: 30px;
    border-radius: 15px;
}

.bridge-content h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-top: 0;
}

.bridge-content p {
    font-size: 1.2rem;
    line-height: 1.6;
}

/* --- 5. SCIENCE SECTION (Video & Particles) --- */
.science-visual-section {
    padding: 80px 20px;
    background-color: var(--beans-brown);
    color: white;
    text-align: center;
}

.science-visual-section h2 { 
    color: var(--gold); 
    font-size: 2.5rem;
}

.science-video {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    border: 4px solid rgba(255,255,255,0.1);
    background: black;
}

.caption-white {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 10px;
}

.highlight-green {
    color: var(--fresh-green);
    background: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: bold;
}

/* --- 6. HEAT SECTION --- */
.heat-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #1a0f00, #4e342e);
    color: white;
}

.heat-img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 100, 0, 0.3); /* זוהר כתום של חום */
    border: 2px solid #ff5722;
}

/* --- 7. RITUAL SECTION --- */
.ritual-section {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.big-quote {
    font-size: 2rem;
    font-weight: bold;
    color: var(--fresh-green);
    margin-bottom: 20px;
}

.ritual-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 40px auto;
}

.ritual-video {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.btn-beans {
    background-color: var(--beans-brown);
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 15px 50px;
    font-size: 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    margin-top: 40px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(78, 52, 46, 0.4);
}

.btn-beans:hover {
    background-color: var(--gold);
    color: var(--beans-brown);
    transform: translateY(-3px);
}

/* --- UTILITIES --- */
.container { max-width: 1100px; margin: 0 auto; }

.grid-2-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: right; 
}

.caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    text-align: center;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .hero-beans {
        height: auto;
        padding: 100px 20px;
        text-align: center;
    }
    
    .hero-content { text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    
    .grid-2-center, .grid-analogy, .ritual-box {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .warning-box { padding: 25px; }
    .apple-img { margin-bottom: 20px; }
}
/* --- עיצוב יוקרתי ומואר לטקס ה-15 שניות --- */
.premium-ritual {
    background-color: #ffffff; /* רקע לבן ונקי */
    padding: 30px;
    border-radius: 15px;
    border-right: 4px solid var(--gold); /* קו זהב אלגנטי */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* צל רך */
}

/* עיצוב כותרת הפנים */
.premium-ritual .big-quote {
    color: var(--beans-brown);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

/* עיצוב פסקאות הטקסט הרגילות בתיבה */
.premium-ritual p:not(.big-quote):not(.ritual-highlight) {
    font-size: 1.15rem;
    color: #444; 
    line-height: 1.6;
    margin-bottom: 15px;
}

/* הדגשת משפט הסיום (שקט נפשי) */
.premium-ritual .ritual-highlight {
    font-weight: bold;
    color: var(--fresh-green); 
    background-color: #f0f9f0; /* רקע ירקרק בהיר מאוד */
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #c8e6c9;
}