
:root {
--primary-color: #3A4A41;
--secondary-color: #8E7F67;
--accent-color: #BF9F7E;
--background-color: #F8F4E9;
--text-color: #333333;
--light-text: #666666;
--border-color: #D3C8B6;
--highlight-color: #E6DED1;
--shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

--bp-small: 480px;
--bp-medium: 768px;
--bp-large: 1024px;
--bp-xl: 1200px;
}

body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}

img {
display: block;
max-width: 100%;
height: auto;
}

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

body {
font-family: 'Cormorant Garamond', serif;
background-color: var(--background-color);
color: var(--text-color);
line-height: 1.6;
overflow-x: hidden;
}

h1, h2, h3 {
font-family: 'Playfair Display', serif;
font-weight: 700;
color: var(--primary-color);
line-height: 1.3;
}

h1 {
font-size: 3.5rem;
margin-bottom: 0.5rem;
letter-spacing: -0.5px;
}

h2 {
font-size: 2.2rem;
margin-bottom: 1.5rem;
position: relative;
}

h2:after {
content: '';
position: absolute;
bottom: -0.5rem;
left: 0;
width: 60px;
height: 3px;
background-color: var(--accent-color);
}

h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

p {
margin-bottom: 1.5rem;
font-size: 1.1rem;
}
.footer-links {
display: flex;
justify-content: center;
align-items: center;
gap: 10px 20px;
flex-wrap: wrap;
margin-bottom: 0.75rem;
}
.footer-links a{
color: #fff;
text-decoration: none;
}
.footer-links a:hover{
color: #f5cf97;
}

.site-header {
text-align: center;
padding: 5rem 2rem;
position: relative;
margin-bottom: 3rem;
background-color: #0c6426;
}

.header-content {
max-width: 800px;
margin: 40px auto auto auto;
z-index: 1;
position: relative;
}

.site-header h1 {
color: white;
margin-bottom: 1rem;
font-size: 2.5rem;
}

.subtitle {
font-size: 1.5rem;
font-style: italic;
color: rgba(255, 255, 255, 0.9);
}

.main-nav {
position: fixed;
top: 0;
left: 0;
right: 0;
background-color: rgba(248, 244, 233, 0.95);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
z-index: 1000;
backdrop-filter: blur(5px);
}

.nav-container {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 1.2rem 2rem;
transition: padding 0.3s ease;
}
.mok-container {
padding: 2.5rem;
border-radius: 8px;
box-shadow: var(--shadow);
background-color: #fff;
max-width: 1200px;
}

.blog-section {
margin-bottom: 4rem;
}

.blog-header {
text-align: center;
margin-bottom: 3rem;
}

.blog-header h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
position: relative;
}

.blog-header h2::after {
left: 50%;
transform: translateX(-50%);
}

.blog-header p {
font-size: 1.2rem;
color: var(--light-text);
max-width: 700px;
margin: 0 auto;
}


.blog-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 2rem;
margin-top: 2rem;
}


.blog-post {
background-color: white;
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow);
transition: var(--transition);
display: flex;
flex-direction: column;
height: 100%;
}

.blog-post:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}


.blog-thumbnail {
width: 100%;
height: 200px;
overflow: hidden;
position: relative;
}

.blog-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.blog-post:hover .blog-thumbnail img {
transform: scale(1.05);
}


.blog-content {
padding: 1.8rem;
display: flex;
flex-direction: column;
flex: 1 0 auto;
}

.blog-meta {
display: flex;
gap: 1.5rem;
margin-bottom: 1rem;
font-size: 0.9rem;
color: var(--secondary-color);
}

.blog-date, .blog-category {
display: flex;
align-items: center;
}

.blog-date::before, .blog-category::before {
content: '';
width: 4px;
height: 4px;
background-color: var(--accent-color);
border-radius: 50%;
margin-right: 8px;
}

.blog-title {
margin-bottom: 1rem;
}

.blog-title a {
color: var(--primary-color);
text-decoration: none;
transition: color 0.3s ease;
}

.blog-title a:hover {
color: var(--accent-color);
}

.blog-excerpt {
font-size: 1rem;
line-height: 1.7;
color: var(--light-text);
margin-bottom: 1.5rem;
flex: 1 1 auto;
min-height: 100px;
}

.blog-read-more {
display: inline-block;
padding: 0.8rem 1.5rem;
background-color: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 4px;
font-size: 0.95rem;
transition: var(--transition);
text-align: center;
width: 100%;
margin-top: auto;
flex-shrink: 0;
}

.blog-read-more:hover {
background-color: var(--secondary-color);
transform: translateY(-2px);
}
.intro-section {
margin: 3rem 0 0 0;
}

.dream-explanations-section {
margin: 3rem 0 0 0;
}

.dream-explanation {
margin-bottom: 3.5rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--border-color);
}

.dream-explanation:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}

.dream-explanation h3 {
font-size: 1.8rem;
margin-bottom: 1.5rem;
color: var(--primary-color);
position: relative;
display: inline-block;
}

.dream-explanation h3::after {
content: '';
position: absolute;
bottom: -8px;
left: 0;
width: 50px;
height: 3px;
background-color: var(--accent-color);
}

.dream-explanation p {
font-size: 1.15rem;
line-height: 1.8;
color: var(--text-color);
}

.personal-insight-section {
background-color: #f1ebe0;
margin: 4rem 0;
}

.personal-insight-section h2 {
text-align: center;
}

.flying-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A4A41'%3E%3Cpath d='M12 19c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2s2 .9 2 2v12c0 1.1-.9 2-2 2zm-2-8v6h4v-6h-4zm-2 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'/%3E%3C/svg%3E");
}

.falling-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A4A41'%3E%3Cpath d='M12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2zm0 18c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8zm-5-8l5 5 5-5H7z'/%3E%3C/svg%3E");
}

.teeth-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A4A41'%3E%3Cpath d='M12 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2 18.5c-.9 0-1.7-.4-2.2-1.1l1.3-1.3c.3.5.7.9 1.2 1.2-.2.2-.4.3-.6.3zm0-17c-.6 0-1.1.5-1.1 1.1 0 .6.5 1.1 1.1 1.1s1.1-.5 1.1-1.1C11 2.5 10.5 2 9.9 2zm12.1 13.1c-.3-.3-.7-.4-1.1-.4-.3 0-.6.1-.9.2L14 11.7c-.1-.1-.2-.1-.3-.2-1.3-1-3.1-.9-4.3.4l-4.3 5.1c-.7.9-.3 2.2.9 2.6.5.2 1.1.3 1.6.3.7 0 1.3-.2 1.9-.6l1-1c.3-.3.7-.4 1.1-.4.3 0 .6.1.9.2l5.4 3c.5.2 1 .2 1.4.1.7-.2 1.2-.8 1.2-1.5v-4.9c-.1-.4-.5-.7-1-1.1zM7.6 17.3c-.2-.2-.3-.4-.3-.6 0-.3.3-.5.6-.5.2 0 .4.1.6.3l.8.8-1.7 1.7-.8-.8zm8.9-5.2c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.water-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A4A41'%3E%3Cpath d='M12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2zm0 18c4.42 0 8-3.58 8-8s-3.58-8-8-8-8 3.58-8 8 3.58 8 8 8zm0-14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z'/%3E%3C/svg%3E");
}

