
@font-face {
  font-family: lexend;
  src: url(../fonts/Lexend/LexendZetta-Light.ttf);
}
@font-face {
  font-family: mrs_saint;
  src: url(../fonts/Mrs_Saint_Delafield/MrsSaintDelafield-Regular.ttf);
}
/* Reset i osnovni stilovi */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #3498db;
  --secondary-color: #206ea3;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --danger-color: #e74c3c;
  --success-color: #27ae60;
  --text-color: #333;
  --light-text: #666;
  --very-light-text: #999;
  --border-color: #ddd;
  --card-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
::selection {
  background: rgb(163, 193, 215);
}
/* Custom scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--light-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-color);
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #f9f9f9;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


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

a:hover {
  color: var(--dark-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button,
input[type="submit"] {
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

/* Tipografija */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 100;
}

h2 {
  font-size: 2rem;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 100;
}

h3 {
  font-size: 1.75rem;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Header */
.site-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo a img {
  height: 40px;
}
.logo-footer img {
  height: 35px;
}

/* Navigacija */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-menu a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: var(--card-shadow);
  min-width: 200px;
  border-radius: 4px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  padding: 0.5rem 1rem;
  display: block;
}

.dropdown-menu a:hover {
  background-color: #f5f5f5;
}
.header-mobile {
  display: none;
}
/* Search Box */
.search-box {
  position: relative;
  width: 230px;
  display: flex;
  justify-content: flex-end;
}

.search-box form {
  display: flex;
  align-items: center;
}

.search-box input {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 0.9rem;
  width: 200px;
  transition: var(--transition);
}

.search-box input:focus {
  outline: none;
  border-color: var(--primary-color);
  width: 230px;
}

