/* styles.css */
:root {
  --primary-color: #003366;        /* Dark blue for primary elements */
  --secondary-color: #6699CC;      /* Light blue for secondary elements */
  --btn-primary-color: #FF6600;    /* Orange for primary buttons */
  --btn-secondary-color: #333333;  /* Dark gray for secondary buttons */
  --light-green: #EEEEEE;          /* Changed to light gray (no green in palette) */
  --background-secondary-color: #6699CC; /* Light blue for secondary backgrounds */
  --white: #FFFFFF;                /* Keeping white as is */
  --light-gray: #EEEEEE;           /* Using the lightest gray from palette */
  --gray: #6699CC;                 /* Using light blue as mid-tone */
  --dark-gray: #333333;            /* Using the dark gray from palette */
  --black: #000;                /* Using darkest color from palette for black */
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

html {
  height: 100%;
  background: var(--black);
}

body {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	transition: all linear 0.2s;
}

section {
  padding:6rem 0;
}
section.list-section{
	padding-top:3rem;
}


textarea.form-control {
  min-height:320px;
}

form label{
	font-weight: bold;
	margin-top:1rem;
}
form .btn{
	margin-top:2rem;
}

.navbar .container{
	max-width: 1600px;
}

.navbar.fixed,
.navbar.home.fixed{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index: 1001;
	padding:0;
	transition: all linear 0.2s;
	background: var(--white);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-toggler {
  font-size: var(--bs-navbar-toggler-font-size);
  color: var(--bs-navbar-color);
  background-color: transparent;
  border:none;
}

.fixed .navbar-toggler{
	color:#fff;
}

.navbar .nav-link,
.navbar.home.fixed .nav-link {
  color: var(--primary-color);
}

.navbar .nav-link.active,
.navbar.home .nav-link.active {
	color: var(--btn-primary-color);
	font-weight: bold;
}

.navbar.fixed #logo {
	width:140px;
}

.navbar.fixed .nav-link,
.navbar.fixed .btn {
  font-size: 0.8rem;
}

.navbar.fixed .btn {
  margin-top: 0;
  padding: 0.4rem 1.2rem 0.3rem;
}

.navbar .btn {
  margin-top: -5px;
}

.navbar .btn.btn-primary{
	background-color: var(--secondary-color);
	margin-right:20px;
}

.lang-item .nav-link {
  margin-left: 0;
  margin-right: 0;
}

.list-group-item a{
	text-decoration: none;
}

#bc{
	background: var(--light-gray);
}

.breadcrumb {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--light-gray);
  background: transparent;
  margin:0 0 -1px;
}



.hero-image video {
  width: 100%;
}


.breadcrumb li{
	margin-right:0.5rem;
	font-size:0.85rem;
}

.breadcrumb li::before{
	content: "-";
	font-weight:bold;
	margin-right:0.5rem;
}
.breadcrumb li:first-child::before{
	content: none;
}

.breadcrumb li a{
	font-weight: normal;
	text-decoration: none;
}
.item-options .ckeditor{
	background-image:none;
}

.menu-item {
  text-decoration:none;
}

table{
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-body-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-body-color);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: var(--bs-body-color);
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: var(--bs-body-color);
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  vertical-align: top;
  border-color: var(--bs-table-border-color);
}

h1,h2,h3,h4,h5,h6,.subtitle {
	font-family: 'Squada One', sans-serif;
	color: #0f3866;
	text-transform: uppercase;
}

a{
	color: var(--btn-primary-color);;
}

p,.text-content li, .text-content td {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  line-height: 2.4rem;
  color: #191919;
  margin-bottom: 1.5rem;
}

.text-content li{
	margin-bottom: 0.3rem;
}

.text-content ul{
	margin-bottom: 2rem;
}

.page-item li,.page-item td,.page-item th{
	font-size: 1.35rem;
}

.btn-right,
.btn-block {
  margin-top: 1rem;
  display:block;
}

.hero h1,
.intro-section h1,
.items-section h2,
.contact-section h2 {
	font-size: 4.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	letter-spacing: -0.02em;
}

.hero h1{
	font-family: 'Roboto';
	font-weight: 100;
	margin-top:100px;
	margin-bottom:100px;
	color: var(--white);
}

#logo{
	width:236px;
	height:60px;
	background:no-repeat center center;
	background-size:contain;
	transition:all linear 0.2s;
	background-image:url('/images/logo-black.png') !important;
}

