/**
 * Core Site Title Styles
 * rohsigma Property Theme
 *
 * @package SmartMove
 * @since 0.1.0
 */

.site-title {
	margin: 0;
	padding: 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	transition: font-size 0.3s ease;
}

.site-header.scrolled .site-title {
	font-size: 1.5rem;
}

.site-title a {
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.site-title a:hover,
.site-title a:focus {
	opacity: 0.8;
	text-decoration: none;
}

/* Custom Logo Support */
.custom-logo-link {
	display: inline-block;
	vertical-align: middle;
}

.custom-logo {
    max-height: 55px;
    width: auto;
    height: 55px;
    display: block;
    transition: max-height 0.3s ease, filter 0.3s ease;
   /* filter: brightness(0) invert(1);  white */
}

.site-header.scrolled .custom-logo {
    max-height: 60px;
    filter: brightness(0) invert(0); /* black */
	color: black;

}

/* Site Branding Container */
.site-branding {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

.site-description {
	margin: 0.25rem 0 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 400;
	display: none; /* Hidden in fixed header for space */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.site-title {
		font-size: 1.5rem;
	}
	
	.site-header.scrolled .site-title {
		font-size: 1.25rem;
	}
	
    .custom-logo {
        max-height: 60px;
    }
    
    .site-header.scrolled .custom-logo {
        max-height: 50px;
    }
	
	.site-description {
		font-size: 0.75rem;
	}
}

@media (max-width: 480px) {
	.site-title {
		font-size: 1.25rem;
	}
	
	.site-header.scrolled .site-title {
		font-size: 1.1rem;
	}
	
    .custom-logo {
        max-height: 50px;
    }
    
    .site-header.scrolled .custom-logo {
        max-height: 40px;
    }
}
