:root {
  --yellow: #FFFF00;
  --black: #000;
  --white: #FFF;
  --space-sm: clamp(0.75rem, 2.5vw, 2rem);
  --space-md: clamp(1.5rem, 5vw, 4rem);
  --space-xl: clamp(4rem, 12vw, 10rem);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--yellow);
  color: var(--black);
  line-height: 1;
  overflow-x: hidden;
}

section {
  width: 100%;
  position: relative;
}

.container {
  max-width: 1800px;
  margin: 0 auto;
  padding: var(--space-md);
}

h1, h2 {
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 0.2em;
}

h1 {
  font-size: clamp(3.5rem, 14vw, 15rem);
}

h2 {
  font-size: clamp(3rem, 10vw, 10rem);
}

h4 {
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.1em;
}

p {
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.site-header {
  background: var(--white);
  padding: clamp(0.5rem, 1vw, 0.75rem) 0;
}

.site-header .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.breadcrumb {
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--black);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb-home {
  color: var(--yellow) !important;
  opacity: 1 !important;
  font-size: 1.5em;
  line-height: 0.6;
}

.breadcrumb-separator {
  opacity: 0.3;
}

.breadcrumb-current {
  opacity: 1;
}

.post-content p, .project-content p {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.post-content h2, .project-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.post-content ul, .project-content ul {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 1.5;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}
.post-content img, .project-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
}

.post-meta {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  opacity: 0.7;
}

.post-description {
  font-size: clamp(1.2rem, 2.5vw, 2rem) !important;
  line-height: 1.4 !important;
  margin-bottom: var(--space-md) !important;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: var(--yellow);
}

.about {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.post-header {
  background: var(--white);
  padding: clamp(0.5rem, 1vw, 1rem) 0 var(--space-md) 0;
}

.projects {
  background: var(--black);
  color: var(--white);
  padding: var(--space-md) 0;
}

.blog-preview {
  background: var(--yellow);
  color: var(--black);
}

.contact-section {
  background: var(--yellow);
  padding: var(--space-md) 0;
}

.site-footer {
  background: var(--white);
  padding: var(--space-sm) 0;
}

.post-content-section {
  background: var(--white);
  padding: 0;
}

.back-button-section {
  background: var(--white);
  padding: clamp(0.75rem, 1.5vw, 1.5rem) 0 clamp(0.5rem, 1vw, 1rem) 0;
}

.post-article {
  background: var(--white);
}

.post-header .container {
  padding-bottom: 0;
}

.post-content-section .container {
  padding-top: 0;
  padding-bottom: 0;
}

.back-button-section .container {
  padding-top: 0;
}

.post-image-section {
  background: var(--white);
  padding: 0 0 var(--space-md) 0;
}

.post-featured-image {
  width: 100%;
  max-width: 1800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.project {
  padding: clamp(1rem, 2vw, 2rem) 0;
}

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

.project-header .arrow-btn {
  margin-left: 1rem;
  flex-shrink: 0;
}

.project-title-link {
  color: inherit;
  text-decoration: none;
  flex: 1;
}

.project-title-link h4 {
  margin: 0;
}

.site-footer p {
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  margin-bottom: 0;
}

.contact-btn {
  display: inline-block;
  padding: 1em 2em;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 900;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
}

.arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.5rem, 8vw, 6rem);
  height: clamp(3.5rem, 8vw, 6rem);
  border: 4px solid var(--white);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.projects .contact-btn {
  background: var(--white);
  color: var(--black);
}

.blog-preview .arrow-btn {
  border-color: var(--black);
  color: var(--black);
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
}

.footer-links a {
  color: var(--black);
  font-weight: 900;
  text-decoration: none;
}

/*# sourceMappingURL=styles.css.map */