/*
 Theme Name: My Blank Theme
 Author: Your Name
 Description: A minimalist WordPress theme for Gutenberg, designed for tech-focused websites
 Version: 1.0
 Text Domain: myblanktheme
*/
/* Reset default styles */
body {
  margin: 0;
  font-family: "Roboto", "Poppins", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #333;
}
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
a {
  color: #0073aa;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* Header styles */
header {
  text-align: center;
  padding: 20px;
  background: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}
header h1 {
  margin: 0;
  font-size: 2.2em;
  font-family: "Inter", sans-serif;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
nav ul li {
  display: inline;
  margin: 0 15px;
}
nav ul li a {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #333;
}
nav ul li a:hover {
  color: #0073aa;
}
/* Footer styles */
footer {
  text-align: center;
  padding: 20px;
  background: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  margin-top: 20px;
}
footer p {
  margin: 0;
  font-size: 0.9em;
}
/* Gutenberg block styles */
.wp-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block[data-align="wide"] {
  max-width: 1200px;
}
.wp-block[data-align="full"] {
  max-width: none;
}
.wp-block-button__link {
  background-color: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
}
.wp-block-button__link:hover {
  background-color: #005177;
  text-decoration: none;
}
/* Responsive design */
@media (max-width: 600px) {
  main {
    padding: 10px;
  }
  header h1 {
    font-size: 1.6em;
  }
  nav ul li {
    display: block;
    margin: 10px 0;
  }
}
