/*
Theme Name: Ablola
Theme URI: http://ablola.co/
Author: AI
Author URI: http://ablola.co/
Description: Custom minimalist theme for Ablola & Co.
Version: 1.1
License: GNU General Public License v2 or later
Text Domain: ablola
*/

:root {
  --text-main: #111111;
  --text-muted: #555555;
  --bg-main: #FFFFFF;
  --bg-alt: #FAFAFA;
  --border-color: #EAEAEA;
  --accent-color: #000000;
  --link-color: #666666;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: var(--text-main);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--link-color);
}

ul {
  list-style: none;
}

/* Header */
.site-header {
  padding: 2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-main);
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.site-title a {
  color: var(--text-main);
}

.main-navigation ul {
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Hero Section */
.hero {
  padding: 8rem 5% 6rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero p {
  font-size: 1.4rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--accent-color);
  background-color: var(--accent-color);
  color: var(--bg-main);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.btn:hover {
  background-color: var(--bg-main);
  color: var(--accent-color);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
}

/* Sections */
.section {
  padding: 5rem 5%;
  border-top: 1px solid var(--border-color);
}

.section-alt {
  background-color: var(--bg-alt);
  border-top: none;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.service-card {
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ASG Law Section */
.asg-law-banner {
  background-color: var(--bg-alt);
  padding: 3rem 5%;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin: 4rem 0;
}

.asg-law-banner p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  color: var(--text-main);
}

.asg-law-banner a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Footer */
.site-footer {
  padding: 4rem 5% 2rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 3rem;
  text-align: left;
}

.footer-widget h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-widget p,
.footer-widget li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .site-header {
    flex-direction: column;
    gap: 1rem;
  }
}