.death-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A4A41'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.exam-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A4A41'%3E%3Cpath d='M14 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z'/%3E%3C/svg%3E");
}

.old-friend {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A4A41'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}

.chase-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A4A41'%3E%3Cpath d='M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8c0-5.39-2.59-10.2-6.5-13.33zM16.59 8.59c.94.94.94 2.48 0 3.42l-2.17 2.17c-.94.94-2.48.94-3.42 0L7.41 9.41c-.94-.94-.94-2.48 0-3.42s2.48-.94 3.42 0l1.41 1.41 3.54-3.54c.94-.94 2.48-.94 3.42 0z'/%3E%3C/svg%3E");
}

.house-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A4A41'%3E%3Cpath d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8h5z'/%3E%3C/svg%3E");
}

.late-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A4A41'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
}

.school-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A4A41'%3E%3Cpath d='M22 10v6h-2v-4H4v4H2v-6h2V6c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v4h2zm-6 0h-8V8h8v2z'/%3E%3C/svg%3E");
}

.naked-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233A4A41'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm0 14.2c-2.5 0-4.71-1.28-6-3.22.03-1.99 4-3.08 6-3.08 1.99 0 5.97 1.09 6 3.08-1.29 1.94-3.5 3.22-6 3.22z'/%3E%3C/svg%3E");
}

.nav-link.active {
color: var(--accent-color);
font-weight: 600;
position: relative;
}

.nav-link.active::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 100%;
height: 2px;
background-color: var(--accent-color);
font-weight: 700;
position: relative;
}

.pagination {
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem;
margin-top: 3rem;
}
.pagination a{
padding: 0.8rem 1.2rem;
border: 1px solid var(--border-color);
background-color: white;
color: var(--primary-color);
text-decoration: none;
border-radius: 4px;
transition: var(--transition);
font-size: 0.95rem;
}
.pagination a:hover{
background-color: var(--accent-color);
color: white;
}
.pagination-btn {
padding: 0.8rem 1.2rem;
border: 1px solid var(--border-color);
background-color: white;
color: var(--primary-color);
text-decoration: none;
border-radius: 4px;
transition: var(--transition);
font-size: 0.95rem;
}


.blog-post-section {
padding: 2rem 0;
}

.blog-post-container {
max-width: 800px;
margin: 0 auto;
background-color: white;
border-radius: 12px;
overflow: hidden;
box-shadow: var(--shadow);
}


.article-header {
padding: 2.5rem 2.5rem 1.5rem;
}

.article-title {
font-size: 2.8rem;
line-height: 1.3;
margin: 1rem 0 1.5rem;
position: relative;
}

.article-title::after {
display: none;
}

.author-info {
display: flex;
align-items: center;
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid var(--border-color);
}

.author-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
background-color: var(--accent-color);
margin-right: 1rem;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
background-size: 60%;
background-position: center;
background-repeat: no-repeat;
}

.author-details h4 {
margin-bottom: 0.2rem;
font-family: 'Playfair Display', serif;
font-size: 1.2rem;
color: var(--primary-color);
}

.author-bio {
font-size: 0.95rem;
color: var(--secondary-color);
margin-bottom: 0;
}


.featured-image {
width: 100%;
height: auto;
max-height: 500px;
overflow: hidden;
}

.featured-image img {
width: 100%;
height: auto;
object-fit: cover;
transition: transform 0.5s ease;
}

.featured-image:hover img {
transform: scale(1.02);
}


.article-content {
padding: 2.5rem;
}

.article-content p {
margin-bottom: 1.8rem;
font-size: 1.15rem;
line-height: 1.8;
}

.article-content h3 {
font-size: 1.8rem;
margin: 2.5rem 0 1.5rem;
position: relative;
padding-bottom: 0.5rem;
}

.article-content h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background-color: var(--accent-color);
}

.article-content h4 {
font-size: 1.4rem;
margin: 2rem 0 1rem;
color: var(--secondary-color);
font-family: 'Playfair Display', serif;
}

.article-content ul {
margin: 0 0 1.8rem 2rem;
}

.article-content li {
margin-bottom: 1rem;
font-size: 1.1rem;
line-height: 1.7;
}

.article-content ul li::marker {
color: var(--accent-color);
font-size: 1.2rem;
}


.article-footer {
padding: 0 2.5rem 2.5rem;
display: flex;
flex-wrap: wrap;
gap: 2rem;
border-top: 1px solid var(--border-color);
margin-top: 1rem;
padding-top: 2rem;
}

.article-tags,
.article-share {
flex: 1;
min-width: 250px;
}

.article-tags h4,
.article-share h4 {
margin-bottom: 1rem;
font-family: 'Playfair Display', serif;
font-size: 1.2rem;
color: var(--primary-color);
}

.tags-container {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
}

.tag {
display: inline-block;
padding: 0.5rem 1rem;
background-color: var(--highlight-color);
color: var(--primary-color);
text-decoration: none;
border-radius: 20px;
font-size: 0.9rem;
transition: var(--transition);
}

.tag:hover {
background-color: var(--accent-color);
color: white;
transform: translateY(-2px);
}

.share-buttons {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
}

.share-btn {
display: inline-block;
padding: 0.5rem 1rem;
background-color: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 4px;
font-size: 0.9rem;
transition: var(--transition);
}

.share-btn:hover {
background-color: var(--secondary-color);
transform: translateY(-2px);
}


.related-articles {
padding: 2.5rem;
background-color: var(--highlight-color);
}

.related-articles h3 {
margin-bottom: 2rem;
text-align: center;
position: relative;
}

.related-articles h3::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 50px;
height: 3px;
background-color: var(--accent-color);
}


.comments-section {
padding: 2.5rem;
}

.comments-section h3 {
margin-bottom: 2rem;
position: relative;
}

.comments-section h3::after {
content: '';
position: absolute;
bottom: -10px;
left: 0;
width: 50px;
height: 3px;
background-color: var(--accent-color);
}

.comment {
display: flex;
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--border-color);
}

.comment:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}

.comment-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: var(--accent-color);
margin-right: 1.2rem;
flex-shrink: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
background-size: 60%;
background-position: center;
background-repeat: no-repeat;
}

.comment-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.8rem;
}

