/* 
Theme Name: Creative Nomad
Theme URI: https://creativenomad.uk/
Description: Bespoke wordpress them by Creative Nomad
Author: Creative Nomad
Author URI: https://creativenomad.uk/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* Ensure gallery images are displayed as squares */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 10px; /* Adjust spacing between images */
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crop the image to fit the square */
  aspect-ratio: 1 / 1; /* Force a square aspect ratio */
  display: block;
  border-radius: 5px; /* Optional: Add rounded corners */
}

/* Optional: Styling for lightbox */
.gallery-item img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
  transition: transform 0.3s ease-in-out;
}

/* Breadcrumb wrap */
/* 990px and smaller screen sizes */
@media (max-width:990px){

	/* List */
	.elementor-shortcode .siteseo-breadcrumbs-wrap ul{
		flex-wrap:wrap;
	}
	
}