/*
Theme Name: Kho Hai San
Theme URI: https://example.com/khohaisan
Author: Kho Hai San Team
Author URI: https://example.com
Description: Theme WordPress chuyển đổi từ bộ HTML tĩnh cho website hải sản khô, tối ưu SEO cơ bản và responsive.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: khohaisan
*/

/*
 * CSS cốt lõi của theme.
 * Phần lớn layout dùng class utility từ Tailwind CDN được enqueue trong functions.php.
 */

:root {
  --khs-primary: #9e3c00;
  --khs-primary-soft: #ff7a36;
  --khs-bg: #fff4f0;
  --khs-text: #4a2507;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: var(--khs-bg);
  color: var(--khs-text);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--khs-primary);
}

.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.menu-item a {
  font-weight: 600;
}

.widget {
  margin-bottom: 1.25rem;
}

.widget-title {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}