.comment-author {
font-family: 'Playfair Display', serif;
font-size: 1.1rem;
color: var(--primary-color);
margin-bottom: 0;
}

.comment-date {
font-size: 0.9rem;
color: var(--secondary-color);
}

.comment-text {
margin-bottom: 0;
font-size: 1rem;
line-height: 1.7;
}


.comment-form {
margin-top: 3rem;
}

.comment-form h4 {
margin-bottom: 1.5rem;
font-family: 'Playfair Display', serif;
font-size: 1.3rem;
color: var(--primary-color);
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--primary-color);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 0.8rem;
border: 1px solid var(--border-color);
border-radius: 4px;
font-family: 'Cormorant Garamond', serif;
font-size: 1rem;
transition: var(--transition);
background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent-color);
box-shadow: 0 0 0 2px rgba(178, 159, 126, 0.2);
}

.submit-comment {
display: inline-block;
padding: 0.9rem 1.8rem;
background-color: var(--primary-color);
color: white;
border: none;
border-radius: 4px;
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
cursor: pointer;
transition: var(--transition);
}

.submit-comment:hover {
background-color: var(--secondary-color);
transform: translateY(-2px);
}
.interpretation-article{
font-size: 1.2rem;
}
.interpretation-content ul,
.interpretation-content ol {
margin-bottom: 1.5rem;
padding-left: 1rem;
}
.interpretation-content img{
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
border-radius: 12px;
}
.interpretation-article h2{
font-size: 1.8rem;
margin-bottom: 1.8rem;
}
.interpretation-article h3{
font-size: 1.3rem;
}
.interpretation-article h4{
margin-bottom: 1rem;
}
.interpretation-article blockquote{
margin-bottom: 1rem;
background-color: #faebd7;
padding: 5px 10px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.interpretation-article em,.interpretation-article b,.interpretation-article i,.interpretation-article span{
color: brown;
}
.interpretation-article li{
color: #008b8b;
list-style: none;
}
.interpretation-article p{
font-size: 1.2rem;
}
.interpretation-content table {
border-top: 3px solid #fd9000;
border-bottom: 3px solid #fd9000;
margin: 10px 0;
width: 100%;
border-collapse: collapse;
table-layout: fixed;

}
.interpretation-content td {
border: 1px dashed #dfdfdf;
background-color: #f5f5f5;
font-weight: bold;
color: #b8860b;
}
.interpretation-content th{
border-left: 1px dashed #dfdfdf;
border-right: 1px dashed #dfdfdf;
border-bottom: 1px dashed #dfdfdf;
background-color: #c27106;
font-weight: bold;
color: #e6e6e6;
}
.interpretation-content th, .interpretation-content td {
text-align: center;
}


@media (max-width: 768px) {
.blog-post-container {
margin: 0 1rem;
}

.article-header,
.article-content,
.article-footer,
.related-articles,
.comments-section {
padding: 1.5rem;
}

.article-title {
font-size: 2.2rem;
}

.article-content h3 {
font-size: 1.5rem;
}

.article-content h4 {
font-size: 1.2rem;
}

.article-footer {
flex-direction: column;
gap: 1.5rem;
}

.featured-image {
max-height: 300px;
}

.comment-header {
flex-direction: column;
align-items: flex-start;
gap: 0.5rem;
}
.header-content.show {
margin: 20px auto auto auto;
}

}

.pagination-btn:hover {
background-color: var(--highlight-color);
border-color: var(--accent-color);
}

.pagination-btn.active {
background-color: var(--primary-color);
color: white;
border-color: var(--primary-color);
}

.pagination-btn.prev, .pagination-btn.next {
display: flex;
align-items: center;
}

.pagination-btn.prev::before {
content: '←';
margin-right: 5px;
}

.pagination-btn.next::after {
content: '→';
margin-left: 5px;
}

.pagination-ellipsis {
padding: 0 1rem;
color: var(--light-text);
}


@media (max-width: 1024px) {
.blog-post {
max-width: 100%;
}

.blog-grid {
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.blog-header h2 {
font-size: 2.2rem;
}

.blog-title {
font-size: 1.3rem;
}
}

@media (max-width: 768px) {
.blog-section {
padding: 0 1.5rem;
}

.blog-grid {
grid-template-columns: 1fr;
}

.blog-post {
max-width: 100%;
}

.blog-header h2 {
font-size: 1.8rem;
}

.blog-header p {
font-size: 1.1rem;
}

.blog-thumbnail {
height: 200px;
}

.blog-content {
padding: 1.5rem;
}

.pagination {
flex-wrap: wrap;
gap: 0.5rem;
}

.pagination-btn {
padding: 0.6rem 1rem;
font-size: 0.9rem;
}

.pagination-ellipsis {
padding: 0 0.5rem;
}
}

@media (max-width: 480px) {
.blog-section {
padding: 0 1rem;
}

.blog-header h2 {
font-size: 1.6rem;
}

.blog-header p {
font-size: 1rem;
}

.blog-thumbnail {
height: 180px;
}

.blog-content {
padding: 1.2rem;
}

.blog-meta {
flex-direction: column;
gap: 0.5rem;
}

.blog-excerpt {
font-size: 0.95rem;
}

.pagination-btn {
padding: 0.5rem 0.8rem;
font-size: 0.85rem;
}

.blog-title {
font-size: 1.2rem;
}


.pagination-btn:nth-child(5),
.pagination-btn:nth-child(6) {
display: none;
}
}


.share-dream-section {
margin-top: 3rem;
}

.dream-sharing-container {
background: linear-gradient(rgba(58, 74, 65, 0.85), rgba(58, 74, 65, 0.9)), url('https://www.dictionnaire-des-reves.fr/skin/img/bg2.webp');
background-size: cover;
background-position: center;
padding: 3rem;
border-radius: 12px;
box-shadow: var(--shadow);
text-align: center;
position: relative;
overflow: hidden;
color: white;
}

.dream-sharing-container::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 5px;
background: linear-gradient(90deg, #3A4A41, #5C6D64, #3A4A41);
}

.dream-sharing-container h2 {
font-family: 'Playfair Display', serif;
color: #F8F4E9;
font-size: 2rem;
margin-bottom: 1rem;
font-weight: 700;
position: relative;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.dream-sharing-container h2::after {
display: none;
}
.animals-section h2::after {
display: none;
}

.dream-sharing-container p {
color: #FCFAF7;
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 2rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.share-dream-btn {
display: inline-block;
background-color: #F8F4E9;
color: #3A4A41;
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
font-weight: 600;
padding: 0.8rem 2rem;
border-radius: 50px;
text-decoration: none;
transition: all 0.3s ease;
border: 2px solid #F8F4E9;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.share-dream-btn:hover {
background-color: #E8DED1;
color: #3A4A41;
transform: translateY(-3px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
border-color: #E8DED1;
}


.common-dreams-section {
background-color: #F8F4E9;
padding: 3rem 0;
margin-top: 1rem;
}

.common-dreams-section h2 {
text-align: center;
margin-bottom: 3rem;
color: #3A4A41;
font-family: 'Playfair Display', serif;
font-size: 2rem;
font-weight: 700;
position: relative;
}

.common-dreams-section h2::after {
content: "";
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background-color: #A67C52;
}

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

.dream-category {
background-color: white;
border-radius: 12px;
padding: 2rem 1.5rem;
text-align: center;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
border-top: 4px solid transparent;
}
.dream-category h3 a{
color: #3A4A41;
text-decoration: none;
}
#flying-dream, #falling-dream, #teeth-dream, #water-dream, #death-dream, #exam-dream, #old-friend, #chase-dream {
scroll-margin-top: 100px;
}
.read-more {
display: flex;
background-color: #5f9ea0;
border-radius: 12px;
padding: 10px 20px;
justify-content: center;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
font-size: 1.2rem;
width: 100%;
}
.read-more a{
color: #FFF;
text-decoration: none;
}
.read-more :hover{
font-weight: bold;
}
.dream-category:hover {
transform: translateY(-5px);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
border-top-color: #A67C52;
}

.dream-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
}


.dream-interpretation-section {
background-color: #F8F4E9;
padding: 4rem 0;
margin-top: 1rem;
}

.dream-interpretation-section .page-title {
text-align: center;
margin-bottom: 3rem;
color: #3A4A41;
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
font-weight: 700;
position: relative;
}

.dream-interpretation-section .page-title::after {
content: "";
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background-color: #A67C52;
}

.interpretation-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}

.interpretation-block {
background-color: white;
border-radius: 12px;
padding: 2.5rem;
margin-bottom: 3rem;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
border-left: 4px solid #A67C52;
}

.interpretation-block h2 {
color: #3A4A41;
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
margin-bottom: 1.5rem;
font-weight: 600;
}

.interpretation-block h3 {
color: #5A6A61;
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
margin: 1.5rem 0 1rem;
font-weight: 600;
}

.interpretation-block p {
margin-bottom: 1.2rem;
line-height: 1.8;
color: #444;
}

.interpretation-block ul,
.interpretation-block ol {
margin: 1rem 0 1.5rem 2rem;
}

.interpretation-block li {
margin-bottom: 0.8rem;
line-height: 1.7;
}

.interpretation-block ul li::marker {
color: #A67C52;
}

.interpretation-chart {
background-color: #F8F8F4;
border-radius: 8px;
padding: 2rem;
margin: 1.5rem 0;
border: 1px solid #D3C8B6;
}

.interpretation-chart h4 {
color: #3A4A41;
font-size: 1.2rem;
margin-bottom: 1rem;
text-align: center;
}

.symbol-table {
width: 100%;
border-collapse: collapse;
margin: 1.5rem 0;
}

.symbol-table th,
.symbol-table td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid #D3C8B6;
}

.symbol-table th {
background-color: #F0EBE2;
font-weight: 600;
color: #3A4A41;
}

.symbol-table tr:hover {
background-color: #F8F8F4;
}

.reference-section {
background-color: #F8F8F4;
border-radius: 12px;
padding: 2rem;
margin-top: 2rem;
border: 1px solid #D3C8B6;
}

.reference-section h4 {
color: #3A4A41;
font-size: 1.2rem;
margin-bottom: 1rem;
font-weight: 600;
}

.reference-section ul {
margin-left: 1.5rem;
}

.reference-section li {
margin-bottom: 0.5rem;
font-size: 0.95rem;
color: #555;
}


@media (max-width: var(--bp-medium)) {
.dream-interpretation-section {
padding: 2rem 0;
}

.dream-interpretation-section .page-title {
font-size: 2rem;
}

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

.interpretation-block {
padding: 1.5rem;
margin-bottom: 2rem;
}

.interpretation-block h2 {
font-size: 1.5rem;
}

.interpretation-block h3 {
font-size: 1.2rem;
}
}


.flying-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A4A41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19l7-7 3 3-7 7-3-3z'%3E%3C/path%3E%3Cpath d='M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z'%3E%3C/path%3E%3Cpath d='M2 2l7.586 7.586'%3E%3C/path%3E%3Ccircle cx='11' cy='11' r='2'%3E%3C/circle%3E%3C/svg%3E");
}

