/* General Styles */

/* Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Saira:wght@400;500;600&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --bg-primary: #1A1A1A;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.3);
  --accent-color: #FCCA09;
  --line-color: rgba(255, 255, 255, 0.1);
  --line-color-secondary: rgba(255, 255, 255, 0.2);
  --card-bg: #DDDDDD;
  
  /* Typography */
  --font-primary: 'Saira', sans-serif;
  --font-secondary: 'Saira', sans-serif;
  
  /* Spacing */
  --container-max-width: 1307px;
  --container-padding: 120px;
  --content-max-width: 1200px;
  --section-gap: 60px;
  
  /* Border radius */
  --border-radius: 4px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 1rem 0;
  line-height: 1;
}

h1 {
  font-size: 80px;
  line-height: 0.8;
}

h2 {
  font-size: 46px;
  line-height: 0.9;
}

h3 {
  font-size: 32px;
  line-height: 1;
}

p {
  margin: 0 0 1rem 0;
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.3;
}

/* Links */
a {
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

a:hover {
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent-color);
  color: #000000;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.05em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-arrow::after {
  content: '→';
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow::after {
  transform: translateX(2px);
}

/* Layout */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  box-sizing: border-box; /* Ensure padding is included in width calculation */
}

.content-wrapper {
  max-width: var(--content-max-width);
  margin: 0 auto;
}

/* Grid System */
.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-between {
  justify-content: space-between;
}

.flex-gap-20 {
  gap: 20px;
}

.flex-gap-24 {
  gap: 24px;
}

/* Lines/Dividers */
.line {
  border: 1px solid var(--line-color);
  margin: 0;
}

.line-vertical {
  width: 0;
  height: 100vh;
  border-right: 1px solid var(--line-color);
}

.line-horizontal {
  width: 100%;
  height: 0;
  border-bottom: 1px solid var(--line-color);
}

/* Text utilities */
.text-uppercase {
  text-transform: uppercase;
}

.text-muted {
  color: var(--text-muted);
}

.text-secondary {
  color: var(--text-secondary);
}

.text-small {
  font-size: 14px;
}

.text-medium {
  font-size: 16px;
}

/* Spacing utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }

/* Image utilities */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
*:focus {
  outline: 0 solid var(--accent-color);
  outline-offset: 0;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Selection styles */
::selection {
  background: var(--accent-color);
  color: #000000;
}

/* Header/Navigation */
.site-header {
  position: relative;
  padding: 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--text-primary);
  color: #000000;
}

.logo-icon {
  width: 30px;
  height: 37px;
}

.logo-text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 0.8;
  letter-spacing: -0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 60px;
}

.nav-menu {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0 0 0 111px;

  padding: 0;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 25px;
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.nav-link:hover {
  opacity: 0.8;
}

.header-cta {
  background: var(--accent-color);
  color: #000000;
  padding: 8px 16px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
  margin-right: 47px;
}
.site-header .container {
  padding: 0 ;
  border-bottom: 0;
}

.page-title_blog{
  width: 590px;
  text-align: left;
      margin: 100px auto 40px;
font-style: normal;
font-weight: 500;
font-size: 80px;
line-height: 80%;
letter-spacing: -0.03em;

color: #FFFFFF;


}
/* Footer */
.site-footer {
  padding:  0 40px;
  border-top: 0 solid var(--line-color);
}
.site-footer .container {
padding-top: 52px;
padding-bottom: 50px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 47px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--text-primary);
  color: #000000;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-nav a {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 25px;
  color: var(--text-primary);
}

.footer-cta {
  background: var(--accent-color);
  color: #000000;
  padding: 8px 16px;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
}

.footer-copyright {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 22px;
  color: var(--text-secondary);
}
.post-page .container{
    border-top: 1px solid rgba(255, 255, 255, 0.3)!important;
}
@media (max-width: 768px) {
#menu-header-menu a{
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 100%;
letter-spacing: -0.03em;
color: #000000;
}
   .all-page .container, .blog-page .container{
    padding-top: 50px!important;
   }
   .blog-navigation{
display: none!important;
   }
}




 .simple_blog_post h2 button{
display: none!important;
}