.navbar.home #logo{
	background-image:url('/images/logo-white.png') !important;
	width:236px;
}

.navbar.fixed #logo,
.navbar.home.fixed #logo{
	background-image:url('/images/logo-black.png') !important;
	width:160px;
}


/* Navigation */
.navbar {
	background-color: var(--white);
	padding: 1rem 0;
	z-index: 1;
}

.navbar.home {
  background:transparent;
}

.navbar-brand {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 1.5rem;
}

.nav-link {
	color: var(--secondary-color);
	margin: 0 1rem;
	font-weight: 500;
	text-transform: uppercase;
	font-weight: 300;
	font-family: 'Roboto';
}

.navbar.home .nav-link{
	color: var(--white);
}

.navbar-nav .nav-link:hover{
	color: var(--btn-secondary-color);
}

.lang-item a{
	display: inline-block;	
}

.btn {
  border-radius: 25px;
  padding: 0.8rem 1.6rem;
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer !important;
  font-size:1rem;
}

.btn-primary {
	background-color: var(--btn-primary-color);
}
.btn-secondary {
	background-color: var(--secondary-color);
}
.btn-tertiary{
	background-color: var(--white);
	color: var(--btn-primary-color);
	border: 1px solid var(--btn-primary-color);
}

.btn:hover {
	border-color: transparent;
	background-color: var(--secondary-color);
	color: var(--white);
}

.btn-tertiary:hover{
	background-color: var(--btn-primary-color);
}

.btn{
	transition: all linear 0.2s;
}

/* Intro section list pages */
.intro-section,
.item-detail,
.contact-section {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 2rem 0;
	position: relative;
	overflow: hidden;
}

.intro-section.start-section {
	background-color: var(--white);
}
.intro-section.start-section h1{
	color: var(--black);
	font-weight: 700;
}
.intro-section.start-section h1 strong{
	color: var(--primary-color);
	font-weight: 700;
}

.contact-section {
  padding-top: 3rem;
}

.contact-section .form p{
	color: var(--white);
}

.item-detail{
	background-color: var(--white);
	color: var(--black);
}

.item-detail h1 {
  font-size: 3.3rem;
}

.item-detail table{
	border:none;
}

.item-detail table tr:first-child td{
	font-weight:bold;	
}

.item-detail table td {
  width: 50%;
  font-size: 1.2rem;
}

.item-detail .text-content{
	padding-right: 5rem;
}

.intro-section p{
	color: var(--white);
}

.item-detail.intro-section,
.item-detail.intro-section p{
	color: var(--black);
}

.intro-buttons{
	margin-top:2rem;
}

.intro-section .intro-buttons .btn{
	display: block;
	margin-top:1rem;
}

.intro-section .form {
  padding: 2.2rem 2rem 2rem;
  background: var(--white);
  margin-bottom: -2rem;
  border-radius:20px 20px 0 0
}

.intro-section .form .form-control{
	border-color: var(--btn-secondary-color);
}

.items-section{
	padding:5rem 0;
	position:relative;
}
.items-section h2{
	font-size:3rem;
}

.items-section h2.item-title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.items-section .btn .fa{
	margin-left:15px;
}

.meta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--btn-secondary-color);
  margin:0 5px 5px 0;
}

.items{
	padding:45px 0;
}

.items h2{
	
}
.sticky-sidebar {
	transition: top 0.2s ease;
}

@media (max-width: 767px) {
	.sticky-sidebar {
		position: static !important;
		width: auto !important;
	}
}


blockquote {
  padding:1rem;
  background:#f0f0f0;
  border-left:5px solid darkgray;
}
blockquote p {
  margin:0;
}

.product-item {
  padding-bottom: 3rem;
}

.item-image {
  width: 100%;
  height: 350px;
  border-radius: 5px;
  background:no-repeat center center;
  background-size: 100% auto;
  margin-bottom: 3rem;
  display: block;
  transition: all linear 0.2s;
}

.item-image.item-image-1{
	background-position: center top;
	height:500px;
}

#product_detail_gallery .item-image{
	height: 580px;
}

.list-group.list-group-flush{
	border-top: 1px solid var(--bs-list-group-border-color);
	border-bottom: 1px solid var(--bs-list-group-border-color);
}

.list-group-item.active {
  z-index: 2;
  background-color: transparent;
  border-color: var(--bs-list-group-border-color);
  font-weight:bold;
}

.list-group-item a{
	transition:all linear 0.2s;
	display:block;
}

