/*
Theme Name: Minimal Root Theme
Theme URI: https://example.com
Author: Oskar
Author URI: https://example.com
Description: A clean, wide, minimal WordPress theme with small typography and CSS variables.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: minimal-root-theme
*/

:root {
  --color-bg: #f9fafb;
  --color-bg-alt: #ffffff;
  --color-primary: #2563eb;
  --color-primary-soft: #dbeafe;
  --color-accent: #f97316;
  --color-text-main: #111827;
  --color-text-muted: #6b7280;
  --color-border: #e5e7eb;
  --tf: #123c66;



  --radius-base: 10px;
  --radius-large: 18px;

  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Reset / base */

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

html {
  font-size: 14px; /* small base */
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-base);
  font-size: 0.95rem; /* slightly smaller than base */
  line-height: 1.7;
  background: #fbfbfb;
  color: var(--color-text-main);
}

/* Layout: wide content */

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--color-bg) 0%, #ffffff 45%, var(--color-bg) 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(249, 250, 251, 0.88);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

.site-header-inner {
  max-width: 1320px; /* wide */
  margin: 0 auto;
  padding: 0.75rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-tagline {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Navigation */

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav a {
  font-size: 0.85rem;
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--color-text-muted);
  transition: all 0.18s ease-out;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--color-primary);
  background: var(--color-primary-soft);
  border-color: rgba(37, 99, 235, 0.25);
}

/* Main content */

.site-main {
  flex: 1;
}

.page-wrapper {
  max-width: 1320px; /* wide content */
  margin: 1.75rem auto 2.5rem auto;
  padding: 0 1.75rem 0 1.75rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1.1fr);
  gap: 2.25rem;
}

@media (max-width: 960px) {
  .page-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }
}

.content-area {
  background: var(--color-bg-alt);
  border-radius: var(--radius-large);
  padding: 1.75rem 1.75rem 2rem 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.sidebar-area {
  position: sticky;
  top: 4.6rem;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-large);
  padding: 1.4rem 1.4rem 1.6rem 1.4rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

/* Typography inside content */

.content-area h1,
.content-area h2,
.content-area h3,
.content-area h4 {
  margin-top: 0;
  font-weight: 700;
}

.content-area h1 {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.content-area h2 {
  font-size: 1.3rem;
}

.content-area h3 {
  font-size: 1.1rem;
}

.content-area p {
  margin: 0 0 0.85rem 0;
  color: var(--color-text-main);
}

.content-area .entry-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.85rem;
}

/* Buttons / links */

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

a:hover {
  text-decoration: underline;
}

.button,
button,
input[type="submit"],
input[type="button"] {
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--color-primary);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  background: #1d4ed8;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

/* Cards for posts */

.post-card {
  padding-bottom: 1.3rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px dashed rgba(209, 213, 219, 0.9);
}

.post-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.post-card-title {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.post-card-title a {
  color: var(--color-text-main);
  text-decoration: none;
}

.post-card-title a:hover {
  color: var(--color-primary);
}

/* Sidebar widgets */

.widget {
  margin-bottom: 1.25rem;
}

.widget-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.9rem 0;
  color: var(--color-text-muted);
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget ul li {
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  padding: 1.1rem 1.75rem 1.4rem 1.75rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  background: #f3f4f6;
}

.site-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 720px) {
  .site-header-inner,
  .site-footer-inner {
    padding: 0.6rem 0;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
















/* Scoped styles only inside .oaP to avoid breaking the theme */
.oaP { padding: 32px 0 60px; }
.oaP-wrap { max-width: 1200px; margin: 0 auto; padding: 0 18px; }

.oaP-head { margin-bottom: 18px; }
.oaP-h1 { margin: 0 0 8px; font-size: 40px; line-height: 1.1; letter-spacing: -0.02em; }
.oaP-sub { margin: 0 0 14px; color: #666; font-size: 16px; max-width: 70ch; }

/* Tabs */
.oaP-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.oaP-tab {
	display: inline-flex;
	align-items: center;
	border: 1px solid #e5e5e5;
	background: #fff;
	color: #111;
	padding: 10px 14px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
	transition: border-color .15s, box-shadow .15s, transform .15s;
}
.oaP-tab:hover { border-color: #111; }
.oaP-tab.is-active {
	border-color: #111;
	box-shadow: 0 10px 26px rgba(0,0,0,.08);
	transform: translateY(-1px);
}

/* Grid */
.oaP-section { margin-top: 18px; }
.oaP-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 980px) { .oaP-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .oaP-grid { grid-template-columns: 1fr; } }

.oaP-card {
	border: 1px solid #eee;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 28px rgba(0,0,0,.06);
	transition: transform .15s, box-shadow .15s;
}
.oaP-card:hover { transform: translateY(-2px); box-shadow: 0 18px 52px rgba(0,0,0,.10); }

.oaP-media { background: #f4f4f4; aspect-ratio: 16 / 10; overflow: hidden; }
.oaP-media img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1); transition: transform .35s; }
.oaP-card:hover .oaP-media img { transform: scale(1.03); }

.oaP-mediaPh {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 14px;
}

.oaP-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 12px; }
.oaP-title { margin: 0; font-size: 18px; line-height: 1.25; letter-spacing: -0.01em; }
.oaP-muted { color: #999; font-size: 13px; }

/* Attractive button */
.oaP-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 14px;
	border-radius: 14px;
	text-decoration: none;
	font-weight: 800;
	font-size: 14px;
	color: #fff;
	background: linear-gradient(135deg, #111 0%, #3a3a3a 100%);
	border: 1px solid rgba(0,0,0,.18);
	box-shadow: 0 14px 30px rgba(0,0,0,.18);
	transition: transform .15s, box-shadow .15s, filter .15s;
}
.oaP-btn:hover { transform: translateY(-1px); box-shadow: 0 18px 44px rgba(0,0,0,.22); filter: brightness(1.05); }
.oaP-btn:active { transform: translateY(0); box-shadow: 0 10px 24px rgba(0,0,0,.18); }

.oaP-empty { color: #666; }

.oaP-pagination { margin-top: 22px; }
.oaP-pagination .page-numbers {
	display: inline-block;
	margin: 0 8px 8px 0;
	padding: 9px 12px;
	border: 1px solid #e7e7e7;
	border-radius: 12px;
	text-decoration: none;
	color: #111;
}
.oaP-pagination .page-numbers.current { border-color: #111; }











.lang-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  text-decoration: none;
  color: #0f172a;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
}
.lang-toggle:hover{
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.22);
  color: #075985;
}









       body, 
        h1, h2, h3, h4, h5, h6,
        p, 
        a, 
        span,
        div,
        .elementor-widget-container,
        .woocommerce-product-details__short-description {
            font-family: 'Cairo', sans-serif !important;
			font-size:14px;
        }