/*
Theme Name: TheSpeckstein Theme
Description: Modernes Dark Dashboard Theme für TheSpeckstein.de - Vollständiges Theme im modernen dunklen Dashboard-Stil
Version: 1.0.0
Author: TheSpeckstein
Text Domain: thespeckstein
*/

/* Color Variables */
:root {
  --red: rgb(239, 83, 80);
  --orange: rgb(255, 160, 0);
  --yellow: rgb(253, 216, 53);
  --green: rgb(42, 252, 152);
  --indigo: rgb(57, 73, 171);
  --violet: rgb(103, 58, 183);
  --blue: rgb(66, 165, 245);
  --gray-30: rgb(30, 30, 30);
  --gray-245: rgb(245, 245, 245);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Base Styles - Dark Dashboard für gesamte Seite */
html, body {
  font-family: "Rubik", sans-serif;
  background-color: var(--gray-30);
  color: var(--gray-245);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Remove body/html background when site-background is present */
body.has-site-background,
body.has-site-background html {
  background-color: transparent !important;
}

body.has-site-background #page {
  background-color: transparent;
}

body.has-site-background .site-main {
  background-color: transparent;
}

* {
  box-sizing: border-box;
}

/* Scrollbar Styling */
::-webkit-scrollbar-track {
  background-color: var(--gray-30);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
}

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}

/* Site Wrapper */
#page {
  min-height: 100vh;
  position: relative;
}

/* Global Background with blur effect (like plugin sales page) */
.site-background {
  height: 100vh;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  background-color: var(--gray-30);
}

.site-background .site-background-image {
  background-image: url("https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2076&q=80");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(8px) brightness(0.3);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100vh;
}

/* Header Styles */
.site-header,
#masthead {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Header mit Hintergrundbild */
.site-header.has-bg-image {
  background-blend-mode: overlay;
}

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

.site-branding {
  flex: 1;
  min-width: 200px;
}

.site-logo img {
  max-height: 60px;
  width: auto;
  height: auto;
}

.site-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.site-title a {
  color: var(--gray-245);
  text-decoration: none;
  transition: opacity 250ms;
}

.site-title a:hover {
  opacity: 0.8;
}

.site-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 5px 0 0;
}

/* Navigation */
.main-navigation {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--gray-245);
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  transition: all 250ms;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: var(--gray-245);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 250ms;
  display: block;
  font-weight: 500;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gray-245);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Main Content */
.site-main {
  padding: 40px 20px;
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
}

/* Entry Styles */
.entry-header {
  margin-bottom: 30px;
}

.entry-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.entry-meta a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 250ms;
}

.entry-meta a:hover {
  color: var(--blue);
}

.post-thumbnail {
  margin-bottom: 30px;
}

.post-thumbnail .featured-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.entry-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.tags-links a {
  display: inline-block;
  padding: 5px 12px;
  margin: 5px 5px 5px 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 12px;
  transition: all 250ms;
}

.tags-links a:hover {
  background: rgba(66, 165, 245, 0.2);
  border-color: rgba(66, 165, 245, 0.4);
  color: var(--gray-245);
}

.entry-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gray-245);
  margin: 0 0 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.entry-content {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  padding: 40px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  animation: fadeIn 0.8s ease-out;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: var(--gray-245);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.entry-content h1:first-child,
.entry-content h2:first-child,
.entry-content h3:first-child {
  margin-top: 0;
}

.entry-content a {
  color: var(--blue);
  text-decoration: none;
  transition: opacity 250ms;
}

.entry-content a:hover {
  opacity: 0.8;
}

.entry-content p {
  margin-bottom: 1.5em;
}

.entry-content ul,
.entry-content ol {
  margin-left: 2em;
  margin-bottom: 1.5em;
}

.entry-content li {
  margin-bottom: 0.5em;
}

/* Footer Styles */
.site-footer,
#colophon {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.footer-navigation {
  margin: 30px 0;
  text-align: center;
}

.footer-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 250ms;
}

.footer-menu a:hover {
  color: var(--blue);
}

.site-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-info p {
  margin: 0;
}

/* Buttons */
.btn-primary,
.wp-block-button__link,
.button,
a.button {
  backdrop-filter: blur(3px);
  background-color: rgba(66, 165, 245, 0.2);
  border: 1px solid rgba(66, 165, 245, 0.4);
  border-radius: 100px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  color: var(--gray-245);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  text-decoration: none;
  transition: all 250ms;
  display: inline-block;
}

.btn-primary:hover,
.wp-block-button__link:hover,
.button:hover,
a.button:hover {
  background-color: rgba(66, 165, 245, 0.3);
  border-color: rgba(66, 165, 245, 0.6);
  transform: translateY(-2px);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.35);
}

.btn-secondary {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  color: var(--gray-245);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  text-decoration: none;
  transition: all 250ms;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.35);
}

/* Cards */
.card,
.wp-block-group {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 250ms, box-shadow 250ms;
}

.card:hover,
.wp-block-group:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Blog Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.post-card {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 250ms, box-shadow 250ms;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.4);
}

.post-thumbnail {
  width: 100%;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 250ms;
}

.post-card:hover .post-thumbnail img {
  transform: scale(1.05);
}

.post-content {
  padding: 30px;
}

.post-content .entry-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.post-content .entry-title a {
  color: var(--gray-245);
  text-decoration: none;
  transition: color 250ms;
}

.post-content .entry-title a:hover {
  color: var(--blue);
}

.entry-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.entry-meta span {
  display: inline-block;
}

