body {
  background: linear-gradient(
    160deg,
    #f5c2da 0%,
    #f0f0f5 50%,
    #c9ddf5 100%
  );
  color: #2b2b2b;
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  margin: 0;
}


/* Navbar */
.navbar {
  background-color: #ffe4f1;
}

.navbar-brand,
.navbar-nav .nav-link {
  color: #ff69b4 !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: color 0.3s;
}

.navbar-brand:hover,
.navbar-nav .nav-link:hover {
  color: #4da6ff !important;
}

/* Links */
a {
  color: #ff69b4;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #4da6ff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  transition: color 0.3s;
}


/* Gradient heading */
.gradient-heading {
  background: linear-gradient(to right, #ff69b4, #4da6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-heading:hover {
  background: linear-gradient(to right, #ffb6d9, #9fd3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Images */
.image-border {
  border: 5px solid #ffb6d9;
  border-radius: 10px;
}

/* Buttons */
.btn-custom {
  background-color: #ff69b4;
  border: 1px solid #ff69b4;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
  padding: 10px 24px;
  font-weight: 600;
}

.btn-custom:hover {
  background-color: #4da6ff;
  border-color: #4da6ff;
}

/* Blog */
.blog-post img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.blog-post {
  display: flex;
  align-items: center;
}

/* Footer */
.footer {
  background-color: #fff;
  color: #2b2b2b;
  text-align: center;
  padding: 20px 0;
}

.footer a {
  color: #ff69b4;
}

.footer a:hover {
  color: #4da6ff;
}

/* Containers */
.home-container,
.nav-container,
.single-post-container {
  max-width: 700px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Gradient frame */
.single-post-image-frame {
  padding: 6px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffb6d9, #9fd3ff);
  margin-bottom: 30px;
}

/* Actual image */
.single-post-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.single-post-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ff69b4, #4da6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.single-post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.single-post-content img {
  float: right;
  width: 220px;
  height: 130px;
  margin-left: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 10px;
  border: 5px solid #ffb6d9;
  filter: blur(3px) brightness(1.15) contrast(0.85) saturate(0.9);
}

/* Pagination */
.pagination .page-link {
  color: #ff69b4;
  border-color: #ffb6d9;
  background-color: #ffffff;
}

.pagination .page-link:hover {
  background-color: #ff69b4;
  color: #ffffff;
}

.pagination .page-item.active .page-link {
  background-color: #4da6ff;
  border-color: #4da6ff;
  color: #ffffff;
}

/* Accordion */
.accordion,
.accordion-header,
.accordion-collapse,
.accordion-body {
  background-color: #ffffff;
  color: #2b2b2b;
}

.accordion-item {
  border-color: #ffb6d9;
}

.accordion-button {
  background-color: #fff;
  color: #2b2b2b;
  border: none;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: #ff69b4;
  color: #ffffff;
}

.accordion-button:focus {
  box-shadow: none;
}

/* Modal */
#partnersModal .modal-content {
  background-color: #ffffff;
  color: #2b2b2b;
  border-radius: 15px;
}

#partnersModal .modal-header,
#partnersModal .modal-footer {
  border: none;
}

/* Keyword buttons */
.keyword-button {
  display: inline-block;
  margin: 5px;
  padding: 6px 14px;
  text-decoration: none;
  color: #ff69b4;
  background-color: #ffffff;
  border: 1px solid #ffb6d9;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: background-color 0.3s, color 0.3s;
}

.keyword-button:hover,
.keyword-button.active {
  background-color: #ff69b4;
  color: #ffffff;
}

.custom-cta-btn {
    background: linear-gradient(90deg, #ff69b4, #4da6ff);
    border: 5px solid #fff;
    color: black;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.custom-cta-btn:hover {
    background: linear-gradient(90deg, #4da6ff, #ff69b4);
    color: white;
    border: 5px solid #fff;
}

/* Outer frame (border lives here) */
.image-frame {
  display: block;
  padding: 5px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffb6d9, #9fd3ff);
  text-decoration: none;
}

/* Clipping layer */
.image-clip {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

/* Image zooms */
.image-clip img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
  transform-origin: center;
}

/* Hover zoom */
.image-frame:hover img {
  transform: scale(1.18);
}