.falling-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A4A41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='8' y1='12' x2='12' y2='16'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='16' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12' y2='16'%3E%3C/line%3E%3C/svg%3E");
}

.teeth-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A4A41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8h1a4 4 0 0 1 0 8h-1'%3E%3C/path%3E%3Cpath d='M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z'%3E%3C/path%3E%3Cline x1='6' y1='1' x2='6' y2='4'%3E%3C/line%3E%3Cline x1='10' y1='1' x2='10' y2='4'%3E%3C/line%3E%3Cline x1='14' y1='1' x2='14' y2='4'%3E%3C/line%3E%3C/svg%3E");
}

.water-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A4A41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'%3E%3C/path%3E%3Cpolyline points='7 10 12 15 17 10'%3E%3C/polyline%3E%3Cline x1='12' y1='15' x2='12' y2='3'%3E%3C/line%3E%3C/svg%3E");
}

.death-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A4A41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'%3E%3C/circle%3E%3Ccircle cx='15.5' cy='8.5' r='1.5'%3E%3C/circle%3E%3Cpath d='M7 17v-2'%3E%3C/path%3E%3Cpath d='M7 13h10'%3E%3C/path%3E%3Cpath d='M17 17v-2'%3E%3C/path%3E%3C/svg%3E");
}

.exam-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A4A41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.old-friend {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A4A41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'%3E%3C/path%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'%3E%3C/path%3E%3C/svg%3E");
}

.chase-dream {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A4A41' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='4'%3E%3C/circle%3E%3Cpath d='M4.93 4.93l.7.7'%3E%3C/path%3E%3Cpath d='M18.36 18.36l.7.7'%3E%3C/path%3E%3Cpath d='M4.93 19.07l.7-.7'%3E%3C/path%3E%3Cpath d='M18.36 5.64l.7-.7'%3E%3C/path%3E%3C/svg%3E");
}

.dream-category h3 {
font-family: 'Playfair Display', serif;
color: #3A4A41;
font-size: 1.3rem;
margin-bottom: 0.8rem;
font-weight: 600;
}

.dream-category p {
color: #5C6D64;
font-size: 1rem;
line-height: 1.5;
margin: 0;
}


