/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.9
	Stable tag: 3.4.9
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/


/* Latest Videos shortcode styling */
a.vm-latest-video-button {
    color: white!important;
}

.vm-latest-videos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.vm-latest-video-item {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.vm-latest-video-thumb {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 4px;
}

.vm-latest-video-thumb img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.vm-latest-video-thumb:hover img {
	transform: scale(1.05);
}

/* Play button overlay */
.vm-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	transform: translate(-50%, -50%);
	pointer-events: none;
	transition: transform 0.3s ease;
}

.vm-latest-video-thumb:hover .vm-play-icon {
	transform: translate(-50%, -50%) scale(1.1);
}

.vm-play-icon svg {
	width: 100%;
	height: 100%;
}

.vm-latest-video-title {
	color: #ffffff;
	margin: 15px 0 10px;
	font-size: 1.2em;
}

.vm-latest-video-button {
	color: #ffffff;
	display: inline-block;
	margin: 0 auto;
	padding: 10px 24px;
	border: 1px solid #ffffff;
	border-radius: 3px;
	text-decoration: none;
	font-size: 0.9em;
	letter-spacing: 0.5px;
	transition: background 0.3s ease, color 0.3s ease;
}

.vm-latest-video-button:hover {
	background: #ffffff;
	color: #000000;
}

/* Mobile: stack into a single column */
@media (max-width: 768px) {
	.vm-latest-videos {
		grid-template-columns: 1fr;
	}
}

/* ===== New Footer Layout ===== */

#bottom-footer {
	padding: 50px 0 25px;
}

.vm-footer-columns {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Logo + Facebook column */
.vm-footer-col-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.vm-footer-logo {
	display: inline-block;
	margin-bottom: 15px;
}

.vm-footer-logo img {
	max-width: 180px;
	height: auto;
	display: block;
}

.vm-footer-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: transparent;
	color: #ffffff!important;
	font-size: 16px;
	transition: background 0.3s ease, color 0.3s ease;
}

.vm-footer-social:hover {
    background: #4e6274 !important;
}

/* Useful Links / Legal columns */
.vm-footer-col-links,
.vm-footer-col-legal {
	min-width: 160px;
}

.vm-footer-heading {
	color: #ffffff;
	font-size: 1em;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
  	font-family: 'Inter'!important;
  font-weight: 300;
}

.vm-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vm-footer-menu li {
	margin-bottom: 10px;
}

.vm-footer-menu a {
	color: #ffffff!important;
	text-decoration: none;
	font-size: 1.1em;
	transition: opacity 0.3s ease;
  font-family: 'Inter'!important;
}

.vm-footer-menu a:hover {
	opacity: 0.7;
}

/* Bottom row: copyright left, credit right */
.vm-footer-bottom {
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.vm-footer-copyright,
.vm-footer-credit {
	color: #ffffff;
	font-size: 1em;
	margin: 0;
}

.vm-footer-credit a {
	color: #ffffff!important;
	text-decoration: none;
	font-weight: 600;
}

.vm-footer-credit a:hover {
	text-decoration: underline;
}

/* ===== Mobile: stack into a single column ===== */
@media (max-width: 768px) {
	.vm-footer-columns {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 30px;
	}

	.vm-footer-col-brand {
		align-items: center;
	}

	.vm-footer-col-links,
	.vm-footer-col-legal {
		width: 100%;
	}

	.vm-footer-menu li {
		text-align: center;
	}

	.vm-footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}