body {
    background-color: #F2E2C4;
}

.navbar-light {
    background-color: #131826;
}

h1 {
    color: #222;
    margin-bottom: 10px;
}

a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.post img {
    border-radius: 6px;
    max-width: 100%;
    height: auto;
}
h1 {
    color: #222;
    margin-bottom: 10px;
}

a {
    color: #0077cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.post img {
    border-radius: 6px;
    max-width: 100%;
    height: auto;
}

.nav-link {
    color: white !important;
}

/* Uniform size and spacing */
.instagram-icon i,
.youtube-icon i {
  font-size: 2.2rem;
  display: inline-block;
  transition: transform 0.2s;
}

/* Brand colors */
.instagram-icon i {
  color: #E4405F; /* Instagram pink/orange vibe */
}

.youtube-icon i {
  color: #FF0000; /* YouTube red */
}

/* Hover effect */
.instagram-icon:hover i,
.youtube-icon:hover i {
  transform: scale(1.2);
}

/* styling for blog images */

.masonry-grid {
    display: flex;
    margin-left: -10px; /* gutter offset */
    width: auto;
}

.masonry-item {
    width: 49%; /* 3 columns on desktop */
    padding-left: 10px; /* gutter */
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .masonry-item { width: 100%; } /* 2 columns on tablet */
}

@media (max-width: 480px) {
    .masonry-item { width: 100%; } /* 1 column on mobile */
}

.masonry-item img {
    display: block;
    width: 100%;
    height: auto;
}