/*
Theme Name: Anseo Theme
Theme URI: https://anseo.pl
Description: A custom WordPress theme for Anseo agency.
Version: 1.0.0
Author: the anseo team
*/

/* 
 * This is the main stylesheet that WordPress requires.
 * Modular CSS files are loaded via functions.php for better performance:
 * 
 * Always loaded:
 * - css/top-bar.css       - Top bar styles
 * - css/header.css        - Header styles  
 * - css/footer.css        - Footer styles
 * 
 * Conditionally loaded:
 * - css/front-page.css    - Front page (only on homepage)
 * 
 * Base styles below:
 */

@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.site-main {
  display: flex;
  flex-direction: column;
  width: 100%;
}

h1 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

h2 {
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
}