.entry-summary {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 250ms;
}

.read-more:hover {
  opacity: 0.8;
}

/* Post Navigation */
.post-navigation {
  margin: 60px 0;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.nav-previous,
.nav-next {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition: transform 250ms;
}

.nav-previous:hover,
.nav-next:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.08);
}

.nav-subtitle {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.nav-title {
  color: var(--gray-245);
  font-weight: 600;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.page-numbers {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 18px;
  color: var(--gray-245);
  text-decoration: none;
  transition: all 250ms;
  display: inline-block;
}

.page-numbers:hover,
.page-numbers.current {
  background-color: rgba(66, 165, 245, 0.2);
  border-color: rgba(66, 165, 245, 0.4);
  color: var(--gray-245);
}

/* Page Header */
.page-header {
  margin-bottom: 40px;
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gray-245);
  margin: 0 0 15px;
  font-weight: 700;
}

.archive-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  margin-top: 15px;
}

/* Gutenberg Blocks - Dark Dashboard Style */
.wp-block-group,
.wp-block-columns,
.wp-block-column {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}

.wp-block-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.wp-block-column {
  margin-bottom: 0;
}

/* Bilder in Content */
.entry-content img,
.wp-block-image img {
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: auto;
  margin: 30px 0;
}

.wp-block-image {
  margin: 30px 0;
}

.wp-block-image figcaption {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

.wp-block-image img {
  border-radius: 12px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.wp-block-gallery .wp-block-image {
  margin: 0;
}

.wp-block-quote {
  border-left: 4px solid var(--blue);
  padding-left: 30px;
  margin: 30px 0;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.wp-block-quote cite {
  display: block;
  margin-top: 15px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.wp-block-code {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  font-family: 'Courier New', monospace;
  color: var(--green);
  overflow-x: auto;
}

.wp-block-table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
}

.wp-block-table th,
.wp-block-table td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px;
  text-align: left;
}

.wp-block-table th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  color: var(--gray-245);
}

.wp-block-table td {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
}

.wp-block-separator {
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.wp-block-cover {
  border-radius: 20px;
  margin: 30px 0;
  overflow: hidden;
}

.wp-block-cover-text {
  color: var(--gray-245);
}

/* Weitere Gutenberg Blocks */
.wp-block-heading {
  color: var(--gray-245);
  font-weight: 600;
}

.wp-block-paragraph {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.wp-block-list {
  color: rgba(255, 255, 255, 0.8);
}

.wp-block-list li {
  margin-bottom: 10px;
}

.wp-block-button {
  margin: 20px 0;
}

.wp-block-verse {
  background: rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--blue);
  padding: 20px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  white-space: pre-wrap;
  color: rgba(255, 255, 255, 0.9);
}

.wp-block-pullquote {
  border-left: 4px solid var(--blue);
  padding: 30px;
  margin: 40px 0;
  font-size: 24px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.wp-block-pullquote cite {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
}

.wp-block-audio,
.wp-block-video {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
}

.wp-block-embed {
  margin: 30px 0;
}

.wp-block-embed iframe {
  border-radius: 12px;
}

/* Widgets */
.widget {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
}

.widget-title {
  color: var(--gray-245);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

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

.widget li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.widget li:last-child {
  border-bottom: none;
}

.widget a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 250ms;
}

.widget a:hover {
  color: var(--blue);
}

/* Kommentare */
.comments-area {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.comments-title {
  color: var(--gray-245);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

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

.comment {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.comment-author .avatar {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.comment-author .fn {
  color: var(--gray-245);
  font-weight: 600;
  font-style: normal;
}

.comment-metadata {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-left: 65px;
}

.comment-content {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-top: 15px;
}

.comment-reply-link {
  color: var(--blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
}

.comment-reply-link:hover {
  opacity: 0.8;
}

/* Kommentar-Formular */
.comment-form {
  margin-top: 40px;
}

.comment-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-245);
  font-weight: 600;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-245);
  font-family: inherit;
  font-size: 16px;
  transition: all 250ms;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.08);
}

.comment-form .submit {
  background: rgba(66, 165, 245, 0.2);
  border: 1px solid rgba(66, 165, 245, 0.4);
  color: var(--gray-245);
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 250ms;
}

.comment-form .submit:hover {
  background: rgba(66, 165, 245, 0.3);
  transform: translateY(-2px);
}

/* Footer Widgets */
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Search Form */
.search-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.search-form label {
  flex: 1;
}

.search-form input[type="search"] {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-245);
  font-family: inherit;
  font-size: 16px;
  transition: all 250ms;
}

.search-form input[type="search"]:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(255, 255, 255, 0.08);
}

.search-form input[type="submit"] {
  padding: 15px 30px;
  background: rgba(66, 165, 245, 0.2);
  border: 1px solid rgba(66, 165, 245, 0.4);
  border-radius: 8px;
  color: var(--gray-245);
  cursor: pointer;
  font-weight: 600;
  transition: all 250ms;
  white-space: nowrap;
}

.search-form input[type="submit"]:hover {
  background: rgba(66, 165, 245, 0.3);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .site-header,
  #masthead {
    padding: 15px 20px;
  }
  
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  
  .main-navigation {
    width: 100%;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    width: 100%;
    padding: 15px;
  }
  
  .site-main {
    padding: 20px 15px;
  }
  
  .entry-content {
    padding: 25px;
  }
  
  .site-footer,
  #colophon {
    padding: 20px;
  }
  
  .footer-widgets {
    grid-template-columns: 1fr;
  }
}
