@import "variables.css";
@import url('chillax.css');
@import "menu.css";
@import "section.css";
@import "page-nav.css";
@import "responsive.css";
@import "process.css";

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

html{
  scroll-behavior: smooth;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Base styles */
body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-white);
  min-height: 100vh;
  line-height: 1.5;
  overflow-y: auto;
  height: 100%;
}


/* Main Content */
.main {
  margin-left: var(--menu-width);
  transition: all var(--transition-default);
  overflow-y: auto;
  scroll-behavior: smooth;
  padding-left: 0;
  position: relative;
  z-index: 1;
  height:auto;
}


/* Clients Grid */
.clients-wrapper {
 display: flex;
 gap: var(--spacing-xl);
 align-items: flex-start;
}

.clients-index {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  padding-top: 0.5em;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-grow:1;
  width: 100%;
  border-top: 1px solid (--color-bg-300);
}

.client-item {
  padding: var(--spacing-md) 0;
  text-align: center;
  border-bottom: 1px solid var(--color-bg-300);
  border-right: 1px solid var(--color-bg-300);
}

.client-item img {
  max-height: 30%;
  max-width: 30%;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.2);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.client-item img:hover {
  opacity: 1;
}


/* Clients Section */
#clients {
  width: 100%;
}


