/* mn25_css/beans_ru.css */
/* Russian Version (LTR) - 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: 'Roboto', 'Segoe UI', Tahoma, Verdana, sans-serif; /* Added Roboto for Cyrillic support */
    text-align: left; /* LTR Default */
	direction: ltr; /* <--- THIS IS THE FIX for numbers and dots */
}

/* --- 1. HERO SECTION --- */
.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;
    /* REMOVED transform: scaleX(-1) because for LTR we want the original orientation usually */
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.1) 100%); /* Changed direction to RIGHT */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: left; /* LTR */
    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 --- */
.analogy-section {
    padding: 80px 20px;
    background-color: white;
}

.grid-analogy {
    display: grid;
    /* Standard LTR: Text Left, Image Right */
    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;
}

/* Russian List Adjustments */
.evidence-list li {
    position: relative;
    padding-left: 35px; /* Changed from Right to Left */
    padding-right: 0;
    margin-bottom: 25px;
    line-height: 1.5;
    font-size: 1.1rem;
}

.evidence-list li::before {
    content: '❌';
    position: absolute;
    left: 0; /* Changed from Right to Left */
    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;
}

.evidence-img-container {
    margin-top: 15px;
    max-width: 400px;
    display: block;
}

.evidence-container {
    display: block;
    max-width: 900px;
    margin: 0 auto; /* Centers the block itself, text inside is left aligned via body */
}

/* --- 4. BRIDGE SECTION --- */
.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 --- */
.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;
    text-align: left; /* Text inside grid aligned left */
}

.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: left; /* LTR */
}

.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;
    }
    
    .ritual-box { text-align: center; }

    .warning-box { padding: 25px; }
    .apple-img { margin-bottom: 20px; }
}
/* --- Premium Ritual Design (15 Seconds) --- */
.premium-ritual {
    background-color: #ffffff; /* Clean white background */
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--gold); /* Gold line on the LEFT for Russian LTR */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow */
}

/* Internal heading design */
.premium-ritual .big-quote {
    color: var(--beans-brown);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Standard paragraph design within the box */
.premium-ritual p:not(.big-quote):not(.ritual-highlight) {
    font-size: 1.15rem;
    color: #444; 
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Highlighted ending sentence (Peace of Mind) */
.premium-ritual .ritual-highlight {
    font-weight: bold;
    color: var(--fresh-green); 
    background-color: #f0f9f0; /* Very light green background */
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #c8e6c9;
}