/*
Theme Name: UziArad
Author: Your Name
Description: A simple starter theme for WordPress.
Version: 1.0
*/

/* Base styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.branding-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

.site-title {
    font-size: 24px;
    margin: 0;
    text-align: center;
    max-width: 1200px;
	margin:0px auto 0px auto;
}

.primary-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.primary-menu ul li {
    display: table;
}

.primary-menu ul li a {
    text-decoration: none;
    color: #000;
    padding: 10px;
}

.search-icon {
    font-size: 20px;
}

.search-link i {
    color: #000;
}

/* Hamburger Menu Styling */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
    z-index: 20;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 12px; }
.hamburger span:nth-child(3) { top: 24px; }

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
}

/* Responsive styling */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: absolute;
        left: 50px;
        top: 20px;
    }

    .primary-menu ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 50px;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 10;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .primary-menu.show-menu ul {
        display: flex;
        opacity: 1;
        transform: translateX(0);
    }

    .primary-menu ul li {
        display: block;
        margin-bottom: 10px;
    }

    .primary-menu ul li a {
        padding: 10px 20px;
    }

    .footer-widgets {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-column {
        width: 100%;
        padding: 10px 0;
    }
}

@media (min-width: 769px) {
    .primary-menu ul {
        display: flex;
    }

    .hamburger {
        display: none;
    }
}

/* Centered Container Styling */
.centered-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.entry-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: right;
}

h2 {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Featured image styling */
.featured-image img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Footer styling */
.site-footer {
    padding: 40px 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.footer-widgets {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-column {
    flex: 1;
    padding: 10px;
    text-align: center;
}

.footer-widget {
    margin-bottom: 20px;
}

.widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f5f5f5;
}










body  {background:#fff}

header {
	position:fixed;
	width:100%;
	background:#fff;
	text-align:center;
	top:0px	
}




footer {
	
	position:static;
	bottom:0px;
	width:100%;
	background:#514F4F;
	color:#fff;
	text-align:center;


}


.wp-block-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px; /* Adjust the gap between images if needed */
    flex-wrap: wrap; /* Allows wrapping to the next row if space is limited */
    margin: 0 auto; /* Centers the gallery on the page */
}

.wp-block-gallery figure {
    display: flex;
    justify-content: center; /* Horizontally centers the image */
    align-items: center; /* Vertically centers the image */
    flex-direction: column; /* Stacks image and captions vertically if captions exist */
    margin: 0; /* Removes default figure margin */
    height: 100%; /* Ensures figure takes the full height of its container */
    min-height: 400px; /* Set a minimum height for the figure tags (adjust as needed) */
    width: auto; /* Adjust the width based on content */
    text-align: center; /* Centers any captions */
}

.wp-block-gallery img {
    display: block;
    max-width: 100%; /* Prevents images from overflowing their container */
    height: auto; /* Maintains aspect ratio */
    margin: auto; /* Centers the image vertically and horizontally */
}