@media (max-width: 768px) {
.common-dreams-section {
padding: 1rem 0;
}

.common-dreams-grid {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1.5rem;
}

.dream-category {
padding: 1.5rem 1rem;
}

.dream-icon {
width: 60px;
height: 60px;
}

.dream-category h3 {
font-size: 1.2rem;
}
.dream-sharing-container{
padding: 2rem 1rem;
}
.site-header h1 {
font-size: 1.6rem;
}
.dream-sharing-container h2{
font-size: 1.4rem;
}

}


.nightmares-section {
background: linear-gradient(135deg, #0A312A 0%, #1A1A1A 100%);
padding: 4rem 0;
position: relative;
overflow: hidden;
border-radius: 8px;
margin: 40px auto;
}

.nightmares-section .container {
position: relative;
z-index: 1;
}

.nightmares-section h2 {
text-align: center;
margin-bottom: 2.5rem;
color: #F8F4E9;
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
font-weight: 700;
position: relative;
}

.nightmares-section h2::after {
content: "";
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background-color: #A67C52;
}

.nightmares-description {
color: #E8DED1;
font-size: 1.1rem;
line-height: 1.7;
text-align: center;
max-width: 800px;
margin: 0 auto 3rem;
font-style: italic;
}

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

.nightmare-category {
background-color: rgba(255, 255, 255, 0.05);
border-radius: 12px;
padding: 2rem 1.5rem;
text-align: center;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.nightmare-category:hover {
transform: translateY(-5px);
background-color: rgba(255, 255, 255, 0.08);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
border-color: rgba(166, 124, 82, 0.3);
}

.nightmare-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
opacity: 0.9;
}


.falling-icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A67C52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E");
}

.being-chased-icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A67C52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'%3E%3C/path%3E%3C/svg%3E");
}

.teeth-falling-icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A67C52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 8h1a4 4 0 0 1 0 8h-1'%3E%3C/path%3E%3Cpath d='M2 8h16v9a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V8z'%3E%3C/path%3E%3Cline x1='6' y1='1' x2='6' y2='4'%3E%3C/line%3E%3Cline x1='10' y1='1' x2='10' y2='4'%3E%3C/line%3E%3Cline x1='14' y1='1' x2='14' y2='4'%3E%3C/line%3E%3C/svg%3E");
}

.death-icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A67C52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'%3E%3C/path%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'%3E%3C/path%3E%3C/svg%3E");
}

.being-lost-icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A67C52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='16'%3E%3C/line%3E%3Cline x1='8' y1='12' x2='16' y2='12'%3E%3C/line%3E%3C/svg%3E");
}

.exams-icon {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A67C52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7.5L14.5 2z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.nightmare-category h3 {
font-family: 'Playfair Display', serif;
color: #A67C52;
font-size: 1.3rem;
margin-bottom: 0.8rem;
font-weight: 600;
}

.nightmare-category p {
color: #E8DED1;
font-size: 1rem;
line-height: 1.5;
margin: 0;
}

.nightmares-insight {
text-align: center;
max-width: 700px;
margin: 0 auto;
padding: 2rem;
background-color: rgba(255, 255, 255, 0.03);
border-radius: 12px;
border-left: 3px solid #A67C52;
}

.nightmares-insight p {
color: #F8F4E9;
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 1.5rem;
}

.nightmares-btn {
display: inline-block;
background-color: transparent;
color: #A67C52;
border: 2px solid #A67C52;
padding: 0.8rem 1.8rem;
font-size: 1rem;
font-weight: 600;
border-radius: 6px;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
}

.nightmares-btn:hover {
background-color: #A67C52;
color: #1A1A1A;
transform: translateY(-2px);
box-shadow: 0 8px 15px rgba(166, 124, 82, 0.3);
}


@media (max-width: 768px) {
.nightmares-section {
padding: 3rem 0;
}

.nightmares-section h2 {
font-size: 2rem;
}

.nightmares-grid {
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.5rem;
}

.nightmare-category {
padding: 1.5rem 1rem;
}
}


.symbols-section {
padding: 4rem 0;
margin: 40px auto;
border-radius: 8px;
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #0A312A 0%, #1A1A1A 100%);
box-shadow: var(--shadow);
}

.symbols-section .container {
position: relative;
z-index: 1;
}

.symbols-title {
color: #F8F4E9;
font-size: 2.5rem;
text-align: center;
margin-bottom: 2.5rem;
font-weight: 700;
position: relative;
font-family: 'Playfair Display', serif;
}

.symbols-title::after {
content: "";
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background-color: #A67C52;
}

.symbols-description {
color: #E8DED1;
text-align: center;
max-width: 700px;
margin: 0 auto 3rem;
font-size: 1.1rem;
line-height: 1.6;
font-style: italic;
}


.symbols-timeline {
position: relative;
max-width: 1200px;
margin: 0 auto 3rem;
}


.symbols-timeline::after {
content: '';
position: absolute;
width: 4px;
background: linear-gradient(to bottom, #A67C52, #D4B483);
top: 0;
bottom: 0;
left: 50%;
margin-left: -2px;
border-radius: 2px;
}


.symbol-item {
padding: 10px 40px;
position: relative;
width: 50%;
box-sizing: border-box;
}


.symbol-item.left {
left: 0;
}

.symbol-item.right {
left: 50%;
}


.symbol-content {
padding: 2rem;
background-color: rgba(255, 255, 255, 0.05);
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.symbol-content::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(to right, #A67C52, #D4B483);
}

.symbol-content:hover {
transform: translateY(-5px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
border-color: rgba(166, 124, 82, 0.3);
background-color: rgba(255, 255, 255, 0.08);
}


.symbol-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(255, 255, 255, 0.08);
border-radius: 50%;
border: 2px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}

.symbol-content:hover .symbol-icon {
transform: scale(1.1);
border-color: #A67C52;
box-shadow: 0 0 20px rgba(166, 124, 82, 0.3);
}

.symbol-icon svg {
width: 40px;
height: 40px;
fill: #A67C52;
transition: fill 0.3s ease;
}

.symbol-content:hover .symbol-icon svg {
fill: #D4B483;
}

.symbol-content h3 {
color: #A67C52;
font-size: 1.4rem;
margin-bottom: 1rem;
text-align: center;
font-weight: 600;
font-family: 'Playfair Display', serif;
}

.symbol-content p {
color: #E8DED1;
font-size: 1rem;
line-height: 1.6;
margin: 0;
text-align: center;
}


.symbol-item::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
right: -10px;
background-color: #1A1A1A;
border: 4px solid #A67C52;
top: 15px;
border-radius: 50%;
z-index: 1;
transition: all 0.3s ease;
}

.symbol-item.right::after {
left: -10px;
}

.symbol-item:hover::after {
transform: scale(1.3);
box-shadow: 0 0 15px rgba(166, 124, 82, 0.5);
}


.symbols-insights {
text-align: center;
max-width: 700px;
margin: 0 auto;
padding: 2rem;
background-color: rgba(255, 255, 255, 0.03);
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
border-left: 3px solid #A67C52;
}

.symbols-insights h3 {
color: #A67C52;
font-size: 1.5rem;
margin-bottom: 1rem;
font-weight: 600;
font-family: 'Playfair Display', serif;
}

.symbols-insights p {
color: #F8F4E9;
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 1.5rem;
}

.symbols-more-btn {
display: inline-block;
background-color: transparent;
color: #A67C52;
border: 2px solid #A67C52;
padding: 0.8rem 1.8rem;
font-size: 1rem;
font-weight: 600;
border-radius: 6px;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(166, 124, 82, 0.2);
}

.symbols-more-btn:hover {
background-color: #A67C52;
color: #1A1A1A;
transform: translateY(-2px);
box-shadow: 0 8px 15px rgba(166, 124, 82, 0.3);
}


@media (max-width: 992px) {
.symbols-section {
padding: 3rem 0;
}

.symbols-title {
font-size: 2rem;
}

.symbol-icon {
width: 70px;
height: 70px;
}

.symbol-icon svg {
width: 35px;
height: 35px;
}

.symbol-content h3 {
font-size: 1.2rem;
}

.symbol-content p {
font-size: 0.95rem;
}
}

@media (max-width: 768px) {

.symbols-timeline::after {
left: 31px;
}


.symbol-item {
width: 100%;
padding-left: 70px;
padding-right: 25px;
}


.symbol-item.right {
left: 0;
}


.symbol-item::after {
left: 19px;
right: auto;
}

.symbol-item.right::after {
left: 19px;
}


.symbol-content {
padding: 1.5rem;
}

.symbols-title {
font-size: 1.8rem;
}

.symbols-description {
font-size: 1rem;
padding: 0 1rem;
}

.symbols-insights {
margin: 0 1rem;
padding: 1.5rem;
}

.symbols-insights h3 {
font-size: 1.3rem;
}

.symbols-insights p {
font-size: 1rem;
}

.symbols-more-btn {
padding: 0.7rem 1.5rem;
font-size: 0.9rem;
}
}

@media (max-width: 480px) {
.symbols-section {
padding: 2rem 0;
}

.symbols-title {
font-size: 1.6rem;
}

.symbol-icon {
width: 60px;
height: 60px;
}

.symbol-icon svg {
width: 30px;
height: 30px;
}

.symbol-content {
padding: 1.2rem;
}

.symbol-content h3 {
font-size: 1.1rem;
}

.symbol-content p {
font-size: 0.9rem;
}

.symbols-insights {
padding: 1.2rem;
}


.symbols-timeline::after {
width: 3px;
}

.symbol-item {
padding-left: 60px;
padding-right: 15px;
}

.symbol-item::after {
width: 16px;
height: 16px;
border-width: 3px;
}
}

.nightmare-icon {
width: 60px;
height: 60px;
}

.nightmare-category h3 {
font-size: 1.2rem;
}

.nightmares-insight {
padding: 1.5rem;
}



.animals-section {
padding: 2rem 0;
border-radius: 8px;
position: relative;
overflow: hidden;
}


.animals-section .container {
position: relative;
z-index: 1;
}

.animals-section .section-title {
color: #3A4A41;
font-size: 2.5rem;
text-align: center;
margin-bottom: 1.5rem;
font-weight: 700;
position: relative;
}

.animals-section .section-description {
color: #5C6D64;
text-align: center;
max-width: 700px;
margin: 0 auto 3rem;
font-size: 1.1rem;
line-height: 1.6;
}

.animal-categories {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}

.animal-card {
background: white;
border-radius: 8px;
padding: 2rem;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
border-top: 4px solid transparent;
}

.animal-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
border-top-color: #A67C52;
}

.animal-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
background: #F5F9F7;
border-radius: 50%;
}

