/* Responsive Layout Styles - Aurelio Tech */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header styles moved to branding.css */

/* Page Section Base Styling */
.section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-main);
}

.section:last-of-type {
  border-bottom: none;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 8rem 0 6rem 0;
  text-align: center;
  overflow: hidden;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .hero-section {
    padding: 6rem 0 4rem 0;
  }

  .site-header .container {
    height: auto;
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Site Footer */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-main);
  background-color: var(--bg-card);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
