		@media (prefers-color-scheme: light) {
		:root {
            --bg-color: #ffffff;
            --text-color: #333333;
            --card-bg: #f0f0f0;
            --border-color: #cccccc;
            --button-bg: #e0e0e0;
            --button-text: #000000;
            --link-color: #333333;         /*#0000ee */
            --footercols-color:#ffffff ;  /*  #4b4f58   */
            --footer-link-color:#000000;  /*  #ffffff   */
            --copyright-color: #ffffff;   /*  #212121   */
			
        }
			/* Hide dark mode logo by default */
			.dark-mode-logo {
				display: none;
			}
			.light-mode-logo {
				display: block;
			}
		}

        @media (prefers-color-scheme: dark) {
            :root {
                --bg-color: #121212;
                --text-color: #ffffff;
                --card-bg: #2b2b2b;
                --border-color: #444444;
                --button-bg: #333333;
                --button-text: #ffffff;
                --link-color: #8ab4f8;
                --footercols-color:#000000;  /* #121212 */
                --footer-link-color:#ffffff; /* #ffffff */
                --copyright-color: #000000;  /* #000000 */
            }
			.light-mode-logo {
				display: none;
			}
			.dark-mode-logo {
				display: block;
			}
        }

        body {
            font-family: "Arial", monospace;
            background-color: var(--bg-color);
            color: var(--text-color);
            margin: 0;
            padding: 0;
            transition: background-color 0.3s, color 0.3s;
            text-align: center;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        #app {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 60vh;
            justify-content: center;
            align-items: center;
        }

		/* General Styles */
		.header {
			display: flex;
			align-items: center;
			justify-content: space-between;
			padding: 10px 20px;
		}
		/* 
		.logo img {
			display: block;
		} */

		.tagline {
			font-size: 18px;
			color: #555;
		}
		
		/* 9-Dots Menu */
		.dots-menu {
			display: grid;
			grid-template-columns: repeat(3, 6px);
			gap: 4px;
			cursor: pointer;
		}
		
		.dot {
			width: 6px;
			height: 6px;
			background-color: #808080; /* Grey color */
			border-radius: 50%; /* Makes dots circular */
		}
		
		/* Grid Menu (Hidden by default) */
		.nav-menu {
			position: absolute;
			top: 70px; /* Increased from 50px to 70px for extra spacing */
			right: 20px;
			/* background-color: #fff;
			box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
			padding: 10px;*/
			border-radius: 4px; /* Optional for a rounded dropdown */
		}
		
		.nav-menu.hidden {
			display: none; /* Hides the menu by default */
		}
		
		.grid-menu {
		  display: grid;
		  grid-template-columns: repeat(3, 1fr);
		  gap: 16px;
		  padding: 16px;
		  background-color: var(--bg-color);
		  border-radius: 8px;
		  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
		  outline: 2px solid #D3D3D3; /* Light Grey */
		}
		
		.grid-item {
		  display: flex;
		  flex-direction: column;
		  align-items: center;
		  text-decoration: none;
		  color: var(--text-color);  /* Default text color */
		  padding: 16px;
		  border-radius: 8px;
		  transition: background-color 0.3s;
		}
		
		.grid-item:hover {
		  background-color: #f1f3f4;
		}
		
		.grid-icon {
		  width: 24px;
		  height: 24px;
		  margin-bottom: 8px;
		  fill: currentColor;
		  fill: #006400; /* Dark Green */
		}
		
		.grid-item span {
		  font-size: 14px;
		  text-align: center;
		}
		
		/* Consistency Across Devices */
		button, .dots-menu {
			border-radius: 0; /* Removes rounded corners for consistency */
		}
		
		/* updated menu end */

        .content {
            padding: 20px;
            transition: margin-top 0.3s ease;
        }

        /* Grouping for right alignment */
        .right-header-items {
            display: flex;
            align-items: center;
        }

        /* Full-width banner with adjustable height */
        .banner {
            width: 100%;
            padding-top: 50%; /* This creates a 2:1 aspect ratio for the banner */
            background-image: url('../img/banner.jpg');  /* Placeholder for image */
            background-size: cover;
            background-position: center;
            background-color: var(--card-bg);  /* Fallback color */
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--text-color);  /* For text if you add any */
            margin-bottom: 20px;  /* Space below the banner */
        }

		.container {
		  width: 100%;
		  max-width: 1200px;
		  margin: 0 auto;
		  padding: 20px;
		}
		
		.centered-input {
		  display: flex;
		  justify-content: center; /* Centers horizontally */
		  align-items: center; /* Centers vertically, if needed */
		  margin-bottom: 20px; /* Add some space below the input */
		}
		
		/* Search Container Styles */
		.search-container {
			margin: 0;
		}
		
		.search-box {
			display: flex;
			gap: 1rem;
			margin: 0.5rem 0;
			max-width: 1200px;
			margin-left: auto;
			margin-right: auto;
			width: 100%;
			box-sizing: border-box;
		}
		
		.search-input-container {
			display: flex;
			width: 100%;
			gap: 0.5rem;
			align-items: stretch; /* This ensures both elements stretch to the same height */
		}
		
		#search-input {
			flex: 1;
			padding: 1rem 1.5rem 1rem 2.5rem;
			font-size: 1.2rem;
			border: 1px solid #ccc;
			border-radius: 4px;
			width: 100%;
			min-width: 600px; /* Restore desktop min-width */
		}
		
		.search-buttons {
			display: flex; /* Keep buttons inline by default */
			gap: 1rem;
			/* justify-content: center; Removed default centering */
		}
		
		#search-button, #reset-button {
			padding: 1rem 2rem;
			font-size: 1.2rem;
			border-radius: 4px;
			cursor: pointer;
			white-space: nowrap;
			/* min-width: 120px; */
		}
		
		#search-button {
			background-color: #333;
			color: white;
			border: 1px solid #333;
			width: 80px;
			padding: 0;
		}
		
		#reset-button {
			background-color: #333;
			color: white;
			border: 1px solid #333;
		}
		
		#reset-button:hover {
			background-color: #444;
		}
		
		/* Search Results Styles */
		.search-result {
			margin: 1rem 0;
			padding: 1.5rem;
			border: 1px solid #eee;
			border-radius: 4px;
			text-align: left;
			background-color: white;
			box-shadow: 0 2px 4px rgba(0,0,0,0.05);
			transition: transform 0.2s ease;
		}
		
		.search-result:hover {
			transform: translateY(-2px);
			box-shadow: 0 4px 8px rgba(0,0,0,0.1);
		}
		
		.search-result h3 {
			margin: 0 0 0.5rem 0;
			color: #333;
		}
		
		.search-result a {
			color: #333;
			text-decoration: none;
		}
		
		.search-result a:hover {
			color: #666;
			text-decoration: underline;
		}
		
		.search-meta {
			margin-top: 0.5rem;
			font-size: 0.9rem;
			color: #666;
		}
		
		.search-date {
			margin-right: 1rem;
		}
		
		.search-type {
			background-color: #e9ecef;
			padding: 0.2rem 0.5rem;
			border-radius: 3px;
			font-size: 0.8rem;
		}
		
		.hidden {
			display: none;
		}
		
		/* Dark mode support */
		@media (prefers-color-scheme: dark) {
			.search-result {
				background-color: #2b2b2b;
				border-color: #444;
			}
			
			.search-result h3 {
				color: #fff;
			}
			
			.search-meta {
				color: #aaa;
			}
			
			.search-type {
				background-color: #444;
			}
		}
		
		.row {
		  display: flex;
		  flex-wrap: wrap;
		  margin: -10px;
		}
		
		.column {
		  flex: 1;
		  padding: 10px;
		  min-width: 300px;

		}

		.column a{
			color: inherit;
			text-decoration: none; /* Removes underline */
			/*color: var(--bg-color); */
		}
		

		.card {
		  background-color: var(--bg-color); /* Card background color */
		  border: 1px solid #d3d3d3; /* Light grey border */
		  border-radius: 8px; /* Rounded corners */
		  padding: 20px; /* Inner padding */
		  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
		   text-align: center;
		}
		
		.no-bullets {
			list-style-type: none; /* Removes bullet points */
			padding: 0;           /* Removes default padding */
			margin: 0;            /* Removes default margin */
		}
		
        /* Main footer styles */
        .footer {
            background-color: var(--bg-color);
            padding: 8px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-bottom: 4px;
        }

        .footer-column {
            flex-basis: calc(25% - 20px);
            margin-bottom: 8px;
            color: var(--footer-link-color);
            text-align: left;
            padding: 0 6px;
        }

        .footer-column h3 {
            margin-top: 0;
            color: var(--footer-link-color);
            text-align: left;
        }

        .footer-column ul {
            list-style-type: none;
            padding: 0;
            text-align: left;
        }

        .footer-column li {
            margin-bottom: 4px;
        }

        .footer-column a {
            color: var(--footer-link-color);
            text-decoration: none;
        }

		#mce-EMAIL{
			border-color: black;
			border-width: 1px;
			border-radius: 4px;
			padding: 4px;
		}

		#mc-embedded-subscribe{
			
		}

		.social-media{
			fill:var(--footercols-color);
			justify-content:center;
		}

		.wp-block-social-link{
			border-radius:9999px;
			display: inline-block;
			padding:5px 7px 5px 7px;
			margin-left: 10px;
			margin-right: 10px;
		}
		.wp-social-link-x{
			background-color: var(--footer-link-color);
		}
		
		.wp-social-link-youtube{
			background-color: red;
		}
		.wp-social-link-bluesky{
			background-color: #0274be;
		}
		.wp-social-link-facebook{
			background-color: #0866ff;
		}
		.wp-social-link-pinterest{
			background-color: #e60122;
		}
		.wp-social-link-whatsapp{
			background-color: #25d366;
		}

        /* Copyright footer */
        .copyright {
            background-color: var(--bg-color);
            color: var(--footer-link-color);
            text-align: center;
            padding: 10px 20px;
        }  

        @media screen and (max-width: 768px) {
        
       		.tagline {
				margin-left: 20px;
			}

				
			/* Search Container */
			.search-container {
			  margin-top: 40px;
			  margin-bottom: 40px;
			  margin-left: auto;
			  margin-right: auto;
			  padding: 0 1rem;
			  width: 100%;
			  box-sizing: border-box;
			}
            
		   .card {
			margin-right: 40px;
			}   
            
            .footer-column {
                flex-basis: 100%;
                text-align: center;
            }
            
            .footer-column h3 {
                text-align: center;
            }
            
            .footer-column ul {
                text-align: center;
            }
            
            .footer {
                justify-content: center;
            }
            
            .copyright {
                text-align: center;
            }
            
            .search-container {
                padding: 0 1rem;
                width: 100%;
                margin-left: auto;
                margin-right: auto;
                margin: 150px 0px;
                box-sizing: border-box;
            }
            
            .search-box {
                flex-direction: column;
                padding: 0 1rem;
                width: 100%;
                box-sizing: border-box;
            }
            
            .search-input-container {
                display: flex;
                width: 100%;
                gap: 0.5rem;
            }
            
            #search-input {
                font-size: 1rem;
                padding: 0.8rem 1rem 0.8rem 2.5rem;
                min-width: 0;
                width: 100%;
                box-sizing: border-box;
                flex: 1;
                margin: 150px 0px;
            }
            
            .search-buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 1rem;
                width: 100%;
            }
            
            #search-button, #reset-button {
                font-size: 1rem;
                padding: 0.8rem 1rem;
                min-width: unset;
            }

            #search-button {
                width: 80px;
            }

            #reset-button {
                width: 100px;
            }

            #app {
                min-height: 40vh;
                justify-content: center;
                align-items: center;
            }
            .nav-menu {
              top: 70px; /* Ensure extra spacing on mobile as well */
              left: 50%;
              right: auto;
              transform: translateX(-50%);
            }
        }

