/*
Theme Name: Bambrella
Theme URI: Bambrella.Com
Author: Bambrella
Author URI: Bambrella.Com
Description: Bambrella Theme.
Requires PHP: 7.2
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bambrella
Tags: custom-theme, responsive, elementor-compatible
*/

/* ===== Base CSS ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Post Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #1f2937;
  background: #ffffff;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #094036;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "FK Roman Standard", Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  color: #094036;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
}

h3 {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
}

.container,
.archive-wrap,
.site-content {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 32px);
}

.site-header {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.site-header .site-branding,
.main-navigation {
  display: flex;
  align-items: center;
}

#masthead .site-branding {
  gap: 12px;
  padding: 12px 0;
}

.site-title {
  font-family: "Post Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #094036;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.main-navigation a {
  font-family: "Post Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  color: #094036;
}

.main-navigation a:hover {
  opacity: 0.8;
}

article {
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}

.entry-header {
  margin-bottom: 8px;
}

.entry-title {
  margin: 0 0 10px;
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 2rem);
}

.entry-title a {
  color: #094036;
}

.entry-summary {
  color: #374151;
  font-family: "Post Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.post-thumbnail {
  margin: 12px 0 16px;
  overflow: hidden;
  border-radius: 8px;
}

.post-thumbnail img {
  width: 100%;
}

.entry-meta {
  color: #6b7280;
  font-size: 0.9rem;
  font-family: "Post Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.pagination {
  display: flex;
  justify-content: center;
  padding: 24px 0 40px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  margin: 0 4px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: #094036;
  background: #fff;
  text-decoration: none;
  font-family: "Post Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.pagination .page-numbers:hover {
  background: #f3f4f6;
}

.pagination .current {
  color: #fff;
  background: #094036;
  border-color: #094036;
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  margin-top: 40px;
  padding: 24px 0;
  color: #6b7280;
  font-size: 0.95rem;
  font-family: "Post Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.site-footer a {
  color: #094036;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #094036;
  color: #fff;
}

@media (min-width: 768px) {
  article {
    padding: 32px 0;
  }

  .entry-summary {
    font-size: 1.05rem;
  }
}