/* styles-mobile.css */

@font-face {
  font-family: 'NRT';
  src: url('content/fonts/NRT-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

/* Apply NRT Font */
body, h1, h2, h3, h4, h5, h6, a {
  font-family: 'NRT', sans-serif !important;
  font-weight: bold;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #F5F5F5;
}

main {
  padding-top: 0;
  margin-top: 0;
}

/* Header Banner */
.banner {
  background-color: #d32f2f;
  color: white;
  text-align: center;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin: 5px 0;
}
.banner h4, .banner h6 {
  font-size: 10px;
  margin: 0;
  line-height: 1.2;
}

/* Hamburger Menu */
.hamburger {
  font-size: 24px;
  color: white;
  background: transparent;
  border: none;
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 3000;
  cursor: pointer;
}

/* Sidebar (Mobile Navbar) */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2500;
  top: 0;
  left: 0;
  background-color: #d32f2f;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
}

.sidebar.open {
  width: 250px;
}

.sidebar a {
  padding: 10px 20px;
  text-decoration: none;
  font-size: 14px;
  color: white;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  background-color: rgba(255,255,255,0.1);
  color: #ffdede;
}

.sidebar .submenu {
  display: none;
  padding-left: 20px;
}

.sidebar .submenu.show {
  display: block;
}

.sidebar .submenu h4 {
  font-size: 14px;
  color: white;
  margin-top: 10px;
  margin-bottom: 5px;
}

.sidebar .submenu a {
  font-size: 13px;
  padding: 4px 0;
  display: block;
  color: white;
}

/* Hide sidebar content by default */
.sidebar-content {
  display: none;
}
.sidebar.open .sidebar-content {
  display: block;
}

/* Gallery Items */
.row.align-items-start .gallery-item {
  background-color: #fff;
  border-radius: 10px;
  margin: 10px auto;
  width: 377px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.row.align-items-start .gallery-item img {
  width: 600px;
  height: 300px;
  object-fit: cover;
  border: 2px solid red;
  border-radius: 10px;
}
.row.align-items-start .gallery-item .caption {
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
  color: black;
  transition: color 0.3s;
}
.row.align-items-start .gallery-item:hover .caption {
  color: red;
}

/* Brands Section */
.brands {
  text-align: center;
  padding: 20px 10px;
  background-color: #f5f5f5;
}
.brands h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
.brands .brand-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.brands .brand-item {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.brands .brand-item img {
  width: 60%;
  object-fit: contain;
}

/* Footer */
.footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 10px;
}
.footer p {
  margin: 0;
  font-size: 13px;
}

/* License list icons */
.license-list a {
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.license-list img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  object-fit: contain;
}

/* Remove Scroll-to-top and WhatsApp button */
.scroll-to-top,
.whatsapp-banner {
  display: none !important;
}

/* Hide slider arrows on mobile */
.slider-arrow {
  display: none !important;
}