﻿/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
}

/* === HEADER === */
.header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

/* Logo */
.logo img {
  max-height: 50px;
  width: auto;
}

/* Phone centered on mobile */
.call-now-mobile {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
}

.call-now-mobile a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

/* === Burger Button === */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001; /* выше меню */
}

.burger span {
  width: 28px;
  height: 3.5px;
  background: #fff; /* белый */
  border-radius: 2px;
  transition: background 0.3s;
}

/* === Mobile Menu Overlay === */
.mobile-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 28px; /* БОЛЬШЕ */
  font-weight: bold;
}

/* === Кнопка телефона в меню === */
.mobile-menu .mobile-call {
  font-size: 20px;
  padding: 12px 24px;
}

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 0.3s ease;
  z-index: 999;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

/* Optional phone link inside mobile menu */
.mobile-menu .mobile-call {
  display: inline-block;
  margin-top: 20px;
  background: #f7a823;
  padding: 10px 20px;
  border-radius: 6px;
  color: #fff;
}

/* === HERO === */
.hero {
  margin-top: 90px; /* compensate for fixed header */
  padding: 140px 20px 80px;
  text-align: center;
  background: #707070; /* temporary grey */
  color: #fff;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero .hero-call-btn {
  background: #f7a823;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .burger {
    display: flex;
  }
}
