/*
Theme Name: Seed
Theme URI: https://th.seedthemes.com/item/seed/
Author: SeedThemes
Author URI: https://SeedThemes.com
Description: Starter Theme
Version: 2.0.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seed
Tags: featured-images, custom-menu
*/

/*
===========================================

This theme use SCSS, please check

1. css/scss/_variables.scss - for some colors & styles.
2. css/scss/mobile.scss - will be compiled to css/mobile.css and used for mobile version.
3. css/scss/desktop.scss - will be compiled to css/desktop.css and used for desktop version.
4. If you set $GLOBALS['s_style_css'] in functions.php to 'enable', you can add CSS to this file to override all CSS.
    
=========================================== 
*/

/*
body {
	border: 5px solid #c00;
}
*/


/*Contact Us Page CSS Test*/
 .wp-block-columns.contact_us_column_1 {
	display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 0px;
}
.contact_us_column_1_2{
	height: 100%;
	background-image: url('https://barenailspa.com/wp-content/uploads/2025/08/Contact-Us-gallery-page2.webp');
    background-position: center;     
    background-repeat: no-repeat;    
    background-size: cover;
}

.contact_us_column_1_1{
	padding: 50px 20px;
}

.text_h3{
	font-size: 30px;
}


@media only screen and (max-width: 768px) {
  .wp-block-columns.contact_us_column_1 {
    grid-template-columns: 1fr;
}
	.wp-block-column.contact_us_column_1_2 {
    min-height: 300px;
}
}

