/*
Theme Name: AT Mobile Tech
Author: AT Mobile Tech
Version: 1.0
Description: Custom lightweight theme for atmobiletech.shop
*/

/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
  color: #1e293b;
  background: #f8fafc;
  line-height: 1.6;
}
h1,h2,h3,h4 { color: #0f172a; font-weight: 700; }
a { color: #1d4ed8; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* Layout helpers */
.container { max-width: 1200px; margin: auto; padding: 1rem; }
.grid { display: grid; gap: 1.5rem; }
.text-center { text-align: center; }
.btn {
  background: #1e40af; color: white; padding: 10px 18px;
  border-radius: 6px; font-weight: 600; display: inline-block;
}
.btn:hover { background: #3749c9; }

/* Cards & sections */
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1.5rem;
}
.section-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

/* Reviews section */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.stars { color: #fbbf24; font-size: 1.5rem; }

/* Locations */
.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.location {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Forms */
form input, form select, form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 15px;
}
form button {
  background: #1e40af;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
form button:hover { background: #3749c9; }

/* Footer */
footer {
  background: #0f172a;
  color: #e2e8f0;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 2rem;
  font-size: 14px;
}

/* Navbar / mobile menu */
.navbar {
  background: #1e40af;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.nav-links {
  display: flex;
  gap: 1rem;
}
.nav-links a { color: white; }
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger div {
  width: 25px; height: 3px; background: white; margin: 4px;
}
@media(max-width:768px){
  .nav-links { display: none; flex-direction: column; width: 100%; background: #1e40af; }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
}
