/*
Theme Name: Anthi
Theme URI: https://example.com/anthi
Author: Seu Nome
Author URI: https://example.com
Description: Tema WordPress minimalista criado do zero para o projeto Anthi.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anthi
*/

/* Reset básico */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: #111827;
  background-color: #f9fafb;
}

a {
  color: #111827;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}

/* Header layout */
.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.primary-nav .links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.primary-nav .links a {
  text-decoration: none;
  font-weight: 300;
  position: relative;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
    color: #696969;
}

.primary-nav .links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #2a81f6;
  transition: width 0.2s ease;
}

.primary-nav .links a:hover::after {
  width: 100%;
}

/* Menu button base */
.menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

/* Mobile styles */
@media screen and (max-width: 800px) {
  .menu-btn {
    display: block;
    z-index: 1000;
    position: relative;
  }
  
  .primary-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    max-width: 80vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }
  
  .primary-nav.is-active {
    right: 0;
  }
  
  .primary-nav .links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 30px;
  }
}
