/*
Theme Name: Technorizon
Theme URI: https://technorizongroup.com/
Author: Your Name
Description: A clean custom WordPress theme recreating the Technorizon Group site (Our Location + About Us).
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: technorizon
*/

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #54595f;
  background: #ffffff;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
  background: #ffffff;
  padding: 18px 0;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-logo img { max-height: 40px; width: auto; }
.site-logo .logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 1px;
  color: #1a4f8b;
  text-decoration: none;
}
.site-logo .logo-text span { color: #e8562a; }

/* ---------- Section headings ---------- */
.section-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #3f3836;
  text-align: center;
  margin: 0 0 50px;
}

/* ---------- Our Location ---------- */
.locations {
  padding: 70px 0;
  background: #ffffff;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.location-item { text-align: center; }
.location-item .flag {
  width: 100%;
  aspect-ratio: 493 / 243;
  object-fit: cover;
  border: 1px solid #eee;
}
.location-item h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #3f3836;
  margin: 18px 0 0;
}

/* ---------- About Us ---------- */
.about {
  background: #e4f4ff;
  padding: 70px 0;
}
.about .section-title { text-align: left; margin-bottom: 30px; }
.about p { margin: 0 0 22px; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1a2634;
  color: #cfd8e3;
  text-align: center;
  padding: 26px 0;
  font-size: 14px;
}
.site-footer a { color: #ffffff; text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 32px; }
}
@media (max-width: 480px) {
  .location-grid { grid-template-columns: 1fr; }
}