.animal-card h3 {
color: #3A4A41;
font-size: 1.4rem;
margin-bottom: 1rem;
text-align: center;
font-weight: 600;
}

.animal-card p {
color: #5C6D64;
line-height: 1.6;
text-align: justify;
}

.animal-insights {
background: white;
border-radius: 8px;
padding: 2.5rem;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
text-align: center;
}

.animal-insights h3 {
color: #3A4A41;
font-size: 1.8rem;
margin-bottom: 1.5rem;
font-weight: 600;
}

.animal-insights p {
color: #5C6D64;
max-width: 800px;
margin: 0 auto 2rem;
line-height: 1.6;
font-size: 1.1rem;
}

.animal-more-btn {
display: inline-block;
padding: 0.8rem 2rem;
background: #3A4A41;
color: white;
text-decoration: none;
border-radius: 4px;
font-weight: 500;
transition: all 0.3s ease;
border: 2px solid #3A4A41;
}

.animal-more-btn:hover {
background: white;
color: #3A4A41;
box-shadow: 0 4px 12px rgba(58, 74, 65, 0.2);
}


.cat-icon svg {
width: 50px;
height: 50px;
fill: #5C6D64;
}

.dog-icon svg {
width: 50px;
height: 50px;
fill: #5C6D64;
}

.bird-icon svg {
width: 50px;
height: 50px;
fill: #5C6D64;
}

.snake-icon svg {
width: 50px;
height: 50px;
fill: #5C6D64;
}

.lion-icon svg {
width: 50px;
height: 50px;
fill: #5C6D64;
}

.elephant-icon svg {
width: 50px;
height: 50px;
fill: #5C6D64;
}


@media (max-width: 768px) {
.animals-section .section-title {
font-size: 2rem;
}

.animal-categories {
grid-template-columns: 1fr;
}

.animal-insights {
padding: 1.5rem;
}

.animal-insights h3 {
font-size: 1.5rem;
}
}

.logo a {
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--primary-color);
text-decoration: none;
transition: color 0.3s ease;
white-space: nowrap;
}

.logo a:hover {
color: var(--accent-color);
}

.nav-links {
display: flex;
gap: 2rem;
list-style: none;
transition: all 0.3s ease;
}

.nav-link {
color: var(--primary-color);
text-decoration: none;
font-size: 1.1rem;
font-weight: 500;
transition: color 0.3s ease;
position: relative;
padding: 0.5rem 0;
}

.nav-link:hover {
color: var(--accent-color);
}

.nav-link:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: var(--accent-color);
transition: width 0.3s ease;
}

.nav-link:hover:after {
width: 100%;
}

.dropdown {
position: relative;
}

.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
background-color: var(--background-color);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
border-radius: 4px;
list-style: none;
padding: 0.5rem 0;
margin: 0.5rem 0 0;
min-width: 200px;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
z-index: 1000;
}

.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.dropdown-item {
display: block;
color: var(--primary-color);
text-decoration: none;
font-size: 1rem;
padding: 0.75rem 1.5rem;
transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
background-color: var(--secondary-color);
color: #fff;
}


