/* Lesson 1.3: Breathings, Accents & Diphthongs - Specific Styles */

/* Main paragraph text styling to match lesson 1.2 */
.alphabet-section p,
.special-section p,
.practice-section p {
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 0.5rem;
}

.exercise-box h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.exercise-box p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Card title styling to match "Smooth Breathing ( ᾽ )" format */
.breathing-card h4,
.accent-card h4,
.special-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: none;
    padding-bottom: 0;
}

/* Study Tips List Styling */
#study-tips ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#study-tips li {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    padding-left: 0;
}

/* Widget content text styling */
.widget p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Section Styling */
.alphabet-section {
    margin-bottom: 2rem;
}

/* Iota content text */
#iota-content p {
    color: #555;
    line-height: 1.6;
    margin: 0 auto 0.5rem;
    max-width: 800px;
}

.breathing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.breathing-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.breathing-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.breathing-card h4 {
    color: #0066ff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Accent Section */
.accent-section {
    margin-bottom: 2rem;
}

.accent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.accent-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.accent-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.accent-card h4 {
    color: #0066ff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Diphthong Section */
.diphthong-section {
    margin-bottom: 2rem;
}

.diphthong-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.diphthong-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.diphthong-card:hover {
    transform: translateY(-2px);
    border-color: #0066ff;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

.diphthong-letters {
    font-size: 2rem;
    font-weight: bold;
    color: #0066ff;
    font-family: 'GFS Neohellenic', 'Times New Roman', serif;
    margin-bottom: 0.5rem;
}

.diphthong-sound {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.diphthong-example {
    font-size: 0.9rem;
}

.diphthong-example .greek-text {
    font-family: 'GFS Neohellenic', 'Times New Roman', serif;
    font-size: 1.1em;
    color: #0066ff;
    font-weight: 500;
}

/* Iota Section */
.iota-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

/* Practice Section */
.practice-section {
    margin-bottom: 2rem;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.practice-word {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: box-shadow 0.2s ease;
}

.practice-word:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.practice-word .greek-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0066ff;
    font-family: 'GFS Neohellenic', 'Times New Roman', serif;
    display: block;
    margin-bottom: 0.5rem;
}

.practice-word .pronunciation {
    font-size: 1rem;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.practice-word .meaning {
    font-size: 0.9rem;
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.practice-word .notes {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    line-height: 1.3;
}

/* Summary Section */
.summary-section {
    margin-bottom: 2rem;
}

.summary-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.summary-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.summary-box li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Examples List */
.examples-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.example-word {
    background: #f1f3f4;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    flex: 0 1 auto;
    min-width: 180px;
}

.example-word .greek-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0066ff;
    font-family: 'GFS Neohellenic', 'Times New Roman', serif;
    margin-right: 0.5rem;
}

.example-word .pronunciation {
    color: #666;
    margin-right: 0.5rem;
}

.example-word .meaning {
    color: #333;
}

/* Tip Box */
.tip-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: #856404;
}

/* Special Cards */
.special-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.special-card h4 {
    color: #0066ff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.special-card .greek-text {
    font-family: 'GFS Neohellenic', 'Times New Roman', serif;
    font-size: 1.2em;
    color: #0066ff;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .breathing-grid,
    .accent-grid {
        grid-template-columns: 1fr;
    }
    
    .diphthong-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .example-word {
        min-width: auto;
    }
}
