/*
Theme Name: voNavPilot
Theme URI: https://vonavpilot.com/
Author: H.Mosahebi
Description: voNavPilot© – Voice Navigation & Accessibility for WordPress
Version: 1.0
License: MIT
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
	display: flex;
	height: 100%;
	margin: 0;
	padding: 72px 0 0 0;
	flex-direction: column;
	min-height: 100vh;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	background: #f5f5f5;
	color: #333;
	font-size: 16px;
}

header,
footer {
	background-color: #00152a;
	color: white;
	padding: 1rem 2rem;
	text-align: center;
}

.main-content {
	width: 100%;
	margin: 0 auto;
}

.section-content {
	margin-bottom: 40px;
	background: #f9f9f9;
	padding: 15px 15px 15px 30px;
	border-radius: 8px;
  	margin: 25px;
	line-height: 30px;
	position: relative;
	overflow: hidden;
}

.faq-groups-nav{
	position: fixed;
	top: 72px;
	right: 0px;
	display: flex;
	flex-direction: row;
	z-index: 10;
}

.faq-groups-nav span {
	display: flex;
	padding: 10px;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.section-content .faq-start,
.section-content .faq-voice,
.section-content .faq-core,
.section-content .faq-custom,
.section-content .faq-dashboard {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 15px;	
}

.faq-start {
  background-color: #FF5733; /* orange/red for Getting Started */
}

.faq-voice {
  background-color: #33C1FF; /* blue for Voice Recognition & Commands */
}

.faq-core {
  background-color: #4fb022; /* green for Core Features */
}

.faq-custom {
  background-color: #FF33D1; /* pink/purple for Customization */
}

.faq-dashboard {
  background-color: #FFC733; /* yellow for Dashboard & Storage */
}

.section-content .image-wrapper {
	display: flex;
}

.section-content img {
	display: flex;
	width: 50%;
	height: auto;
	margin: auto;
	border: 1px solid #ccc;
	border-radius: 8px;
}

.section-content.story,
.section-content.how-works{
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.section-content.story .story-banner{
	display: flex;
	width: 40%;
}

.section-content.story .story-text{
	display: flex;
	flex-direction: column;
}

.section-content.how-works.small .how-works-banner{
	display: flex;
	width: 250px;
}

.section-content.how-works.small .how-works-text{
	display: flex;
	flex-direction: column;
	width: calc(100% - 250px);
}

.section-content.how-works.large .how-works-banner{
	display: flex;
	width: 60%;
}

.section-content.how-works.large .how-works-text{
	display: flex;
	flex-direction: column;
	width:40%;
}

.section-content .demo {
	display: inline-block;
	width: auto;
	text-align: center;
	background-color:  #db2a3d;
	border-radius: 10px;
	padding: 20px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 20px 0;
}

footer {
	flex-shrink: 0;
	font-size: 14px;
}

footer p{
	opacity: 0.8;
}

a {
	color: #00aaff;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

main {
	flex: 1 0 auto;
	padding-top: 120px 30px 30px 30px;
}

form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

input,
textarea,
button {
	padding: 0.75rem;
	font-size: 1rem;
	border-radius: 6px;
	border: 1px solid #ccc;
}

button {
	background-color: #00aaff;
	color: white;
	border: none;
	cursor: pointer;
}

button:hover {
	background-color: #008ecc;
}

.hero {
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
}

.hero video,
.hero img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.hero .content {
	z-index: 2;
	padding: 19px;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 25px 0 25px;
	border-radius: 20px;
}

.brand {
  color: #ffaa00;
}

.btn-wrapper {
	display: inline-block;
	width: 100%;
	text-align: center;
}

.btn_orange{
	font-size: 18px;
	font-weight: bold;
	padding: 15px;
	background-color:  #ffaa00;
}

.btn_orange:hover{
	background-color:  #e9a620;	
}

.brand .copyright {
  font-size: 0.5em;
  vertical-align: super;
  opacity: 0.8;
}

.hero .content .hero-title {
	font-size: 50px;
}

.hero .content .shop-hero-title {
	font-size: 30px;
}

.hero .content .hero-description {
	font-size: 32px;
	display: flex;
	justify-content: center;
}

.hero a {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.75rem 1.5rem;
	background-color: #00aaff;
	color: white;
	border-radius: 8px;
}

.hero a:hover {
	background-color: #00aaff;
}

.site-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #00152a;
	padding: 16px 32px;
	color: white;
	position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 64px);
    z-index: 999; /* ensures it’s above all content */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* optional */
}

.branding {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex: 1;
}

.branding img {
	display: flex;
	width: 40px;
}

.branding h1 {
	margin: 0;
	font-size: 1.5rem;
}

.branding a {
	color: white;
	text-decoration: none;
}

.branding a:hover {
	text-decoration: none;
}

