/*
Theme Name: BeTube Demo
Theme URI: https://joinwebs.com/betube/
Author: Shabir Ahmad
Author URI: https://joinwebs.com/
Description: A purpose-built, single-page marketing theme for the BeTube Video WordPress Theme. Ships the BeTube sales page as a fully editable Elementor template with a one-click demo import. Requires Elementor (free).
Version: 1.0.3
Requires at least: 6.3
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: betube-demo
Tags: one-column, custom-logo, custom-menu, editor-style, translation-ready, full-width-template

BeTube Demo is distributed under the terms of the GNU GPL v2 or later.
*/

/* --------------------------------------------------------------------------
   The landing page itself is rendered by Elementor Canvas, which bypasses
   header.php/footer.php entirely and loads assets/css/betube-demo.css.
   What follows is only the minimal base the theme needs for the pages
   Elementor does not own: 404, search, and any plain page or post.
   -------------------------------------------------------------------------- */

:root {
	--btp-surface-base: #2c3e50;
	--btp-surface-nav: #34495e;
	--btp-text: #a9b1b9;
	--btp-heading: #ffffff;
	--btp-brand: #dc3545;
	--btp-brand-hover: #c82333;
	--btp-radius: 4px;
	--btp-container: 1140px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	background-color: var(--btp-surface-base);
	color: var(--btp-text);
	font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.5rem;
	color: var(--btp-heading);
	font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.2;
}

p {
	margin: 0 0 1rem;
}

a {
	color: var(--btp-brand);
	text-decoration: none;
}

a:hover,
a:focus {
	color: var(--btp-brand-hover);
	text-decoration: underline;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* Keyboard focus is never removed, only restyled. */
:focus-visible {
	outline: 2px solid var(--btp-heading);
	outline-offset: 3px;
}

/* Screen-reader text, per the WordPress accessibility guidelines. */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	display: block;
	width: auto;
	height: auto;
	padding: 12px 20px;
	clip: auto;
	clip-path: none;
	background-color: var(--btp-surface-nav);
	color: var(--btp-heading);
	border-radius: var(--btp-radius);
	font-size: 14px;
}

/* -------------------------------------------------------------- Fallback UI */

.btp-shell {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.btp-shell__main {
	flex: 1 0 auto;
}

.btp-container {
	width: 100%;
	max-width: var(--btp-container);
	margin: 0 auto;
	padding: 0 15px;
}

.btp-site-header,
.btp-site-footer {
	background-color: var(--btp-surface-nav);
	padding: 16px 0;
}

.btp-site-header__inner,
.btp-site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
}

.btp-site-header__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--btp-heading);
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	text-decoration: none;
}

.btp-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.btp-menu a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
}

.btp-menu a:hover,
.btp-menu a:focus {
	color: rgba(255, 255, 255, 0.75);
}

.btp-entry {
	padding: 64px 0;
}

.btp-entry__title {
	font-size: 32px;
	font-weight: 700;
}

.btp-button {
	display: inline-block;
	padding: 6px 12px;
	background-color: var(--btp-brand);
	color: var(--btp-heading);
	border-radius: var(--btp-radius);
	text-decoration: none;
	text-transform: capitalize;
	transition: background-color 0.15s ease-in-out;
}

.btp-button:hover,
.btp-button:focus {
	background-color: var(--btp-brand-hover);
	color: var(--btp-heading);
	text-decoration: none;
}

.btp-search-form {
	display: flex;
	gap: 8px;
	max-width: 420px;
	margin: 24px 0;
}

.btp-search-form input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	padding: 8px 12px;
	background-color: rgba(255, 255, 255, 0.08);
	color: var(--btp-heading);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--btp-radius);
	font: inherit;
}