.menu-toggle {
display: none;
flex-direction: column;
justify-content: space-between;
width: 30px;
height: 21px;
background: transparent;
border: none;
cursor: pointer;
z-index: 1001;
padding: 0;
}

.toggle-icon {
display: block;
width: 100%;
height: 3px;
background-color: var(--primary-color);
border-radius: 3px;
transition: all 0.3s ease;
}


@media (max-width: 768px) {
.menu-toggle {
display: flex;
}

.nav-links {
position: fixed;
top: 0;
right: -100%;
flex-direction: column;
gap: 0;
width: 80%;
height: 100vh;
background-color: var(--background-color);
padding: 80px 2rem 2rem;
box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
transition: right 0.4s ease;
overflow-y: auto;
}

.nav-links.active {
right: 0;
}

.nav-link {
padding: 1rem 0;
font-size: 1.2rem;
border-bottom: 1px solid var(--border-color);
}

.dropdown {
position: relative;
}

.dropdown-menu {
position: static;
display: none;
background-color: rgba(255, 255, 255, 0.95);
box-shadow: none;
border-radius: 0;
margin: 0;
min-width: 100%;
opacity: 1;
visibility: visible;
transform: none;
}

.dropdown.active .dropdown-menu {
display: block;
}

.dropdown-item {
padding: 0.75rem 1.5rem;
font-size: 1.1rem;
border-bottom: 1px solid var(--border-color);
}

.nav-link:last-child {
border-bottom: none;
}


.menu-toggle.active .toggle-icon:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .toggle-icon:nth-child(2) {
opacity: 0;
}

.menu-toggle.active .toggle-icon:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}

.nav-container {
padding: 1rem 1.5rem;
}

.logo a {
font-size: 1.2rem;
}


.site-header {
margin-top: 60px;
}
}


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


.search-container {
display: flex;
max-width: 600px;
margin: 0 auto 3rem auto;
position: relative;
}

#search-input {
flex: 1;
padding: 1rem 1.5rem;
font-size: 1.1rem;
border: 1px solid var(--border-color);
border-radius: 4px 0 0 4px;
background-color: white;
font-family: inherit;
}

#search-button {
padding: 1rem 2rem;
background-color: var(--primary-color);
color: white;
border: none;
border-radius: 0 4px 4px 0;
cursor: pointer;
font-size: 1.1rem;
font-family: inherit;
transition: background-color 0.3s ease;
}

#search-button:hover {
background-color: #2a3730;
}


.alphabet-nav {
background-color: white;
padding: 2rem;
border-radius: 8px;
box-shadow: var(--shadow);
margin-bottom: 3rem;
}

.nav-title {
text-align: center;
margin-bottom: 1.5rem;
font-size: 1.8rem;
}

.nav-title:after {
left: 50%;
transform: translateX(-50%);
}

.alphabet-buttons {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: center;
}


.alphabet-btn {
padding: 0.75rem 1.25rem;
background-color: var(--background-color);
color: var(--primary-color);
border: 1px solid var(--border-color);
border-radius: 4px;
cursor: pointer;
font-size: 1.1rem;
font-family: 'Playfair Display', serif;
transition: all 0.3s ease;
-webkit-tap-highlight-color: transparent;
touch-action: manipulation;
text-decoration: none;
}

.alphabet-btn:hover {
background-color: var(--accent-color);
color: white;
border-color: var(--accent-color);
transform: translateY(-2px);
}


.alphabet-btn:active {
transform: translateY(0);
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}


@media (hover: none) and (pointer: coarse) {
.alphabet-btn,
.nav-link,
#search-button {
min-height: 48px;
min-width: 48px;
}
}

.alphabet-btn.active {
background-color: var(--primary-color);
color: white;
border-color: var(--primary-color);
}


.dream-content {
background-color: white;
padding: 2.5rem;
border-radius: 8px;
box-shadow: var(--shadow);
}

.current-letter {
margin-bottom: 2rem;
font-size: 2.5rem;
}



.dream-entries {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 2rem;
}

.dream-entry {
background-color: #F8F4E9;
padding: 1.5rem;
border-radius: 6px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dream-entry:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dream-title {
font-size: 1.4rem;
margin-bottom: 0.75rem;
color: var(--primary-color);
border-bottom: 1px solid rgba(142, 127, 103, 0.3);
padding-bottom: 0.5rem;
}
.dream-title a{
color: var(--primary-color);
text-decoration: none;
}
.dream-description {
color: var(--light-text);
font-size: 1rem;
}

.loading-message {
grid-column: 1 / -1;
text-align: center;
padding: 3rem;
color: var(--light-text);
font-style: italic;
font-size: 1.2rem;
}

.no-results {
grid-column: 1 / -1;
text-align: center;
padding: 3rem;
color: var(--light-text);
}


.recent-updates-section {
margin-top: 3rem;
padding: 2rem 0;
background-color: var(--background-color);
border-radius: 8px;
}

.recent-updates-section h2 {
color: var(--text-color);
text-align: center;
margin-bottom: 1.5rem;
font-family: 'Playfair Display', serif;
font-size: 1.8rem;
}

.recent-updates-section h2:after {
display: none;
}

.recent-updates-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
max-width: 1200px;
margin: 0 auto;
}

.update-item {
flex: 1;
min-width: 300px;
max-width: 100%;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 8px;
padding: 1.5rem;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.update-item:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.update-item h3 {
color: var(--primary-color);
margin-top: 0;
margin-bottom: unset;
font-family: 'Playfair Display', serif;
font-size: 1.3rem;
}
.update-item h3 a{
color: var(--primary-color);
text-decoration: none;
}


@media (max-width: 768px) {
.recent-updates-section {
padding: 1.5rem 0;
}

.recent-updates-section h2 {
font-size: 1.5rem;
}

.recent-updates-list {
gap: 1rem;
}

.update-item {
flex: 1 1 100%;
padding: 1.2rem;
}

.update-content h3 {
font-size: 1.2rem;
}
}


.site-footer {
background-color: var(--primary-color);
color: white;
padding: 3rem 0;
margin-top: 4rem;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
text-align: center;
}

.site-footer p {
margin-bottom: 0.75rem;
opacity: 0.9;
}


@media (max-width: 1024px) {
h1 {
font-size: 3rem;
}

h2 {
font-size: 2rem;
}

.site-header {
padding: 4rem 2rem;
}

.dream-entries {
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
}

@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}

h2 {
font-size: 1.8rem;
}

.site-header {
padding: 1rem 1.5rem;
}

.container {
padding: 0 1rem;
}

.alphabet-buttons {
gap: 0.4rem;
}

.alphabet-btn {
padding: 0.6rem 1rem;
font-size: 1rem;
}

.dream-entries {
grid-template-columns: 1fr;
}

.dream-content {
padding: 1.5rem;
}


.dream-entry-content {
display: flex;
flex-direction: column;
gap: 1rem;
}

.dream-thumbnail {
width: 100%;
height: 180px;
}

.dream-thumbnail img {
width: 100%;
height: 100%;
object-fit: cover;
}
.nav-links{
line-height: 40px;
}
}

