/*
Theme Name: ASK One Page WP
Theme URI: https://apexsandk.com
Author: Apex Solutions & Knowledge
Description: A fully widgetized WordPress theme with block editor support
Version: 1.0.0
License: GPL v2 or later
Text Domain: ask-one-page-wp
*/

/* Base styles */
:root {
  --primary: #1fbfae;
  --dark: #0a1326;
  --light: #f8fafc;
  --white: #ffffff;
  --container-width: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #334155;
  background: var(--light);
}

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

/* Admin notice for empty widget areas */
.admin-notice {
  background: #f0f8ff;
  border-left: 4px solid var(--primary);
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
  font-size: 14px;
}

.admin-notice p {
  margin: 0 0 5px 0;
}

.admin-notice small {
  color: #666;
}

/* Widget styles */
.widget {
  margin-bottom: 30px;
}

.widget-title {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Service cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
