/* ==========================================================================
   POS Page Styles
   ========================================================================== */

/* CSS Variables */
:root {
  --colorPrimaryLight: #bcdd7a;
  --colorPrimaryDark: #216d39;
  --colorAccent: #F7953C;
  --colorGray: #cccccc;
  --colorDark: #3f3e3e;
  --colorText: #272a15;
  --colorTextGray: #9c9c9c;
  --colorHero: #32a549;
}

/* Typography specific to POS page */
h1, h2 {
  font-family: helvetica, arial, sans-serif;
  font-size: 55px;
  font-weight: 700;  
  letter-spacing: 1px;
}

h3, h4 {
  font-family: helvetica, arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
}

h5 {
  font-family: helvetica, arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Buttons */
.btn {
  font-size: 14px;
  border-radius: 8px;
  font-weight: 400;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  display: inline-block;
}

.btn:focus,
.btn:active {
  box-shadow: none;
  outline: none;
  color: #fff;
}

button:focus {
  outline: none !important;
}

/* Section Header */
.section-header {
  color: #fff;
  margin-bottom: 45px;
  text-align: center;
}

.section-header .section-title {
  font-size: 30px;
  margin-top: 1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #333;
  position: relative;
}

.section-header .section-title span {
  color: var(--colorPrimaryDark);
}

.section-header .section-subtitle {
  margin-top: 15px;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.section-header .lines {
  margin: auto;
  width: 70px;
  position: relative;
  border-top: 2px solid #7db208;
  margin-top: 15px;
}

/* Hero Area */
#hero-area {
  background-color: white;
}

.hero {
  position: relative;
  height: 60vh;
  background: url('/bl-themes/muaday/assets/img/home/hero-bg.jpg') no-repeat center center;
  background-attachment: fixed;
  background-size: auto 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(234, 234, 234, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

#hero-area h2 {
  font-size: 36px;
  color: #239a29;
  font-weight: normal;
}

#hero-area h5 {
  font-size: 28px;
  color: #3f3e3e;
  font-weight: normal;
}

img.img-hero {
  min-height: 300px;
  object-fit: cover;
}

/* Feature Sections with Background Images */
#milk-tea {
  background-image: url(/bl-themes/muaday/assets/img/home/milk-tea.jpg);
  background-size: cover;
  background-position: center;
}

.note {
  position: relative;
  width: 30%;
  padding: 1em 1.5em;
  margin: 8px;
  color: var(--colorPrimaryDark);
  background: #97C02F;
  overflow: hidden;
  -moz-border-radius: 25px 0 25px 25px;
  border-radius: 25px 0 25px 25px;
}

.note:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 40px 40px 0;
  border-style: solid;
  border-color: #fff #fff #658E15 #658E15;
  background: #658E15;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  box-shadow: 0 3px 3px rgba(0,0,0,0.3), -1px 1px 1px rgba(0,0,0,0.2);
  display: block;
  width: 0;
  -moz-border-radius: 0 0 0 25px;
  border-radius: 0 0 0 25px;
}

.note.rounded {
  -moz-border-radius: 25px 0 25px 25px;
  border-radius: 25px 0 25px 25px;
}

.note.rounded:before {
  border-width: 8px;
  border-color: #fff #fff transparent transparent;
  -moz-border-radius: 0 0 0 25px;
  border-radius: 0 0 0 25px;
}

#shopping-online {
  background-image: url(/bl-themes/muaday/assets/img/home/shopping-online.jpg);
  background-size: cover;
  background-position: center;
}

#shopping-online h4, 
#shopping-online p {
  color: white;
}

#inventory {
  background-image: url(/bl-themes/muaday/assets/img/home/inventory.jpg);
  background-size: cover;
  background-position: center;
}

#inventory h4, 
#inventory p {
  color: white;
}

#cloud-sync {
  background-image: url(/bl-themes/muaday/assets/img/home/cloud-sync.jpg);
  background-size: cover;
  background-position: center;
}

#cloud-sync h4, 
#cloud-sync p {
  color: white;
}

/* Video Demo */
video.demo {
  border-radius: 35px;
  width: 100%;
}

/* Pricing Section */
#pricing {
  background-color: darkcyan;
}

#pricing h4, 
#pricing h5, 
#pricing tr, 
#pricing em {
  color: white;
}

#pricing .table {
  color: white !important;
  background-color: transparent !important;
  --bs-table-bg: transparent !important;
  --bs-table-striped-bg: transparent !important;
  --bs-table-color: white !important;
}

#pricing .table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: rgba(0, 0, 0, 0.15) !important;
  background-color: rgba(0, 0, 0, 0.15) !important;
  color: white !important;
}

#pricing .table-striped > tbody > tr:nth-of-type(even) > * {
  --bs-table-accent-bg: rgba(0, 0, 0, 0.05) !important;
  background-color: rgba(0, 0, 0, 0.05) !important;
  color: white !important;
}

#pricing .table thead th {
  color: white !important;
  background-color: rgba(0, 0, 0, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

#pricing .table tbody th,
#pricing .table tbody td {
  color: white !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

#pricing th {
  font-size: large;
}

#pricing td {
  font-size: large;
}

#help-qr {
  font-size: large;
}

#pos h4, 
#pos h5 {
  color: var(--colorPrimaryDark);
}

/* Icon Section */
.item-boxes {
  text-align: center;
  padding: 0px 15px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-boxes .icon {
  width: 60px;
  height: 60px;
  text-align: center;
  border: 1px solid var(--colorPrimaryLight);
  display: inline-block;
  border-radius: 30px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.item-boxes .icon i {
  font-size: 36px;
  line-height: 60px;
  color: var(--colorPrimaryLight);
}

.item-boxes h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.link-download {
  margin-top: 70px;
}

/* Card Styles */
.card {
  border-radius: 25px;
  padding: 30px 0;
  margin: 8px;
  overflow: hidden;
  position: relative;
}

.section-green {
  background-color: var(--colorPrimaryDark);
}

.section-green h4 {
  color: white;
}

.section-green h5 {
  color: var(--colorPrimaryLight);
}

.section-green p {
  color: white;
  font-size: medium;
}

.section-green hr {
  margin: auto;
  position: relative;
  border-top: 2px solid white;
  margin: 15px;
}

.section-gray {
  background-color: #f1f1f1;
}

.section-smoke {
  background-color: whitesmoke;
}

.section-light {
  background-color: #f8f9fa;
}

.section-white h4 {
  color: var(--colorPrimaryDark);
}

.section-white h5 {
  color: #3f3e3e;
}

.card img {
  width: 80%;
}

/* Video Promo Section */
.video-promo {
  background: #49a151;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.video-promo .video-promo-content {
  color: #fff;
}

.video-promo .video-promo-content h2 {
  color: #fff;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.video-promo .video-promo-content p {
  margin-bottom: 30px;
}

.video-promo .video-promo-content .video-popup {
  width: 80px;
  height: 80px;
  text-align: center;
  border: 3px solid #fff;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  font-size: 30px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.video-promo .video-promo-content .video-popup i {
  line-height: 72px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #7db208;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

/* Responsive Styles */
@media (max-width: 992px) {
  img.hero {
    height: 150px;
  }

  h1, h2 {
    font-family: helvetica, arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
  }

  h3, h4 {
    font-family: helvetica, arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
  }
}
