/* Import theme variables */
@import url(./themes.css);

/* Shared components first */
@import url(./header.css);
@import url(./footer.css);

/* Other Components */
@import url(./hero.css);
@import url(./about-section.css);
@import url(./services-section.css);

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

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

main {
  padding: 0 80px;
}

/* Theme Switcher */
.theme-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.theme-switcher:hover {
  background: var(--bg-primary);
}

.theme-switcher i {
  font-size: 1.2rem;
}

/* Links */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  main {
    padding: 0 20px;
  }
} 