/*
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 {
  --bg-main: #1C0120;
  --bg-section: #410277;
  --bg-card: #431770;
  --bg-soft: #9376B8;
  --bg-light: #E6E6E6;

  --text-main: #E6E6E6;
  --text-muted: #9376B8;
  --text-dark: #1C0120;

  --border-color: #9376B8;

  --btn-primary: #410277;
  --btn-primary-hover: #431770;

  --btn-secondary: #9376B8;
  --btn-secondary-hover: #7e63a3;

  --btn-light: #E6E6E6;
  --btn-light-hover: #d5d5d5;
}


/* ───────── Layout ───────── */
body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "Cairo", sans-serif;
}

.section {
  background: var(--bg-section);
  padding: 40px;
  border-radius: 16px;
}


/* ───────── Cards ───────── */
.card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}


/* ───────── Buttons ───────── */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: 0.25s;
}


/* Primary */
.btn-primary {
  background: var(--btn-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--btn-primary-hover);
}


/* Secondary */
.btn-secondary {
  background: var(--btn-secondary);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--btn-secondary-hover);
}


/* Light */
.btn-light {
  background: var(--btn-light);
  color: var(--text-dark);
}

.btn-light:hover {
  background: var(--btn-light-hover);
}


/* Outline */
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--bg-soft);
}


/* ───────── Inputs ───────── */
.input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-main);
  outline: none;
}

.input:focus {
  border-color: var(--bg-soft);
}


/* ───────── Badges ───────── */
.badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.badge-primary {
  background: var(--btn-primary);
}

.badge-soft {
  background: var(--bg-soft);
  color: #fff;
}


/* ───────── Links ───────── */
a {
  color: var(--bg-soft);
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}


/* ───────── Navbar ───────── */
.navbar {
  background: var(--bg-section);
  padding: 15px 30px;
  border-bottom: 1px solid var(--border-color);
}



/* 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);
  
}

.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;
  }
}




























       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;
        }