/* blogsidebr.css */
/* blogsidebar.css */

/* Categories CSS */

.cat-1-square-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border: 3px solid #FFD700; /* Change border to gold */
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6); /* Golden glow */
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cat-1-square-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.85); /* Brighter golden glow on hover */
}


    .cat-1-square-image img {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    .cat-1-category-info {
      text-align: center;
      margin-top: 10px;
    }

    .cat-1-category-link {
      text-decoration: none;
      color: #000;
      font-weight: 600;
      display: inline-block;
      transition: color 0.2s;
    }

    .cat-1-category-link:hover {
      color: #0d6efd;
    }

  

    /*Right side bar CSS*/

.right-side-bar {
  margin: 20px auto;
  max-width: 350px;
  /* Optional styling */
  /* box-shadow: 0 0 15px rgba(0,0,0,0.1); */
}

.right-side-bar .sidebar-container {
  position: static;
  width: 100%;
}


    .right-side-bar .sidebar {
      background: 
        linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        url('https://images.unsplash.com/photo-1503264116251-35a269479413?auto=format&fit=crop&w=600&q=80') no-repeat center center;
      background-size: cover;
      padding: 20px;
      border-radius: 10px;
      border: 2px solid #007bff;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }

    .right-side-bar .sidebar h2 {
      margin-top: 0;
      color: #333;
    }

    .right-side-bar .sidebar p {
      font-size: 14px;
      color: #555;
    }

    .right-side-bar .sidebar ul {
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .right-side-bar .sidebar ul li {
      margin-bottom: 8px;
      color: #444;
    }

    .right-side-bar .book-now {
      display: block;
      width: 100%;
      padding: 10px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 5px;
      text-align: center;
      text-decoration: none;
      font-weight: bold;
      cursor: pointer;
      margin-top: 10px;
    }

    .right-side-bar .social-icons {
      margin-top: 15px;
      text-align: center;
    }

    .right-side-bar .social-icons a {
      margin: 0 10px;
      color: #007bff;
      font-size: 18px;
      text-decoration: none;
    }


/*Main section Css*/
.gradient-section {
  background: #0c0a24;
  padding: 20px 0;
  color: #000000; /* Optional: ensures text is readable on dark background */
}