@media (max-width: 480px) {
h1 {
font-size: 2rem;
}

h2 {
font-size: 1.6rem;
}

.subtitle {
font-size: 1.1rem;
}

.search-container {
flex-direction: column;
width: 100%;
}

#search-input,
#search-button {
border-radius: 4px;
width: 100%;
}

#search-button {
margin-top: 0.75rem;
}

.alphabet-nav,
.dream-content {
padding: 1.2rem;
}

.alphabet-btn {
padding: 0.5rem 0.7rem;
font-size: 0.9rem;
min-width: 35px;
}


.dream-title {
font-size: 1.2rem;
}

.dream-description {
font-size: 0.95rem;
line-height: 1.5;
}
}


.breadcrumb {
margin-bottom: 2rem;
padding: 1rem 0;
border-bottom: 1px solid var(--border-color);
}

.breadcrumb a {
color: var(--secondary-color);
text-decoration: none;
transition: var(--transition);
}

.breadcrumb a:hover {
color: var(--accent-color);
}

.breadcrumb span {
color: var(--light-text);
margin: 0 0.5rem;
}


.main-layout {
display: flex;
gap: 2rem;
align-items: flex-start;
}

.main-content {
flex: 1;
order: 1;
}

.sidebar {
flex: 0 0 300px;
order: 2;
}


.sidebar-section {
background-color: white;
border-radius: 12px;
padding: 1.5rem;
margin-bottom: 2rem;
box-shadow: var(--shadow);
transition: var(--transition);
}

.sidebar-section:hover {
transform: translateY(-2px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.sidebar-section h3 {
color: var(--primary-color);
font-family: 'Playfair Display', serif;
font-size: 1.3rem;
margin-bottom: 1.5rem;
padding-bottom: 0.8rem;
border-bottom: 1px solid var(--border-color);
}


.recommended-articles .recommended-article {
display: flex;
margin-bottom: 1.2rem;
gap: 1rem;
align-items: flex-start;
transition: var(--transition);
}

.recommended-articles .recommended-article:hover {
transform: translateX(5px);
}

.recommended-articles .recommended-article:last-child {
margin-bottom: 0;
}

.recommended-image {
flex: 0 0 80px;
height: 80px;
overflow: hidden;
border-radius: 8px;
}

.recommended-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}

.recommended-article:hover .recommended-image img {
transform: scale(1.05);
}

.recommended-article a {
color: var(--primary-color);
text-decoration: none;
font-weight: 500;
display: block;
margin-bottom: 0.5rem;
line-height: 1.4;
transition: var(--transition);
font-size: 1.2rem;
}

.recommended-article a:hover {
color: var(--accent-color);
}



.tags {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
}

.tags a {
background-color: var(--background-color);
color: var(--primary-color);
padding: 0.4rem 0.8rem;
border-radius: 20px;
font-size: 0.9rem;
text-decoration: none;
transition: var(--transition);
}

.tags a:hover {
background-color: var(--accent-color);
color: white;
transform: translateY(-2px);
}

.show-main {
margin-top: -40px;
}
.sidebar.show {
width: 100%;
}
.sidebar-section ul {
list-style: none;
padding: 0;
}

.sidebar-section li {
margin-bottom: 1rem;
}

.sidebar-section li:last-child {
margin-bottom: 0;
}

.sidebar-section li a {
color: var(--accent-color);
text-decoration: none;
display: flex;
align-items: center;
gap: 0.8rem;
transition: var(--transition);
}

.sidebar-section li a:hover {
color: var(--primary-color);
transform: translateX(5px);
}

.sidebar-section li a span:first-child {
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
background-color: var(--background-color);
border-radius: 50%;
}


.social-share {
margin: 2rem 0;
padding: 1.5rem;
background-color: var(--background-color);
border-radius: 12px;
text-align: center;
transition: var(--transition);
}

.social-share:hover {
transform: translateY(-3px);
box-shadow: var(--shadow);
}

.social-share h3 {
color: var(--primary-color);
font-family: 'Playfair Display', serif;
margin-bottom: 1.5rem;
}

.social-buttons {
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
}

.social-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
color: white;
border-radius: 50%;
font-size: 1.2rem;
text-decoration: none;
transition: var(--transition);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.facebook {
background-color: #1877F2;
}

.social-btn.twitter {
background-color: #1DA1F2;
}

.social-btn.linkedin {
background-color: #0077B5;
}

.social-btn.pinterest {
background-color: #E60023;
}

.social-btn.email {
background-color: #6C757D;
}

.social-btn.whatsapp {
background-color: #25D366;
}


.dream-service {
background-color: var(--primary-color);
color: white;
padding: 2rem;
border-radius: 12px;
text-align: center;
margin-top: 2rem;
transition: var(--transition);
box-shadow: var(--shadow);
}

.dream-service:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dream-service h2 {
font-family: 'Playfair Display', serif;
color: white;
margin-bottom: 1rem;
font-size: 1.8rem;
}

.dream-service h2:after {
background-color: white;
transform: translateX(-50%);
left: 50%;
}

.dream-service p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.dream-service a {
display: inline-block;
background-color: #A67C52;
color: white;
font-family: 'Cormorant Garamond', serif;
font-size: 1.2rem;
font-weight: 600;
padding: 1rem 2rem;
border-radius: 8px;
text-decoration: none;
transition: var(--transition);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dream-service a:hover {
background-color: #947d5a;
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


@media (max-width: 1024px) {
.main-layout {
flex-direction: column;
}

.sidebar {
flex: 1;
order: 1;
}

.main-content {
order: 2;
}

.recommended-articles {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 1.5rem;
}

.recommended-articles .recommended-article {
margin-bottom: 0;
}
}

@media (max-width: 768px) {
.social-buttons {
gap: 0.8rem;
}

.social-btn {
width: 40px;
height: 40px;
font-size: 1.1rem;
}

.dream-service {
padding: 1.5rem;
}

.dream-service h2 {
font-size: 1.6rem;
}

.dream-service a {
padding: 0.8rem 1.5rem;
font-size: 1.1rem;
}
}

@media (max-width: 480px) {
.breadcrumb {
font-size: 0.9rem;
}

.tags {
gap: 0.4rem;
}

.tags a {
padding: 0.3rem 0.6rem;
font-size: 0.85rem;
}

.social-buttons {
gap: 0.6rem;
}

.social-btn {
width: 36px;
height: 36px;
font-size: 1rem;
}
}