@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Cairo', sans-serif;
  background-color: #0f0f0f;
  color: #fff;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

 .menu-close { 
  display: none;
 }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, #00f5a0, #00d9f5);
  padding: 10px 0;
  padding-bottom: 50px;
  text-align: center;
  color: #000;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero h1 span {
  color: #000;
  font-weight: bold;
}
.hero p {
  margin-top: 15px;
  font-size: 1.1rem;
}

.hero-content {
  padding-top: 10px;
  padding-bottom: 40px;
  text-align: center;
  max-width: 700px;
  margin: auto;
}



/* ---------- NAVBAR ---------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
}
.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links li a {
  font-weight: 500;
  transition: 0.3s;
}
.nav-links li a:hover {
  color: #000;
}

/* ---------- BUTTONS ---------- */
.btn, .btn-outline {
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}
.btn {
  background: #000;
  color: #00f5a0;
  cursor: pointer;
  box-shadow: 0 0 0 2px #00f5a0 inset, 0 0 15px #00f5a0;
  transition: all 0.3s ease;
}
.btn-outline {
  border: 2px solid #000;
  color: #000;
  background: transparent;
}
.btn:hover, .btn-outline:hover {
  transform: translateY(-2px);
}

form .btn {
  background: linear-gradient(135deg, #00f5a0, #00d9f5);
  color: #000;
  font-weight: bold;
  padding: 14px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 0 0 2px #00f5a0 inset, 0 0 15px #00f5a0;
  transition: all 0.3s ease;
}

form .btn:hover {
  background: linear-gradient(135deg, #00e09a, #00c4e0);
  box-shadow: 0 0 12px #00f5a0, 0 0 25px #00f5a0;
  transform: translateY(-2px);
}


/* ---------- SECTION ---------- */
.section {
  padding: 80px 0;
  text-align: center;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.section p {
  font-size: 1.1rem;
  text-align: left;
}

/* ---------- CARDS GRID ---------- */
.cards {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 40px;
}
.card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  transition: 0.3s;
}
.card img {
  max-width: 80px;
  margin-bottom: 20px;
}
.card h3 {
  color: #00f5a0;
  margin-bottom: 10px;
}
.card:hover {
  transform: translateY(-5px);
  background: #222;
}

/* ---------- FORM ---------- */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
input, textarea {
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #222;
  color: #fff;
  font-size: 1rem;
}
input:focus, textarea:focus {
  outline: 2px solid #00f5a0;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #000;
  padding: 30px 0;
  text-align: center;
  color: #999;
}
.footer-links {
  margin-top: 10px;
  font-size: 0.9rem;
}
.footer-links a {
  color: #aaa;
  margin: 0 5px;
}
.footer-links a:hover {
  color: #00f5a0;
}

/* ---------- COOKIE BANNER ---------- */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #222;
  padding: 15px;
  color: #fff;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  z-index: 999;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
#accept-cookies {
  background-color: #00f5a0;
  color: #000;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#decline-cookies {
  background-color: #444;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-info {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
}
.contact-info p {
  margin: 10px 0;
}
.map-wrapper {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-about .section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.about-intro {
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.about-intro .highlight {
  font-weight: 600;
  color: #00f7c1;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: none;
  padding: 1rem;
  text-align: center;
  max-width: 220px;
}

.feature-card .icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}

.about-end {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 40px;
  width: auto;
}
.logo-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
}
.small-hero {
  background: linear-gradient(135deg, #00f5a0, #00d9f5);
  padding: 60px 0;
  color: #000;
  text-align: center;
}



/* Мобильное меню */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    height: 50%;
    width: 250px;
    background: #fff;
    padding: 80px 20px;
    box-shadow: 2px 0 12px rgba(0,0,0,0.1);
    transition: left 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-links li a {
    color: #000;
    padding: 12px 0;
    display: block;
    font-size: 1.2rem;
  }

  .nav-links.show {
    left: 0;
  }

  .menu-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
  z-index: 1001;
  display: none;
}
.nav-links.show ~ .menu-close {
  display: block;
}

}