/* Container Principal */
.caba-contatti-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica', Arial, sans-serif;
}
/* HERO */
.hero {
  position: relative;
  min-height: 55vh;
  background: url('../images/page-blog/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
 background-position: bottom;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.55), rgba(0,0,0,.15));
}

.hero__content {
  position: relative;
  max-width: 600px;
  padding: 0 8%;
  color: #fff;
}

.hero__tag {
  opacity: .7;
  font-size: 14px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 15px 0;
}

.hero p {
  line-height: 1.6;
  max-width: 600px;
}

.btn-primary {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 28px;
  background: #c46a28;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.caba-site-container {
    line-height: 1.6;
    color: var(--caba-dark);
    overflow-x: hidden;
}
/* Blog Page Wrapper */
.caba-blog-page-wrapper {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
   
}

/* Helper Classes */
.section-padding { padding: 80px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 700px; margin: 0 auto; }
.bg-dark { background-color: #1a1a1a; color: white; }
.text-center { text-align: center; }

/* Buttons (Re-used from previous designs) */
.caba-btn {
    display: inline-block;
    background: #b38b59;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.caba-btn:hover { background: #8e6e46; color: white; }

/* HERO SECTION */
.blog-hero-section {
    height: 65vh; /* Adjust height as needed */
    background: url('URL_DE_VOTRE_IMAGE_LIFESTYLE_ICI') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.blog-hero-section .hero-overlay {
    background: rgba(0,0,0,0.5); /* Semi-transparent overlay */
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}

.blog-hero-section .hero-content {
    max-width: 800px;
    padding: 20px;
}

.blog-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.blog-hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Search Bar in Hero */
.blog-search-bar {
    max-width: 500px;
    margin: 0 auto;
}
.blog-search-bar .search-form {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    background-color: white;
}
.blog-search-bar .search-field {
    flex-grow: 1;
    border: none;
    padding: 12px 15px;
    font-size: 1rem;
    color: #333;
}
.blog-search-bar .search-field::placeholder {
    color: #888;
}
.blog-search-bar .search-submit {
    background-color: #b38b59;
    color: white;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.blog-search-bar .search-submit:hover {
    background-color: #8e6e46;
}


/* SECTION 2: Blog Main Content (Posts & Sidebar) */
.blog-grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Posts on left, Sidebar on right */
    gap: 60px;
    align-items: start; /* Align content to the top */
}

/* Blog Posts Area (Main Content) */
.blog-posts-area .post { /* Targeting individual posts */
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.blog-posts-area .post:last-child {
    border-bottom: none; /* No border for the last post */
}

.blog-posts-area .post-thumbnail { /* Featured Image container */
    margin-bottom: 25px;
}

.blog-posts-area .post-thumbnail img {
    width: 100%;
    height: 350px; /* Consistent height for images */
    object-fit: cover;
    display: block;
    filter: grayscale(10%); /* Subtle grayscale */
    transition: filter 0.3s ease;
}

.blog-posts-area .post-thumbnail img:hover {
    filter: grayscale(0%);
}

.blog-posts-area .entry-title { /* Post Title */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.blog-posts-area .entry-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.blog-posts-area .entry-title a:hover {
    color: #b38b59;
}

.blog-posts-area .entry-meta { /* Post Meta: Date, Author, Category */
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.blog-posts-area .entry-meta a {
    color: #888;
    text-decoration: none;
}

.blog-posts-area .entry-meta a:hover {
    color: #b38b59;
}

.blog-posts-area .entry-content p { /* Post Excerpt/Content */
    margin-bottom: 20px;
}

.blog-posts-area .read-more-link { /* Read More Button */
    display: inline-block;
    background: #b38b59;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.blog-posts-area .read-more-link:hover {
    background: #8e6e46;
}

/* Blog Sidebar */
.blog-sidebar {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.blog-sidebar h3 {
    font-size: 1.2rem;
    color: #b38b59;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.blog-categories-list, .blog-recent-posts-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.blog-categories-list li, .blog-recent-posts-list li {
    margin-bottom: 10px;
}

.blog-categories-list a, .blog-recent-posts-list a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
    display: block; /* Make the whole area clickable */
    padding: 5px 0;
}

.blog-categories-list a:hover, .blog-recent-posts-list a:hover {
    color: #b38b59;
}


/* Newsletter Section */
.blog-newsletter-section h2 {
    font-size: 2.5rem;
    color: #b38b59;
    margin-bottom: 20px;
}

.blog-newsletter-section p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
}

.newsletter-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.newsletter-form input[type="email"] {
    flex-grow: 1;
    padding: 15px;
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form input[type="email"]::placeholder {
    color: #888;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .blog-hero-section h1 { font-size: 2.5rem; }
    .blog-hero-section p { font-size: 1rem; }
    .blog-grid-container {
        grid-template-columns: 1fr; /* Stack on smaller screens */
        gap: 40px;
    }
    .blog-sidebar { order: -1; } /* Move sidebar above posts on mobile */
    .blog-posts-area .entry-title { font-size: 1.8rem; }
    .newsletter-form {
        flex-direction: column; /* Stack newsletter inputs vertically */
    }
}

@media (max-width: 576px) {
    .blog-hero-section h1 { font-size: 2rem; }
    .blog-hero-section p { font-size: 0.9rem; }
    .blog-search-bar .search-form { flex-direction: column; }
    .blog-search-bar .search-field, .blog-search-bar .search-submit { width: 100%; }
}
.blog-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.blog-filters select {
  padding: 12px 18px;
  border-radius: 30px;
  border: 1px solid #ccc;
  font-weight: 600;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

/* CARD */
.blog-card {
  background: #f2f2f7;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 22px;
}

.card-category {
  color: #a78567;
  font-weight: 600;
  font-size: 14px;
}

.card-content h3 {
  margin: 10px 0;
  font-size: 22px;
}

.card-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

.card-btn {
  display: inline-block;
  background: #a78567;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
      text-decoration: none;
}
.card-image {
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-image img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.blog-page{
   margin-bottom: 80px;
    margin-top: 60px;
}