/* Post and Page Content Styles */
.post, .page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    flex: 1;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.post h1, .page h1 {
    margin-bottom: 2rem;
    font-size: 2rem;
    width: 100%;
}

.post-content, .page-content {
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
}

.post-content img, .page-content img {
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 768px) {
    .post, .page {
        padding: 1.5rem 1rem;
        width: 100%;
    }
    
    .post h1, .page h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 600px) {
  form[role="search"] input[type="search"] {
    width: 65vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    font-size: 15px;
  }
  form[role="search"] button[type="submit"] {
    width: 40px !important;
    font-size: 14px;
  }
}

form[role="search"] {
  display: inline-flex;
  align-items: center;
}
form[role="search"] input[type="search"],
form[role="search"] button[type="submit"] {
  height: 44px;
  box-sizing: border-box;
  border: none;
}
form[role="search"] input[type="search"] {
  width: 420px;
  max-width: 80%;
  padding: 0 18px;
  border: 1px solid #dfe1e5;
  border-radius: 10px 0 0 10px;
  font-size: 16px;
  background: #f7f7f7;
  outline: none;
}
form[role="search"] button[type="submit"] {
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #777;
  border: 1px solid #444;
  border-left: none;
  border-radius: 0 10px 10px 0;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 0;
  padding: 0;
}
@media (max-width: 600px) {
  form[role="search"] input[type="search"] {
    width: 65vw !important;
    min-width: 0 !important;
    max-width: 100vw !important;
    font-size: 15px;
    height: 40px;
  }
  form[role="search"] button[type="submit"] {
    width: 40px !important;
    font-size: 14px;
    height: 40px;
  }
  form[role="search"] {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .tagline-break {
    display: block;
  }
}

/* Copyright row with social media icons left, copyright text centered */
.copyright-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 6px 0 0 0;
    background-color: var(--bg-color);
    color: var(--footer-link-color);
    position: static;
    min-height: unset;
}
.footer-links, .newsletter-and-copyright {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.copyright-social {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-left: 0;
    height: 100%;
}
.copyright-social .social-media {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}
.copyright-social .social-media li {
    margin: 0 6px;
    margin-top: 0;
    display: flex;
    align-items: center;
    height: 24px;
}
.copyright-social .social-media li svg {
    width: 20px !important;
    height: 20px !important;
    vertical-align: middle;
    display: inline-block;
}
.newsletter-and-copyright {
    justify-content: flex-end;
    gap: 8px;
    padding-right: 16px;
}
.footer-links {
    justify-content: flex-start;
    gap: 12px;
    margin-right: 0;
    padding-left: 16px;
    align-items: center;
}
.footer-link {
    color: var(--footer-link-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    transition: none;
}
.footer-link:hover {
    text-decoration: underline;
    color: var(--footer-link-color);
}
@media screen and (max-width: 768px) {
    .copyright-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 4px 0 0 0;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
    .footer-links, .newsletter-and-copyright {
        width: 100%;
        justify-content: center;
        margin: 0 0 2px 0;
        align-items: center;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }
    .footer-links {
        flex-direction: row;
        gap: 16px;
        justify-content: center;
        padding-left: 0;
        margin-left: 0;
        margin-right: 0;
        flex-wrap: wrap;
    }
    .newsletter-and-copyright {
        justify-content: center;
        padding-right: 0;
        flex-wrap: wrap;
    }
    .copyright-social {
        width: 100%;
        justify-content: center;
        margin-bottom: 2px;
        box-sizing: border-box;
    }
    .footer {
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
}

/* Make sure the footer stays at the bottom */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
#app {
    flex: 1 0 auto;
}
.footer, .copyright-row, .copyright-text {
    flex-shrink: 0;
}

.footer-links-row {
    margin-left: 20px;
    margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .nav-menu {
    top: 70px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  #app {
    min-height: unset;
    flex: 0 0 auto;
  }
  .footer {
    position: static;
    left: unset;
    bottom: unset;
    width: 100vw;
    z-index: unset;
  }
  body {
    padding-bottom: 0;
  }
  .grid-menu {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }
  .footer-links {
    flex-direction: row;
    gap: 16px;
  }
}