.list-group-item a:hover{
	margin-left:5px;
}

.list-group-item.active a{
	color: var(--secondary-color);
}

/*
.item-image:hover {
  background-size: 110%;
}
*/

.item-detail .item-image {
  height: 350px;
  background-size: cover;
}

.form label{
	color: var(--black);
}

.form p {
	color: var(--primary-color);
	font-size: 01rem;
	line-height: 1.4rem;
	margin: 1rem 0;
}

.form .form-control,
.login-form .form-control{
	margin-bottom: 0.5rem;
}

.login {
  margin: 5rem 0 10rem;
}

.login h1 {
  color: #fff;
}

.login-form{
	margin-bottom:6rem;
}

.login-form p{
	margin-bottom: 0.5rem;
}

.sub-section {
	background-color:#eaeaea;
}

.sub-section h2{
	font-size:4rem;
	color: var(--btn-secondary-color);
}

.square{
	width:80px;
	height:80px;
	position:absolute;
	top:0;
	right:0;
	margin:-20px -20px 0 0;
}

.sub-section .square{
	background-color: #d0d0d0;
	box-shadow: -20px 20px 0 #b8b8b8;
	margin-right:100px;
}

section.quote{
	padding:2rem;
}

.quote .block{
	padding:6rem;
	background: var(--btn-primary-color);
	position:relative;
}

.quote .square{
	background-color: #c74f12;
	box-shadow: -20px 20px 0 #ff9f6e;
}

.quote h6{
	font-weight:300;
	margin-top:-115px;
	font-size:1.8rem;
	font-family: 'Roboto';
}
.quote h6,
.quote p{
	color:#fff;
	text-align: right;
}

.quote h2{
	font-size:6rem;
	color:#000;
	line-height:1;
}

.quote h2 big{
	font-size:12rem;
}

.quote h2 strong{
	font-weight: normal;
	color:#fff;
}

.intro-section .subtitle p{
	color: var(--black);
	text-align: left;
	font-size: 2.1rem;
	font-weight: 800;
}

.catImage.detail {
  float: right;
  width: 40%;
  margin: 0.5rem 0 3rem 3rem;
}

.catImage {
  margin-right: 2rem;
}

.catImage img{
	display: block;
	width:100%;
}

/* Hero Section */
.hero {
  background-color: var(--black);
  color: var(--white);
  padding:8rem 0 3rem;
  position: relative;
  overflow: hidden;
  margin-top: -92px;
}

.hero .overlay{
	position:absolute;
	top:0;
	left:0;
	opacity:0.8;
	width:100%;
	height:100%;
	background: #020024;
	background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(0, 0, 0, 0) 0%, rgba(3, 0, 0, 1) 100%);
}

.hero-image{
	background: no-repeat center top;
	background-size: cover;
	position: absolute;
	top:0; 
	left:0;
	width:100%;
	height:100%;
	opacity:0.85;
}

.hero > .container {
  position: relative;
  padding-bottom: 3rem;
}

.hero p{
	font-size: 1.6rem;
}

.hero .btn{
	margin-bottom:1rem;
}

.button-group {
	margin-top: 2rem;
}

.button-group .btn {
	margin-right: 1rem;
}

/* Brands Section */
.brands-section {
	padding: 1rem 0;
	background: var(--white);
}

.brands-section h2 {
	text-align: center;
	margin-bottom: 5rem;
	color:#fff;
}

.brands-section p{
	color:#fff;
	margin-bottom:0;
}

.brands-grid img {
  height: auto;
  transition:filter 0.3s;
  max-height: 65px;
  margin:2rem auto;
  display: block;
  filter: grayscale(100%);
}

.brands-grid img:hover {
	filter: grayscale(0%);
}

.contact-block {
  margin-top: 2rem;
}

/* Footer */
footer {
	background-color: #979797;
	padding: 3rem 0;
	color: var(--white);
}

footer p, .footer a, footer li {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6rem;
}

footer ul {
  padding: 0 0 0 15px;
}

footer li a{
	text-decoration: none;
	color: var(--gray);
}

footer li{
	color: var(--btn-secondary-color);
}

footer h4{
	font-weight: bold;
	margin-bottom:20px;
	color: var(--white);
	font-size: 3rem;
}

.copyright{
	background:#5d5d5d;
	padding:0.8rem 0;
	text-align: center;
}

.copyright p{
	color: #b5b5b5;
	padding:0;
	font-size:0.8rem;
	margin:0;
}