.search-box button {
  background: none;
  border: none;
  color: var(--light-text);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.search-box button:hover {
  color: var(--primary-color);
}
/* From Uiverse.io by cssbuttons-io */ 
/* button */
.button1 {
 position: relative;
 border: none;
 background: transparent;
 padding: 0;
 cursor: pointer;
 outline-offset: 4px;
 transition: filter 250ms;
 user-select: none;
 touch-action: manipulation;
 display: block;
 width: fit-content;
 margin: 0 auto;
}

.shadow {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 border-radius: 12px;
 background: hsl(0deg 0% 0% / 0.25);
 will-change: transform;
 transform: translateY(2px);
 transition: transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

.edge {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 border-radius: 12px;
 background: linear-gradient(
    to left,
    hsl(0, 0%, 27%) 0%,
    hsl(0, 0%, 48%) 8%,
    hsl(0, 0%, 44%) 92%,
    hsl(0, 0%, 18%) 100%
  );
}

.front {
 display: block;
 position: relative;
 padding: 12px 32px;
 border-radius: 12px;
 font-size: 1.1rem;
 color: rgb(22, 22, 22);
 background: hsl(350, 60%, 98%);
 will-change: transform;
 transform: translateY(-4px);
 transition: transform
    600ms
    cubic-bezier(.3, .7, .4, 1);
}

.button1:hover {
 filter: brightness(110%);
}

.button1:hover .front {
 transform: translateY(-6px);
 transition: transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.button1:active .front {
 transform: translateY(-2px);
 transition: transform 34ms;
}

.button1:hover .shadow {
 transform: translateY(4px);
 transition: transform
    250ms
    cubic-bezier(.3, .7, .4, 1.5);
}

.button1:active .shadow {
 transform: translateY(1px);
 transition: transform 34ms;
}

.button1:focus:not(:focus-visible) {
 outline: none;
}
.button2 {
 margin: unset !important;
}
.front2 {
 color: rgb(249, 243, 243);
 background:var(--primary-color);
}
/* Hero Section */
.hero {
  color: white;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 0;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.hero-btn:hover {
  background-color: var(--dark-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Featured Posts */
.featured-posts {
  margin-bottom: 4rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 1rem auto 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.featured-post {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.post-thumbnail {
  height: 200px;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.post-content {
  padding: 1.5rem;
}
.post-body .post-content {
  padding: 1.5rem 0;
}

.post-category {
  display: inline-block;
  background-color: var(--light-color);
  color: var(--dark-color);
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.post-category:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.post-title a {
  color: var(--dark-color);
}

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

.post-excerpt {
  color: var(--light-text);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  align-items: center;
  color: var(--very-light-text);
  font-size: 0.85rem;
}

.post-meta span {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.post-meta i {
  margin-right: 0.3rem;
}

/* Latest Posts */
.latest-posts {
  margin-bottom: 4rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.post-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Categories Section */
.categories-section {
  margin-bottom: 4rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.category-card:hover .category-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
}

.category-name {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.post-count {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0;
  margin-bottom: 4rem;
  text-align: center;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: .9rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: .9rem;
}

.newsletter-form input:focus {
  outline: none;
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--secondary-color);
}

/* Single Post */
.single-post {
  margin: 3rem 0 4rem;
}

.post-header {
  margin-bottom: 2rem;
  text-align: center;
}

.post-header .post-category {
  margin-bottom: 1rem;
}

.post-header .post-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.post-header .post-meta {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.post-featured-image {
  margin-bottom: 2rem;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  box-shadow: -130px 0 0 #d7f1f9, 130px 0 0 #d7f1f9;
  padding: 0 50px;
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

.post-body {
  max-width: 900px;
  margin: 0 auto;
  box-shadow: -130px 0 0 #d7f1f9, 130px 0 0 #d7f1f9;
  padding: 0 50px;
}

.post-content {
  font-size: .9rem;
  line-height: 1.8;
}

.post-content p,
.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-content ul,
.post-content ol {
  padding-left: 2rem;
}

.post-content ul li,
.post-content ol li {
  margin-bottom: 0.5rem;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

.post-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--light-text);
  margin: 2rem 0;
}

.post-tags {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-tag {
  background-color: var(--light-color);
  color: var(--dark-color);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  transition: var(--transition);
}

.post-tag:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-share {
  margin: 2rem 0;
}

.post-share h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.share-buttons {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.share-button:hover {
  transform: translateY(-3px);
}

.share-facebook {
  background-color: #3b5998;
}

.share-twitter {
  background-color: #1da1f2;
}

.share-linkedin {
  background-color: #0077b5;
}

.share-pinterest {
  background-color: #bd081c;
}

.share-whatsapp {
  background-color: #25d366;
}
.share-viber {
  background-color: #7360F2;
}
.share-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.share-tiktok {
  background-color: #000000;
}
.share-email {
  background-color: #EA4335;
}

.share-print {
  background-color: #6c757d; 
}

/* Author Box */
.author-box {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  margin: 3rem 0;
  display: flex;
  gap: 2rem;
  box-shadow: var(--card-shadow);
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.author-bio {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: .9rem;
}

.author-social {
  display: flex;
  gap: 0.8rem;
}

.author-social a {
  color: var(--very-light-text);
  transition: var(--transition);
}

.author-social a:hover {
  color: var(--primary-color);
}

/* Comments */
.comments-section {
  margin: 3rem 0;
}

.comments-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.comment {
  background-color: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--card-shadow);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.comment-author {
  font-weight: 600;
}

.comment-date {
  color: var(--very-light-text);
  font-size: 0.9rem;
}

.comment-body {
  color: var(--light-text);
}
.comment-body p {
  font-size: .9rem;
}

.comment-form {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-size: .9rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: var(--dark-color);
  transform: translateY(-3px);
}

/* Related Posts */
.related-posts {
  margin: 4rem 0;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Category Page */
.category-header {
  position: relative;
  overflow: hidden;
  color: white;
  padding: 3rem 0;
  margin-bottom: 3rem;
  text-align: center;
}
 /* Hero animations  */
 .ball {
  border-radius: 50%;
  background:  radial-gradient(var(--primary-color), var(--secondary-color));
  position: absolute;
 }
 /* animacija about  */
.category-header::before,
.category-header::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
  transition: opacity 2s ease-in-out;
}

.category-header::before {
  background: repeating-radial-gradient(ellipse farthest-corner at left top, rgba(0,165,223,1) 0%, rgba(62,20,123,1) 20%, var(--secondary-color) 40%, var(--primary-color) 60%, rgb(252, 252, 252) 80%, rgb(6, 180, 220) 100%);

  opacity: 1;
}

.category-header::after {
  /* background: conic-gradient(from 0.25turn at 68% 30%, var(--dark-color) 1deg, #3f87a6 10deg, #528bb4 30deg, var(--primary-color) 200deg, #8abfe5 350deg, #99d8e3 354deg, #eef6f9 359.5deg); */
  /* background: conic-gradient(from 0.25turn at 68% 30%, var(--secondary-color) 10deg, #3f87a6 20deg, #528bb4 30deg, var(--primary-color) 200deg, #478aba8d 350deg, var(--secondary-color) 354deg); */
  /* filter: blur(3px); */
  
  background: repeating-radial-gradient(ellipse farthest-corner at right bottom, rgba(0,165,223,1) 0%, rgba(62,20,123,1) 20%, var(--secondary-color) 40%, var(--primary-color) 60%, rgb(252, 252, 252) 80%, rgb(6, 180, 220) 100%);

  opacity: 0;
  animation: fadeInOut 14s infinite;
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 0;
    transform: rotate(-90deg) skew(50deg) scale(17);
  }
  45% {
    opacity: 1;
    transform: rotate(0deg) skew(0deg) scale(1);
  }
  55% {
    opacity: 1;
    transform: rotate(0deg) skew(0deg) scale(1);
  }
}
.ball1 {
  width: 40px;
  height: 40px;
  opacity: .8;
  top: 20%;
  left: 30%;
  z-index: -1;
  animation: ball 14s infinite ease-in-out;
}
.ball2 {
  width: 30px;
  height: 30px;
  opacity: .9;
  top: 40%;
  left: 80%;
  z-index: -1;
  animation: ball 7s infinite ease-in-out;
}
.ball3 {
  width: 20px;
  height: 20px;
  opacity: 1;
  top: 10%;
  left: 80%;
  z-index: -1;
  animation: ball1 9s infinite ease-in-out;
}
.ball4 {
  width: 25px;
  height: 25px;
  opacity: 1;
  top: 5%;
  left: 5%;
  z-index: -1;
  animation: ball1 11s infinite ease-in;
}
@keyframes ball {
  0%, 100% {
    opacity: 0;
    transform: rotate(-90deg) skew(50deg) scale(24);
  }
  45% {
    opacity: 1;
    transform: rotate(0deg) skew(0deg) scale(1) translate(-50px, 30px);
  }
  55% {
    opacity: 1;
    transform: rotate(0deg) skew(0deg) scale(1) translate(-50px, 30px);
  }
}
@keyframes ball1 {
  0%, 100% {
    opacity: 0;
    transform: rotate(-90deg) skew(50deg) scale(17);
  }
  45% {
    opacity: 1;
    transform: rotate(0deg) skew(0deg) scale(1) translate(50px, 30px);
  }
  55% {
    opacity: 1;
    transform: rotate(0deg) skew(0deg) scale(1) translate(50px, 30px);
  }
}

/* hero animation contact  */
@keyframes gradientSlide {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.animated-linear {
  background: linear-gradient(270deg, #76b5dd, rgb(32, 100, 163), var(--secondary-color), var(--primary-color));
  background-size: 400% 400%;
  animation: gradientSlide 10s ease infinite;
  width: 100%;
  height: 100%;
}
.ball11 {
  width: 40px;
  height: 40px;
  opacity: .8;
  top: 10%;
  left: 10%;
  animation: ball11 14s infinite ease-in-out;
}
.ball12 {
  width: 30px;
  height: 30px;
  opacity: .9;
  top: 85%;
  left: 5%;
  animation: ball12 12s infinite ease-in-out;
}
.ball13 {
  width: 30px;
  height: 30px;
  opacity: .9;
  top: 75%;
  right: 15%;
  animation: ball12 9s infinite ease-in-out;
}
.ball14 {
  width: 45px;
  height: 45px;
  opacity: 1;
  top: 25%;
  right: 5%;
  animation: ball11 11s infinite ease-in-out;
}
.ball15 {
  width: 25px;
  height: 25px;
  opacity: 1;
  top: 5%;
  right: 50%;
  animation: ball11 10s infinite ease-in-out;
}
@keyframes ball11 {
  50% {
    transform: translate(30px, -10px);
  }
}
@keyframes ball12 {
  50% {
    transform: translate(35px, 6px);
  }
}
 /* aniamcija postavi blog  */
 .ball21 {
  width: 35px;
  height: 35px;
  opacity: 1;
  top: 25%;
  right: 5%;
  z-index: -1;
  animation: ball21 15s infinite ease-in-out;
  animation-delay: 1.4s;
 }
 .ball22 {
  width: 30px;
  height: 30px;
  opacity: 1;
  top: 58%;
  right: 37%;
  z-index: -1;
  animation: ball21 19s infinite ease-in-out;
 }
 .ball23 {
  width: 45px;
  height: 45px;
  opacity: 1;
  top: 15%;
  left: 5%;
  z-index: -1;
  animation: ball21 23s infinite ease-in-out;
  animation-delay: 3s;
 }
 .ball24 {
  width: 30px;
  height: 30px;
  opacity: 1;
  top: 58%;
  left: 27%;
  z-index: -1;
  animation: ball21 12s infinite ease-in-out;
  animation-delay: .6s;
 }
 .ball25 {
  width: 10px;
  height: 10px;
  opacity: 1;
  top: 18%;
  left: 57%;
  z-index: -1;
  animation: ball21 12s infinite ease-in-out;
  animation-delay:6s;
 }
 @keyframes ball21 {
  50% {
    transform: scale(40);
    opacity: 0;
  }
 }
 /* animacija category */
 .ball-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: url(#liquid);
 }
 .ball-box .ball {
  color: rgb(215, 244, 255);
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
 }
 .ball31 {
  width: 35px;
  height: 35px;
  opacity: 1;
  top: 40px;
  right:50px;
  z-index: -1;
 }
 .ball32 {
  width: 30px;
  height: 30px;
  opacity: 1;
  top: 18%;
  right: 80px;
  z-index: -1;
  animation: liquid2 8s infinite ease-in-out;
 }
 .ball33 {
  width: 45px;
  height: 45px;
  opacity: 1;
  top: 15%;
  left: 5%;
  z-index: -1;
  animation: liquid3 5s infinite ease-in-out;

 }
 .ball34 {
  width: 30px;
  height: 30px;
  opacity: 1;
  top: 28%;
  left: 8%;
  z-index: -1;
  animation: liquid 6s infinite ease-in-out;
 }
 .ball35 {
  width: 30px;
  height: 30px;
  opacity: 1;
  top: 8%;
  left: 7%;
  z-index: -1;
  animation: liquid4 16s infinite ease-in-out;
 }
 @keyframes liquid {
  50% {
    transform: translate(80px, 20px);
  }
 }
 @keyframes liquid2 {
  50% {
    transform: translate(-20px, -20px);
  }
 }
 @keyframes liquid3 {
  50% {
    transform: translate(-20px, 10px);
  }
 }
 @keyframes liquid4 {
  50% {
    transform: translateX(85vw);
  }
 }
@media  (min-width:1400px) {
  .ball34 {
    left: 4%;
   }
}
/* animacija index  */
.index-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #76b5dd, rgb(32, 100, 163), var(--secondary-color), var(--primary-color));
  background-size: 400% 400%;
  animation: gradientSlide 10s ease infinite;
}

.container-hero {
  width: 100%;
  margin: 0 auto;
}
.hero-content-index {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 0;
}
.hero-content-index h1, .hero-content-index p {
  padding: 0 1rem;
}
.hero-content-index h1 {
  color: #fff;
}
.ball40 {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
  box-shadow: 
    inset -10px -10px 30px rgba(0, 0, 0, 0.3), /* unutrašnja senka */
    inset 10px 10px 20px rgba(255, 255, 255, 0.2), /* highlight */
    0 10px 25px rgba(0, 0, 0, 0.4); /* senka lopte */
  left: 80%;
  top:35%;
  animation: up-down 9s infinite ease-in-out;
}
.ball36 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #79bee9 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
  box-shadow: 
    inset -10px -10px 30px rgba(0, 0, 0, 0.3), /* unutrašnja senka */
    inset 10px 10px 20px rgba(255, 255, 255, 0.2), /* highlight */
    0 10px 25px rgba(0, 0, 0, 0.4); /* senka lopte */
  left: 25%;
  top:45%;
  animation: up-down 10s infinite ease-in-out;
  animation-delay: 7s;
}
.ball37 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #79bee9 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
  box-shadow: 
    inset -10px -10px 30px rgba(0, 0, 0, 0.3), /* unutrašnja senka */
    inset 10px 10px 20px rgba(255, 255, 255, 0.2), /* highlight */
    0 10px 25px rgba(0, 0, 0, 0.4); /* senka lopte */
  left: 10%;
  top:40%;
  animation: up-down 12s infinite ease-in-out;
  animation-delay: 2s;
}
.ball38 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #79bee9 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
  box-shadow: 
    inset -10px -10px 30px rgba(0, 0, 0, 0.3), /* unutrašnja senka */
    inset 10px 10px 20px rgba(255, 255, 255, 0.2), /* highlight */
    0 10px 25px rgba(0, 0, 0, 0.4); /* senka lopte */
  left: 0%;
  top:10%;
  filter: blur(15px);
  animation: up-down 10s infinite ease-in-out;
}
.ball39 {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #79bee9 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
  box-shadow: 
    inset -10px -10px 30px rgba(0, 0, 0, 0.3), /* unutrašnja senka */
    inset 10px 10px 20px rgba(255, 255, 255, 0.2), /* highlight */
    0 10px 25px rgba(0, 0, 0, 0.4); /* senka lopte */
  left: 60%;
  top:30%;
  filter: blur(15px);
  animation: up-down 13s infinite ease-in-out;
  animation-delay: 5s;
}

.ball41 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
  box-shadow: 
    inset -10px -10px 30px rgba(0, 0, 0, 0.3), /* unutrašnja senka */
    inset 10px 10px 20px rgba(255, 255, 255, 0.2), /* highlight */
    0 10px 25px rgba(0, 0, 0, 0.4); /* senka lopte */
  left: 70%;
  top: 55%;
  animation: up-down 10s infinite ease-in-out;
}

.ball41::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 25px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 80%);
  border-radius: 50%;
  z-index: 2;
}
.ball42 {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
  box-shadow: 
    inset -10px -10px 30px rgba(0, 0, 0, 0.3), /* unutrašnja senka */
    inset 10px 10px 20px rgba(255, 255, 255, 0.2), /* highlight */
    0 10px 25px rgba(0, 0, 0, 0.4); /* senka lopte */
  left: 70%;
  top: 15%;
  animation: up-down 15s infinite ease-in-out;
  animation-delay: 3s;
}

.ball42::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 25px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 80%);
  border-radius: 50%;
  z-index: 2;
}
.ball43 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, var(--primary-color) 40%, var(--secondary-color) 100%);
  box-shadow: 
    inset -10px -10px 30px rgba(0, 0, 0, 0.3), /* unutrašnja senka */
    inset 10px 10px 20px rgba(255, 255, 255, 0.2), /* highlight */
    0 10px 25px rgba(0, 0, 0, 0.4); /* senka lopte */
  left: 65%;
  top: 10%;
  animation: up-down 10s infinite ease-in-out;
}

.ball43::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 25px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 80%);
  border-radius: 50%;
  z-index: 2;
}
@keyframes up-down {
  50% {
    transform: translateY(30px);
  }
}
/* category  */
.category-header h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.category-description {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.pagination-list {
  display: flex;
  gap: 0.5rem;
}

.pagination-item a,
.pagination-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  color: var(--dark-color);
  font-weight: 500;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.pagination-item a:hover,
.pagination-item.active span {
  background-color: var(--primary-color);
  color: white;
}

.pagination-item.disabled span {
  background-color: #f5f5f5;
  color: var(--very-light-text);
  cursor: not-allowed;
}

/* About Page */
.about-section {
  margin: 4rem 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
  box-shadow: -130px 0 0 #d7f1f9, 130px 0 0 #d7f1f9;
}
.about-content p {
  font-size: .9rem;
}
.about-content li {
  font-size: .9rem;
}

.about-image {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.team-section {
  margin: 4rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-avatar {
  height: 250px;
  overflow: hidden;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-member:hover .member-avatar img {
  transform: scale(1.05);
}

.member-info {
  padding: 1.5rem;
  display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 280px;
}

.member-name {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.member-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
  text-align: left;
}

.member-bio {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: .9rem;
  text-align: left;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.member-social a {
  color: var(--very-light-text);
  transition: var(--transition);
}

.member-social a:hover {
  color: var(--primary-color);
}

/* Contact Page */
.contact-section {
  margin: 4rem 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-text p {
  color: var(--light-text);
  margin-bottom: 0;
  font-size: .9rem;
}

.contact-form {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Add blog */
.add-blog {
  height: 400px;
}
.margin-top {
  margin-top: 40px;
}
/* Footer */
.site-footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-about h3,
.footer-categories h3,
.footer-links h3,
.footer-newsletter h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-about h3::after,
.footer-categories h3::after,
.footer-links h3::after,
.footer-newsletter h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
  margin-top: 0.8rem;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: .9rem;
}

.footer-categories ul,
.footer-links ul {
  display: flex;
  flex-direction: column;
}

.footer-categories a,
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: .9rem;
}

.footer-categories a:hover,
.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: .9rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.9rem;
}

.newsletter-form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 1rem;
  border-radius: 0 4px 4px 0;
  font-weight: 500;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--secondary-color);
}

.footer-social {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-social h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #476079e5;
  color: white;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  font-size: 0.85rem;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}
.footer-bottom .designed11 {
  font-size: 12px;
  font-family: lexend;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -2px;
  color: turquoise;
  margin: 0;
  transition: .5s;
}
.footer-bottom .designed11:hover {
  transform: scale(.95);
}
.footer-bottom .designed11 span {
  font-size: 30px;
  font-family: mrs_saint;
  text-align: center;
  color: #f09c00;
  transition: .5s;
}
.footer-bottom .designed11:hover span {
  transform: scale(.95);
}
/* Music Player */
.music-player {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #11517bf8;
  color: white;
  padding: 0.25rem 1rem;
  z-index: 90;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.music-player-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: .5rem;
}

.music-info {
  display: flex;
  flex-direction: column;
  min-width: 100px;
}

.music-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.music-artist {
  font-size: 0.8rem;
  color: var(--primary-color);
}

.music-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.music-control-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}
.music-control-btn svg {
  transform: translateY(1px);
}

.music-control-btn:hover {
  color: var(--primary-color);
}

.music-progress {
  flex: 1;
  margin: 0 0.5rem;
}

.progress-bar {
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.2);
}

.progress-fill {
  height: 100%;
  background-color: rgb(119, 183, 239);
  width: 0;
}

.time-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
  
}

#volume-slider {
  width: 80px;
  height: 2px;
  /* -webkit-appearance: none; */
  background-color: var(--primary-color);
  border-radius: 2px;
  outline: none;
  box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.2);

}

#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgb(119, 183, 239);
  cursor: pointer;
}
.bottom-gap {
  height: 20px;
  width: 100%;
  background: var(--secondary-color);
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

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

.slide-in-left {
  animation: slideInLeft 0.5s ease-out forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.5s ease-out forwards;
}

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

.pulse {
  animation: pulse 2s infinite;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .featured-grid,
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1000px) {
  .header-inner {
    display: none;
  }
  .header-mobile {
    display: block;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem;
    gap: 1rem;
  }
  .menu-toggle {
    background: none;
    color: var(--dark-color);
    cursor: pointer;
    border: none;
  }
  .menu-toggle.active .ham-line1 {
    transform: translateY(2px) rotate(45deg);
  }
  .menu-toggle.active .ham-line2 {
    transform: translateY(5px) rotate(145deg);
    opacity: 0;
  }
  .menu-toggle.active .ham-line3 {
    transform: translateY(-2px) rotate(-45deg)
  }
  .hamburger {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: none;
  }
  .hamburger .ham-line1 {
    width: 30px;
    height: 2px;
    border-radius: 2px;
    transform: translateY(-5px);
    background: black;
    transition: var(--transition);
  }
  .hamburger .ham-line2 {
    width: 30px;
    height: 2px;
    border-radius: 2px;
    transform: translateY(0px);
    background: black;
    transition: var(--transition);
  }
  .hamburger .ham-line3 {
    width: 30px;
    height: 2px;
    border-radius: 2px;
    transform: translateY(5px);
    background: black;
    transition: var(--transition);
  }

  .nav-menu-mobil {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 2rem;
    padding-top: 1.3rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: .8rem;
  }
  .nav-menu-mobil > li:nth-child(1) {
    margin-bottom: 2rem;
  }

  .nav-menu-mobil.active {
    left: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 0.5rem;
    display: none;
    padding-bottom: 0;
  }
  .dropdown-menu a {
    padding: .1rem;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }

}
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .post-header .post-title {
    font-size: 2rem;
  }
  .post-featured-image, .about-content, .post-body {
  box-shadow: unset;
  padding: 0 30px;
}
}
@media (max-width: 768px) {
  
  .featured-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  h2 {
    font-size: 1.4rem;
  }
  .hero h2 {
    font-size: 2rem;
  }
  h1 {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .post-content {
    padding: 1rem;
}
.post-count, .newsletter p, .newsletter-form input, .author-bio, .comment-date, 
.post-content, .form-group input, .comment-date p,
.form-group textarea, .about-content p, .about-content li, .member-bio,
.contact-text p, .footer-about p,  .footer-categories a,
.footer-links a, .footer-newsletter p, .newsletter-form input {
  font-size: .82rem;
}
.category-description, .member-role  {
  font-size: .88rem;
}
h3 {
  font-size: 1.3rem;
}
.hero-content-index  p {
  font-size: 1rem;
}
}

@media (max-width: 576px) {
.hamburger .ham-line1 {
  width: 25px;
}
.hamburger .ham-line2 {
  width: 25px;
}
.hamburger .ham-line3 {
  width: 25px;
}
.search-box {
  width: 150px;
}
.search-box input {
  width: 150px;
  font-size: 0.7rem;
}
.search-box input:focus {
  width: 150px;
}
.header-mobile {
  padding: .9rem;
  padding-left: 0;
  padding-right: 0;
  gap: .6rem;
}
  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form input {
    border-radius: 4px;
    margin-bottom: 0.5rem;
  }

  .newsletter-form button {
    border-radius: 4px;
    padding: 0.8rem;
  }

  .post-meta {
    flex-wrap: wrap;
  }

  .post-meta span {
    margin-bottom: 0.5rem;
  }

  .author-box {
    flex-direction: column;
    gap: 1rem;
  }

  .share-buttons {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
    .post-featured-image, .about-content, .post-body {
  padding: 0 0;
}
.share-buttons {
  display: grid;
  grid-template-columns: repeat(5, 40px);
  justify-content: space-between;
  gap: 1rem;
}
.category-description, h1, .hero-content-index {
  text-align: left;
}
.button1 {
  margin: 0 1rem;
}
  .post-header .post-title {
    font-size: 1.8rem;
    text-align: left;
  }
.post-header .post-meta {
  justify-content: flex-start;
}
.post-header .post-category {
  justify-content: flex-start;
  display: block;
  width: fit-content;
}
.newsletter-content, .section-title {
  text-align: left;
}
.section-title::after {
    margin: 0;
}
}
@media (max-width: 400px) {
  .volume-control {
    display: none;
  }
  .hero h2 {
      font-size: 2.2rem;
  }
  
}