.site-nav a {
	color: white;
	text-decoration: none;
	margin-left: 1rem;
	font-weight: 600;
}

.site-nav a:hover {
	text-decoration: none;
	color: #00aaff;
}

.blue-grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:linear-gradient(to bottom, rgba(0, 123, 255, 0.5) 1px, transparent 1px);
	background-size: 100% 2px;
	pointer-events: none;
}

main section {
	padding: 0 0 30px 0;
}


.nav-tab-wrapper {
	border-bottom: 2px solid #ddd;
	margin-bottom: 25px;
}

.nav-tab {
	display: inline-block;
	padding: 10px;
	cursor: pointer;
	background: #f7f7f7;
	border: 1px solid transparent;
	border-bottom: none;
	border-radius: 5px 5px 0 0;
	font-weight: 600;
	color: #444;
	transition: background-color 0.3s ease;
	text-decoration: none;
}

.nav-tab:hover {
	background: #e1e1e1;
}

.nav-tab-active {
	background: #00aaff;
	color: white !important;
	border-color: #00aaff;
	font-weight: 700;
}

.nav-tab-active:hover {
	background: #02a0efff;
}

.site-nav a.active {
	color:#00aaff;
}

.blue {
	background-color: #00aaff;
    font-size: 20px;
    border-radius: 6px;
    color: #fff;
    padding: 4px;
    margin: 4px;
    display: inline-block;
}

.red {
	background-color: #ff0000;
    font-size: 20px;
    border-radius: 10px;
    color: #fff;
    padding: 4px;
    margin: 4px;
    display: inline-block;
}

.tab-content {
	background: #fff;
	padding: 20px 25px;
	border: 1px solid #ddd;
	border-radius: 0 5px 5px 5px;
}

.settings-panel h3 {
	margin-top: 20px;
	margin-bottom: 10px;
	font-weight: 700;
}

.setting-group {
	margin-bottom: 16px;
}

.setting-group label {
	display: block;
	font-weight: 600;
}

.setting-row {
	display: flex;
	gap: 20px;
}

.row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.setting-row .setting-group {
	flex: 1;
}

.setting-group input[type="text"],
.setting-group select,
.setting-group input[type="number"],
.setting-group textarea {
	width: 100%;
	margin: 8px 0 8px 0;
	padding: 8px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

.setting-group input[type="color"] {
	padding: 0;
	height: 34px;
}

.description {
	font-size: 12px;
	color: #666;
	margin-top: 4px;
}

/* Accordion */
.accordion-item {
	border: 1px solid #ddd;
	border-radius: 5px;
	margin-bottom: 10px;
	overflow: hidden;
}

.accordion-header {
	background: #f1f1f1;
	padding: 12px 15px;
	cursor: pointer;
	font-weight: 600;
	user-select: none;
}

.accordion-header.active {
	background: #0073aa;
	color: white;
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease;
	background: white;
}

.accordion-content.active {
	padding: 15px;
	max-height: 1000px;
	/* large enough for content */
}

table.form-table {
	width: 100%;
	border-collapse: collapse;
}

table.form-table th,
table.form-table td {
	padding: 8px;
	border-bottom: 1px solid #eee;
	vertical-align: top;
	line-height: 44px;
}

table.form-table th {
	width: 70px;
	font-weight: 600;
	color: #555;
}

.notice-text {
	background: #fff3cd; 
	border-left: 4px solid #ffeeba; 
	padding: 10px; 
	margin-top: 15px;
}

#cookie-notice{
	background: #ffeeba;
    border: 1px solid #f0ad4e;
	color: #836611;
    height: 80px;
    display: inline-block;
    width: 100%;
    align-content: center;
    align-content: center;
    text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 24px;
}

.list-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.list-item{
	display: flex;
	flex-direction: row;
} 

.star-rating{
	display: flex;
	flex-direction: row;
	gap: 4px;
	margin: 0 10px 0 0;
}

.star-rating img {
	display: flex;
	border: none;
	width: 20px;
	height: 20px;
}

ul, ol {
	line-height: 30px;
}

.section-content h1,
.section-content h2 {
	line-height: 35px;
}

.row-list {
	list-style-type: none;
    padding-left: 0;
}

.red-color {
	display: inline;
    color: rgb(255, 0, 0) ;
	font-weight: bold;
}

.red-inline-color {
    display: inline;
    background-color: rgb(255, 0, 0) ;
    border-radius: 6px;
    color: #fff;
    align-items: center;
    padding: 1px 3px 3px 3px;
}

.green-inline-color {
    display: inline;
    background-color: rgb(53 234 53) ;
    border-radius: 6px;
    color: #fff;
    align-items: center;
    padding: 1px 3px 3px 3px;
}

