/*
Theme Name: Sapport Theme
Theme URI: https://sap-port.co.il/
Author: Your Name
Description: Custom theme inspired by sap-port.co.il, fully editable via admin, responsive, RTL support, no shop/blog.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sapport-theme
Tags: custom, responsive, rtl-language-support
*/

html, body {
    direction: rtl;
    text-align: right;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f7f7;
    color: #222;
    overflow-x : hidden;

}

/* Responsive base styles */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
#main-menu {
  direction: rtl;
  text-align: right;
}

#main-menu li {
  float: right;
}


/* Hide submenus by default */
ul.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.navbar-nav li ul.sub-menu {
    display: none;
    position: absolute;
    right: 100%;
    top: 0;
    background: #fff;
    z-index: 999;
}

.slick-prev,
.slick-next {
  display: block !important;
  z-index: 10;
  font-size: 0; /* optional if you're replacing text with icons */
  width: 40px;
  height: 40px;
  background: #fd9025;
  color: white;
  border: none;
  outline: none;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}

.slick-prev {
  right: auto;
  left: 10px;
}

.slick-next {
  left: auto;
  right: 10px;
}


@media (max-width: 768px) {
    .container {
        width: 98%;
    }
}

/* RTL support */
body.rtl {
    direction: rtl;
    text-align: right;
    overflow-x : hidden;
}


  