/*
Theme Name: Elementor Starter Theme
Theme URI: https://example.com/elementor-starter-theme
Author: SamuraY 982
Author URI: https://example.com
Description: Lightweight WordPress theme built for Elementor. Clean layout, Elementor-friendly templates, responsive defaults, WooCommerce-ready basics.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elementor-starter-theme
Tags: custom-logo, custom-menu, featured-images, full-width-template, translation-ready, blog
*/

:root {
  --est-bg: #ffffff;
  --est-text: #111827;
  --est-muted: #6b7280;
  --est-border: #e5e7eb;
  --est-primary: #2563eb;
  --est-container: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--est-bg);
  color: var(--est-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--est-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.est-container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

.site-header {
  border-bottom: 1px solid var(--est-border);
  background: #fff;
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding a {
  color: var(--est-text);
  font-weight: 700;
  font-size: 20px;
}

.site-navigation ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-navigation a {
  color: var(--est-text);
  font-weight: 500;
}

.site-main {
  min-height: 60vh;
}

.content-area {
  padding: 56px 0;
}

.entry-header,
.entry-content,
.entry-footer {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

.entry-title {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
}

.entry-meta,
.entry-footer {
  color: var(--est-muted);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--est-border);
  padding: 28px 0;
  color: var(--est-muted);
  font-size: 14px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

@media (max-width: 768px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .site-navigation ul {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
}