.gray-inline-color {
    display: inline;
    background-color: rgb(137, 141, 137);
    border-radius: 6px;
    color: #fff;
    align-items: center;
    padding: 1px 3px 3px 3px;
}

.read-highlight{
    background-color: #fff9b1 !important;
}

.blue-block-help {
    display: inline;
    background-color: #4d90fe;
    border-radius: 6px;
    color: #fff;
    align-items: center;
    padding: 4px 6px 4px 6px;
    margin: 2px;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
  margin: 0 0 0 25px;
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.lang-btn img {
  width: 20px;
  height: auto;
  display: block;
}

.lang-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 4px 0;
  background: #fff;
  border: 1px solid #ccc;
  list-style: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 36px;
}

.lang-menu li a {
  display: block;
  padding: 4px 6px;
  transition: background 0.2s ease;
}

.lang-menu li a:hover {
  background-color: #f2f2f2;
}

.lang-menu li a img {
  width: 20px;
  height: auto;
  display: block;
}

.lang-dropdown:hover .lang-menu {
  display: block;
}

.edd_downloads_list {
	display: flex;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 999;
}

.burger:hover{
	background-color: transparent !important;
}

.burger span {
  height: 4px;
  width: 100%;
  background-color: #008ecc;
  display: block;
  margin-bottom: 4px;
}

.burger span:last-child {
  margin-bottom: 0;
}

 .paypal-button {
	padding: 12px 24px;
	font-size: 16px;
	background-color: #ffc439;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.paypal-button:hover {
	background-color: #ffb347;
}

.vonavpilot-comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 10px 0;
}

.vonavpilot-comparison th,
.vonavpilot-comparison td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.vonavpilot-comparison th {
  background-color: #00152a;
  color: #fff;
}

.vonavpilot-comparison td.available {
  color: green;
  font-size: 18px;
  font-weight: bold;
}

.vonavpilot-comparison td.unavailable {
  color: red;
  font-size: 18px;
  font-weight: bold;
}

.vonavpilot-comparison tr.price-row td {
  font-weight: bold;
}


@media (max-width: 600px) {
	body {
		display: flex;
		height: 100%;
		margin: 0;
		padding: 0;
		flex-direction: column;
		min-height: 100vh;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
		background: #f5f5f5;
		color: #333;
		font-size: 16px;
	}

	.faq-groups-nav{
		position: fixed;
		top: 90px;
		right: 0px;
		display: flex;
		flex-direction: row;
		z-index: 10;
	}

	.faq-groups-nav span {
		display: flex;
		padding: 10px;
		align-items: center;
		justify-content: center;
		color: #fff;
		cursor: pointer;
		font-size: 9px;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	}

	.site-header {
		flex-direction: column;
		align-items: center;
	}

	.site-nav {
		margin-top: 1rem;
		width: 100%;
		display: flex;
		flex-direction: column;
	}

	.site-nav a {
		margin: 0.5rem 0;
	}

	.section-content {
		margin-bottom: 40px;
		background: #f9f9f9;
		padding: 110px 15px 15px 30px;
		border-radius: 8px;
		margin: 25px;
		line-height: 30px;
		position: relative;
		overflow: hidden;
	}

	.section-content img {
		display: flex;
		width: 100%;
		height: auto;
		margin: auto;
		border: 1px solid #ccc;
		border-radius: 8px;
	}

	.section-content.story, 
	.section-content.how-works{
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.section-content.story .story-banner,
	.section-content.how-works .how-works-banner{
		display: flex;
		width: 100%;
	}

	.section-content.how-works.small .how-works-banner{
		display: flex;
		width: 100%;
	}

	.section-content.how-works.small .how-works-text{
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.section-content.how-works.large .how-works-banner{
		display: flex;
		width: 100%
	}

	.section-content.how-works.large .how-works-text{
		display: flex;
		flex-direction: column;
		width:100%
	}

	.star-rating img {
		display: flex;
		border: none;
		width: 20px;
		height: 20px;
	}

	.lang-dropdown {
		position: relative;
		display: inline-block;
		margin: 0px
	}

	.burger {
		display: flex;
		position: absolute;
		top: 20px;
		right: 20px;
	}

	.site-nav {
		display: none;
		padding: 1rem;
		flex-direction: column;
		z-index: 998;
	}

	.site-nav.open {
		display: flex;
	}

	.site-nav a {
		margin: 10px 0;
	}

	.hero .content .hero-title {
		font-size: 40px;
	}

	.hero .content .shop-hero-title {
		font-size: 18px;
	}

	.hero .content .hero-description {
		font-size: 24px;
		display: flex;
		justify-content: center;
	}

	.vonavpilot-comparison th,
	.vonavpilot-comparison td {
	  border: 1px solid #ddd;
	  padding: 2px;
	  text-align: center;
	  font-size: 10px;
	}

	p {
		font-size: 12px;
	}
}