body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fafafa;
    line-height: 1.7;
}
h1, h2, h3, h4, .serif, .blog-content p {
    font-family: 'Playfair Display', serif;
}
.sans {
    font-family: 'Lato', sans-serif;
}
.container-custom {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sidebar Styles */
.sidebar-widget {
    margin-bottom: 3rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}
.sidebar {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}
.widget-title {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px;
    margin-bottom: 0;
}

/* Post Content Styles */
.post-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #34848d;
    font-weight: 700;
    background: #e0f2f4;
    padding: 4px 10px;
    border-radius: 3px;
    display: inline-block;
}
.post-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 1rem 0;
    line-height: 1.3;
    color: #1a1a1a;
}
.post-date {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.post-date::before {
    content: '📅';
    font-size: 0.9rem;
}
.blog-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 1.8rem;
    text-align: justify;
}
.blog-content img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 2rem 0;
}
.image-caption {
    font-size: 0.85rem;
    font-style: italic;
    color: #888;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 35px;
}

/* Blockquote */
.custom-quote {
    padding: 2.5rem 3rem;
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-left: 5px solid #34848d;
    border-radius: 8px;
    margin: 2.5rem 0;
    font-style: italic;
}
.quote-icon {
    color: #34848d;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.7;
}

/* Form & Global Elements */
.footer-heading {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 2px solid #34848d;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}
.post-meta-small {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-input {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    width: 100%;
    outline: none;
    font-style: italic;
    color: #666;
    transition: all 0.3s;
    border-radius: 4px;
    background: white;
}
.form-input:focus {
    border-color: #34848d;
    box-shadow: 0 0 0 3px rgba(52, 132, 141, 0.1);
}
.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 30px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    transition: all 0.3s;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Gallery */
.gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.gallery-item img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.5s ease;
}
.gallery-item:hover img { 
    transform: scale(1.1); 
}

/* Social Icons Sidebar */
.social-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #999;
    transition: all 0.3s;
}
.social-circle:hover {
    border-color: #34848d;
    color: #34848d;
    transform: translateY(-3px);
}

/* Blog Cards Enhancement */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* Navbar Enhancement */
header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

@media (max-width: 1024px) {
    .main-grid { grid-template-columns: 1fr; }
    .sidebar { margin-top: 4rem; }
    .post-title { font-size: 2rem; }
}
