/*
Theme Name:     Twenty Twenty-Five Child
Theme URI:      https://yourwebsite.com/
Description:    Custom child theme for Twenty Twenty-Five
Author:         Devender Pal
Author URI:     https://yourwebsite.com/
Template:       twentytwentyfive
Version:        1.0.0
*/

@import url('../twentytwentyfive/style.css');

/* Custom styles */
.left-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100%;
  background-color: #111;
  padding: 30px 20px;
  color: #fff;
  z-index: 1000;
}
.left-menu ul {
  list-style: none;
  padding: 0;
}
.left-menu ul li {
  margin-bottom: 15px;
}
.content-wrapper {
  margin-left: 240px;
  padding: 40px 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 20px;
  background: #000;
  color: #fff;
}

