/* ammait-business theme - responsive onepage */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --border: #e5e7eb;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --max-width: 1200px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  transition: var(--transition);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white; text-align: center; padding-top: 80px;
}
.hero h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.hero-subtitle { font-size: 1.25rem; opacity: 0.9; max-width: 600px; margin: 0 auto 2rem; }

/* Buttons */
.btn {
  display: inline-block; padding: 0.875rem 2rem; border-radius: var(--radius);
  text-decoration: none; font-weight: 600; transition: var(--transition);
  cursor: pointer; border: none; font-size: 1rem;
}
.btn-primary { background: white; color: var(--primary); }
.btn-primary:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* About */
.about { padding: 5rem 0; background: var(--bg); }
.about h2 { font-size: 2.25rem; margin-bottom: 1.5rem; text-align: center; }
.about p { max-width: 700px; margin: 0 auto; color: var(--text-light); font-size: 1.125rem; text-align: center; }

/* Services */
.services { padding: 5rem 0; background: var(--bg-alt); }
.services h2 { font-size: 2.25rem; margin-bottom: 3rem; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-card {
  background: white; padding: 2rem; border-radius: var(--radius);
  box-shadow: var(--shadow); transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { color: var(--text-light); }

/* Contact */
.contact { padding: 5rem 0; background: var(--bg); }
.contact h2 { font-size: 2.25rem; margin-bottom: 2rem; text-align: center; }
.contact-info { text-align: center; }
.contact-info p { margin-bottom: 0.75rem; font-size: 1.125rem; }
.contact-info a { color: var(--primary); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--text); color: white; padding: 2rem 0; text-align: center;
}
.site-footer p { opacity: 0.8; margin-bottom: 0.5rem; }

/* Mobile */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1rem; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; flex-direction: column; padding: 1rem 1.5rem; gap: 1rem;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  }
  .nav-links.active { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .about, .services, .contact { padding: 3rem 0; }
}