.social-icons a {
  color: var(--white);
  background: var(--btn-secondary-color);
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-size: 1.7rem;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  display: inline-block;
  border-radius:50%;
  transition:all linear 0.2s;
}


.social-icons a:hover{
	background: var(--dark-gray);
}

.social-icons.contact-icons{
	width:100%;
	text-align:left;
}
.social-icons.contact-icons .link{
	font-size:1.3rem;
}
.social-icons.contact-icons .link > a {
  background: none;
  width: auto;
  font-size: 1.2rem;
}
.social-icons.contact-icons .link > a:hover{
	text-decoration: none;
}

.footer-logo {
  height: auto;
  margin-bottom: 2rem;
  width: 282px;
}

.page-item {
	padding:3rem 0 2rem;
}

.page-item h2{
	font-size: 3rem;
	font-weight: 800;
}

#back_to_top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--secondary-color);
  text-align: center;
  z-index: 1000;
  border-radius: 50%;
  cursor: pointer;
  transition: linear all 0.2s;
}

/* Responsive Design */
@media (max-width: 768px) {
	
	.hero-row > .col-lg-6{
		padding-top:130px;
	}
	
	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	  --bs-gutter-x: 2.5rem;
	  --bs-gutter-y: 2.5rem;
  	}
	  
	.navbar.home #logo {
		background-image: url(/images/logo-black.png) !important;
		width: 236px;
	}
	
	.hero > .container {
	  padding-bottom: 0;
	}
	  
	h1 {
	  font-size: 3rem;
	}
	
	.items-section h2 {
	  font-size: 2.5rem;
	}
	
	.items-section {
	  padding: 3rem 0;
	}
	
	.item-image {
	  height: 260px;
	  margin-bottom: 1rem;
	}
	
	.hero h1 {
		font-size: 2.5rem;
		color: #000;
		text-align: center;
		margin-bottom:20px;
	}
	
	.button-group .btn {
		display: block;
		margin-bottom: 1rem;
		width: 100%;
	}

	.brands-grid .col-md-2 {
		text-align: center;
		margin-bottom: 2rem;
	}
	.hero-image{
		margin-top: 0;
		background: no-repeat -100px top;
	}
	.hero {
		padding: 3rem 0 3rem;
		background: #fff;
		margin-top:0;
	}
	
	.hero .overlay{
		display:none;
	}
	
	section.quote {
	  padding: 0;
	}
    .quote .block {
		padding: 3rem;
		padding-top: 3rem;
		padding-top: 6rem;
	  }
	.quote h6 {
	  margin-top: 0;
	}
	
	.quote h2 big {
	  font-size: 8rem;
	}
	
	.quote h2 {
	  font-size: 4rem;
 	}
	
	.contact-section h2 {
	  font-size: 2.5rem;
    }
	
	.item-detail .text-content {
	  padding-right: 1.5rem;
	}
	
	#bc {
	  display: none;
	}
	
	.footer-logo {
	  height: auto;
	  width: 282px;
	  margin: 5rem auto 2rem;
	  position: relative;
	  display: block;
	}
	
	.social-icons {
		text-align: center;
	}
	.social-icons a {
		margin-left: 0.5rem;
		margin-right:0.5rem;
		margin-bottom:2rem;
	}
	
	.team-item-block {
	  margin-top: 3rem;
	  min-height: auto;
	  padding: 0;
	}
	.hub-section h2 {
	  font-size: 2.6rem;
	  margin-bottom: 3rem;
	  text-align: center;
	}
	
	.intro-section h1 {
	  font-size: 2.5rem;
	  margin-bottom: 1.5rem;
	  margin-top: 2rem;
	}
	.intro-section .form {
	  padding: 1.5rem;
    }
	
	.lang-item a{
		padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
		margin: 0 1rem;
		display: inline;
	}
	.lang-item {
		display: inline-block;
		padding: 15px;
		margin-right: 15px;
	}
	
	.lang-item .nav-link {
	  margin-left: 0;
	  margin-right: 15px;
	}
	
	.navbar.home .nav-link {
	  color: var(--primary-color);
	}
}

@media only screen and (min-width: 768px) and (max-width: 1100px){
	.hero {
	  padding: 8rem 0 2rem;
	}
	
	.hero .offset-md-6 {
		margin-left: 0;
	}
	
	.hero h1 {
	  margin-top: 0;
	  margin-bottom: 0;
	  font-size: 2.3rem;
	}
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	max-width: 1480px;
  }
}