/* Mobile Overrides for Combafit */

body {
  padding-top: 80px;
  font-size: 16px;
  text-align: left;
}
.logo {
    position: fixed;
    top: 20px; /* Moves it slightly above the header */
    left: 20px; /* Aligns to the left */
    z-index: 1002; /* Ensures it's above the header */
}
.logo img{
  height: 60px;
}
header {
  height: 60px;
  padding: 5px 10px;
}
@media (max-width: 768px) {
  header {
    position: fixed; /* Keeps the header fixed */
    top: -500px;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #0a0a0a; /* Solid black */
    z-index: 1000; /* Ensures it's always on top */
    padding: 1px 0;
}
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  align-items: flex-end;
}

.menu li a,
.menu a {
  font-size: 16px;
  line-height: 1.4;
}

.gallery-container,
.equipment-gallery,
.content_Services {
  flex-direction: column;
  width: 100%;
  gap: 10px;
  padding: 20px;
}

.gallery-image,
.box-image,
.box,
.boxes {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.gallery-image {
  border: 3px solid gold;
}

#prevBtn, #nextBtn {
  display: none;
}

.intro-section {
  width: 100%;
  padding: 20px;
  margin-top: 60px;
}

.social-links {
  justify-content: center;
  gap: 10px;
}

.social-links a img {
  width: 30px;
}

.content_Services button,
.content_Services input,
.content_Services textarea {
  width: 100%;
  font-size: 14px;
  padding: 10px;
}

textarea[name="message"] {
  height: 100px;
}

footer {
  text-align: center;
  padding: 20px;
}

.desktop-menu,
.watermark-right {
  display: none;
}

/* Mobile Menu */
.menu-toggle,
.lang-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 18px;
  z-index: 1001;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
}

.menu-toggle {
  top: 16px;
  font-size: 28px;
  right: 20px;
}

.menu-overlay {
  display: none;
}

.menu-overlay.open {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.8);
  z-index: 999;
}

.side-menu {
  right: -100%;
  width: 40%;
  height: 100%;
  background: #0a0a0a;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  padding-top: 80px;
  position: fixed;
  top: 20px;
}

.side-menu.open {
  right: 0;
}

.side-menu .menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.side-menu .menu li a {
  position: relative;
  top: -250px;
  margin-top: -20px;
  font-size: 20px;
  color: gold;
  text-decoration: none;
  font-weight: bold;
}
.menu-toggle,
.lang-toggle {
  display: block !important;
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 18px;
  z-index: 1002;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
}

/* Optional: separate them */
.lang-toggle {
  right: 80px;
}

.menu-toggle {
  top: 17px;
}

.box,
.boxes {
  width: calc(100% - 40px); /* Full width minus left/right gap */
  margin: 0 auto 20px auto; /* Centered with bottom spacing */
  padding: 16px;
  box-sizing: border-box;
  border-radius: 10px;
  color: gold;
}

.lang-toggle {
  color: #ffd700;           /* Gold color */
  text-decoration: none;    /* No underline */
  font-weight: bold;        /* Bold text */
  font-size: 18px;          /* Readable size */
}
