/*
Theme Name: Hostinger Modern Starter
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: A clean, responsive starter WordPress theme with essential template files for building a fresh website in Hostinger/WordPress.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: hostinger-modern-starter
Tags: custom-logo, custom-menu, featured-images, blog, e-commerce, full-width-template
*/

body{
font-family: Arial, sans-serif;
margin:0;
background:#f5f2ea;
}

.container{
max-width:1200px;
margin:auto;
padding:40px 20px;
}

.hero{
background:url('/wp-content/uploads/museum-hero.jpg') center/cover no-repeat;
height:500px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-overlay{
background:rgba(0,0,0,0.4);
padding:40px;
border-radius:10px;
}

.hero h1{
font-size:48px;
margin-bottom:10px;
}

.hero-btn{
background:#7b6b4d;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:4px;
}
/* css gia header */

.site-header {
    background: linear-gradient(to bottom, #f5f0e6, #efe6d6);
    border-bottom: 1px solid rgba(120, 90, 50, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 28px 40px;
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, padding 0.35s ease;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.header-scrolled {
    padding-top: 18px;
    padding-bottom: 18px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.10);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    position: relative;
}

.site-logo {
    flex: 0 0 auto;
    z-index: 10001;
}

.site-logo img {
    max-height: 90px;
    width: auto;
    display: block;
}

.site-title {
    font-size: 30px;
    font-weight: 700;
    color: #5c4328;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.main-navigation {
    display: flex;
    justify-content: center;
    flex: 1;
}

.main-navigation ul,
.main-navigation ul.main-menu,
#primary-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 42px !important;
}

.main-navigation li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
}

.main-navigation a {
    text-decoration: none !important;
    color: #5a3e26 !important;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 8px 0;
    position: relative;
    transition: color 0.25s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
    color: #8a5a2b !important;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #b2874b;
    transition: width 0.25s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after,
.main-navigation .current_page_item a::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(120, 90, 50, 0.22);
    background: rgba(255, 249, 240, 0.96);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 8px 20px rgba(54, 34, 18, 0.08);
    z-index: 10001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #5a3e26;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
    .site-header {
        padding: 22px 24px;
    }

    .main-navigation ul,
    .main-navigation ul.main-menu,
    #primary-menu {
        gap: 24px !important;
    }

    .main-navigation a {
        font-size: 18px;
    }
}

@media (max-width: 820px) {
    .site-header {
        padding: 14px 16px;
    }

    .site-header.header-scrolled {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header-container {
        min-height: 54px;
        justify-content: space-between;
    }

    .site-logo img {
        max-height: 54px;
    }

    .site-title {
        font-size: 22px;
    }

    .menu-toggle {
        display: inline-flex !important;
    }

    .main-navigation {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        width: 100%;
        background: rgba(245, 240, 230, 0.98);
        border: 1px solid rgba(120, 90, 50, 0.18);
        border-radius: 18px;
        box-shadow: 0 18px 36px rgba(54, 34, 18, 0.12);
        padding: 14px;
        backdrop-filter: blur(8px);
        z-index: 10000;
    }

    .main-navigation.menu-open {
        display: block !important;
    }

    .main-navigation ul,
    .main-navigation ul.main-menu,
    #primary-menu {
        display: flex !important;
        flex-direction: column;
        align-items: stretch !important;
        gap: 0 !important;
        width: 100%;
    }

    .main-navigation li {
        display: block !important;
        width: 100%;
        border-bottom: 1px solid rgba(120, 90, 50, 0.10);
    }

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

    .main-navigation a {
        display: block;
        width: 100%;
        font-size: 18px;
        padding: 14px 10px;
    }

    .main-navigation a::after {
        display: none;
    }
}
/* css gia welocme section */

.welcome-section{
    background-image: url('https://laografikomuseum.com/wp-content/uploads/2025/06/scene3-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.welcome-section::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(40, 28, 18, 0.28);
}

.welcome-overlay{
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 30px 40px;
    box-sizing: border-box;
    background: rgba(92, 70, 50, 0.78);
    border: 2px solid rgba(214, 189, 140, 0.75);
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    text-align: center;
}

.welcome-text{
    margin: 0;
    color: #f6ecd8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 6vw, 42px);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.35);
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 768px){
    .welcome-section{
        min-height: 420px;
        padding: 30px 12px;
        background-position: center center;
    }

    .welcome-overlay{
        padding: 20px 16px;
    }

    .welcome-text{
        font-size: 32px;
        line-height: 1.2;
    }
}

@media (max-width: 480px){
    .welcome-section{
        min-height: 360px;
        padding: 20px 10px;
    }

    .welcome-overlay{
        padding: 16px 12px;
    }

    .welcome-text{
        font-size: 24px;
    }
}

/*css gia latests posts sto home page */
.latest-posts-section {
    background: #f5efe3;
    padding: 80px 20px;
}

.latest-posts-section .container {
    max-width: 1320px;
    margin: 0 auto;
}

.latest-posts-section .section-title {
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    color: #4b3527;
    margin-bottom: 40px;
    position: relative;
}

.latest-posts-section .section-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 2px;
    background: #a6845b;
    margin: 14px auto 0;
}

.latest-posts-section .posts-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.latest-posts-section .posts-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    width: 100%;
    padding: 10px 4px;
    box-sizing: border-box;
}

.latest-posts-section .posts-slider::-webkit-scrollbar {
    display: none;
}

.latest-posts-section .post-card {
    flex: 0 0 calc((100% - 72px) / 4);
    max-width: calc((100% - 72px) / 4);
    min-width: calc((100% - 72px) / 4);
    background: #fffaf2;
    border: 1px solid #dbc8a8;
    box-shadow: 0 6px 18px rgba(60, 40, 20, 0.10);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.latest-posts-section .post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(60, 40, 20, 0.16);
}

.latest-posts-section .post-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8dcc8;
}

.latest-posts-section .post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.latest-posts-section .post-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.latest-posts-section .post-card-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 8px;
}

.latest-posts-section .post-card-title a {
    color: #3f2c1f;
    text-decoration: none;
}

.latest-posts-section .post-card-title a:hover {
    color: #8a6846;
}

.latest-posts-section .post-card-meta {
    font-size: 13px;
    color: #8a7a66;
    margin-bottom: 10px;
}

.latest-posts-section .post-card-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #5a4a3c;
    margin-bottom: 16px;
}

.latest-posts-section .post-card-footer {
    margin-top: auto;
}

.latest-posts-section .post-card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 12px 16px;
    background: #6f5338;
    color: #fff8ee;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.25s ease;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
    box-sizing: border-box;
}

.latest-posts-section .post-card-button:hover {
    background: #8a6846;
}

.latest-posts-section .posts-arrow {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #6f5338;
    color: #fff8ee;
    font-size: 22px;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background 0.25s ease, transform 0.2s ease;
}

.latest-posts-section .posts-arrow:hover {
    background: #8a6846;
    transform: scale(1.05);
}

@media (max-width: 1100px) {
    .latest-posts-section .post-card {
        flex: 0 0 calc((100% - 48px) / 3);
        max-width: calc((100% - 48px) / 3);
        min-width: calc((100% - 48px) / 3);
    }
}

@media (max-width: 800px) {
    .latest-posts-section .post-card {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
    }

    .latest-posts-section .section-title {
        font-size: 34px;
    }
}

@media (max-width: 560px) {
    .latest-posts-section {
        padding: 60px 14px;
    }

    .latest-posts-section .posts-slider-wrap {
        gap: 10px;
    }

    .latest-posts-section .post-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .latest-posts-section .post-card-content {
        padding: 14px;
    }

    .latest-posts-section .post-card-button {
        font-size: 15px;
        padding: 12px 14px;
    }

    .latest-posts-section .section-title {
        font-size: 30px;
    }

    .latest-posts-section .posts-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* css gia vr tour button section */
.museum-vr-section {
  position: relative;
  padding: 55px 20px;
  background: #d8c7a3;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.museum-vr-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, #f8f3ea 0%, #efe7da 100%);
  padding: 45px 40px;
  border: 1px solid rgba(137, 115, 77, 0.18);
  box-shadow: 0 12px 30px rgba(38, 28, 18, 0.12);
  border-radius: 6px;
}

.museum-vr-subtitle {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a6a3c;
  margin-bottom: 12px;
  font-weight: 700;
}

.museum-vr-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.2;
  color: #433224;
  margin: 0 0 18px;
  font-weight: 700;
}

.museum-vr-text {
  font-size: 17px;
  line-height: 1.7;
  color: #5a4837;
  max-width: 700px;
  margin: 0 auto 24px;
}

.museum-vr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  min-height: 48px;
  padding: 14px 18px;
  background: #8a6846;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 18px rgba(24, 19, 12, 0.18);
  transition: all 0.3s ease;
  border-radius: 3px;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
  box-sizing: border-box;
}

.museum-vr-button:hover {
  background: #76573a;
  color: #ffffff;
  transform: translateY(-2px);
}

.museum-vr-button:focus {
  outline: 2px solid #d5bb88;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .museum-vr-section {
    padding: 35px 15px;
  }

  .museum-vr-content {
    padding: 30px 20px;
  }

  .museum-vr-title {
    font-size: 28px;
  }

  .museum-vr-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .museum-vr-button {
    max-width: 100%;
    padding: 13px 16px;
    font-size: 15px;
  }
}

/* css gia section palaiochori discover */
.museum-location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 420px;
  background: #f5efe3;
  margin: 0;
}

.museum-location-image,
.museum-location-content {
  min-width: 0;
}

.museum-location-image {
  height: 100%;
}

.museum-location-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.museum-location-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5efe3;
  padding: 40px 50px;
}

.museum-location-inner {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.museum-location-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a6846;
}

.museum-location-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.15;
  color: #433224;
  margin: 0 0 18px;
  font-weight: 700;
}

.museum-location-text {
  font-size: 17px;
  line-height: 1.7;
  color: #5a4837;
  margin: 0 0 22px;
}

.museum-location-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  background: #8a6846;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(24, 19, 12, 0.16);
  transition: all 0.3s ease;
}

.museum-location-button:hover {
  background: #76573a;
  color: #ffffff;
  transform: translateY(-2px);
}

.museum-location-button:focus {
  outline: 2px solid #d5bb88;
  outline-offset: 3px;
}

@media (max-width: 991px) {
  .museum-location-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .museum-location-image img {
    min-height: 320px;
    height: 320px;
  }

  .museum-location-content {
    padding: 40px 24px;
  }

  .museum-location-title {
    font-size: 38px;
  }

  .museum-location-text {
    font-size: 16px;
    line-height: 1.7;
  }
}

/**css gia albums wrapper front-page.php **/
.homepage-albums-wrapper,
.homepage-albums-wrapper .container,
.museum-albums-section {
  background: #d8c7a3 !important;
}

.homepage-albums-wrapper {
  padding: 70px 20px;
}

.homepage-albums-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
}

.albums-section-title {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.2;
  color: #433224;
  margin: 0 0 40px;
  position: relative;
}

.albums-section-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background: #a6845b;
  margin: 14px auto 0;
}

.museum-albums-section {
  padding: 0;
  background: transparent !important;
}

.museum-albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  justify-content: center;
  gap: 24px;
}

.museum-album-card {
  background: #f8f3ea;
  border: 1px solid rgba(137, 115, 77, 0.18);
  box-shadow: 0 8px 18px rgba(38, 28, 18, 0.08);
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.museum-album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(38, 28, 18, 0.12);
}

.museum-album-card-image {
  height: 210px;
  overflow: hidden;
}

.museum-album-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.museum-album-card-content {
  padding: 18px 18px 20px;
  text-align: left;
}

.museum-album-card-content h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.25;
  color: #433224;
  margin: 0 0 14px;
  font-weight: 700;
}

.museum-album-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background: #8a6846;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 3px;
  box-shadow: 0 6px 16px rgba(24, 19, 12, 0.14);
}

.museum-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(25, 20, 14, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 30px;
}

.museum-lightbox.active {
  display: flex;
}

.museum-lightbox-content {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  position: relative;
}

#museum-lightbox-title {
  color: #f5efe3;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 28px;
  margin: 0 0 18px;
}

#museum-lightbox-image {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.museum-lightbox-close,
.museum-lightbox-nav {
  position: absolute;
  background: #8a6846;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.museum-lightbox-close {
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  font-size: 28px;
  line-height: 46px;
  border-radius: 50%;
}

.museum-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 26px;
  border-radius: 50%;
}

.museum-lightbox-prev {
  left: 25px;
}

.museum-lightbox-next {
  right: 25px;
}

@media (max-width: 768px) {
  .homepage-albums-wrapper {
    padding: 50px 15px;
  }

  .albums-section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .museum-albums-grid {
    grid-template-columns: 1fr;
  }

  .museum-album-card {
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
  }

  .museum-album-card-image {
    height: 190px;
  }

  .museum-album-card-content h3 {
    font-size: 20px;
  }

  #museum-lightbox-title {
    font-size: 24px;
  }

  .museum-lightbox {
    padding: 20px 12px;
  }

  .museum-lightbox-prev {
    left: 10px;
  }

  .museum-lightbox-next {
    right: 10px;
  }
}

/** css gia timeline section **/
.museum-history-timeline {
    position: relative;
    padding: 120px 20px;
    background: linear-gradient(to bottom, #f4ecdf 0%, #efe3d0 100%);
    overflow: hidden;
}

.timeline-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.timeline-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8a5a2b;
    border-bottom: 1px solid rgba(138, 90, 43, 0.35);
    padding-bottom: 6px;
}

.timeline-intro h2 {
    margin: 0 0 18px;
    font-size: 44px;
    line-height: 1.15;
    color: #4d3422;
}

.timeline-intro p {
    margin: 0 auto;
    max-width: 720px;
    font-size: 19px;
    line-height: 1.8;
    color: #6a4b31;
}

.timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    background: rgba(137, 99, 58, 0.18);
    border-radius: 999px;
    overflow: hidden;
}

.timeline-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, #8a5a2b, #5a3e26);
    border-radius: 999px;
    transition: height 0.15s linear;
}

.timeline-items {
    position: relative;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 55px 80px;
    opacity: 0.2;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    box-sizing: border-box;
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 10px;
    width: 18px;
    height: 18px;
    background: #8a5a2b;
    border: 4px solid #f4ecdf;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(90, 62, 38, 0.22);
    z-index: 5;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -13px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -13px;
}

.timeline-content {
    background: rgba(255, 249, 240, 0.82);
    border: 1px solid rgba(111, 78, 46, 0.16);
    border-radius: 20px;
    padding: 28px 30px;
    box-shadow: 0 16px 40px rgba(54, 34, 18, 0.08);
    backdrop-filter: blur(3px);
    box-sizing: border-box;
}

.timeline-year {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 700;
    color: #5a3e26;
}

.timeline-content p {
    margin: 0;
    font-size: 18px;
    line-height: 1.9;
    color: #4d3422;
}

@media (max-width: 900px) {
    .timeline-intro h2 {
        font-size: 34px;
    }

    .timeline-line {
        left: 20px;
        transform: none;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 0 0 50px 55px;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: -11px;
        right: auto;
    }

    .timeline-content {
        padding: 22px 22px;
    }

    .timeline-content p {
        font-size: 17px;
        line-height: 1.8;
    }
}
/** css gia footer.php **/
.site-footer {
    background: #6f5338;
    padding: 40px 0;
    overflow: hidden;
}

.site-footer .container.footer-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
    width: 100%;
}

.footer-col {
    min-width: 0;
    box-sizing: border-box;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo-link {
    display: inline-block;
    max-width: 100%;
}

.footer-logo-image {
    display: block;
    width: 200px;
    max-width: 100%;
    height: auto;
}

.footer-contact {
    flex: 0 1 420px;
    color: #f5efe3;
    text-align: left;
}

.footer-title {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.2;
    color: #f5efe3;
}

.footer-contact p {
    margin: 0 0 12px;
    color: #f5efe3;
    font-size: 17px;
    line-height: 1.7;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.footer-contact a {
    color: #f5efe3;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 24px 14px;
    }

    .site-footer .container.footer-inner {
        display: grid;
        grid-template-columns: 120px 1fr;
        align-items: center;
        justify-content: unset;
        gap: 16px;
    }

    .footer-logo {
        flex: none;
    }

    .footer-logo-image {
        width: 110px;
    }

    .footer-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .footer-contact p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 6px;
    }
}

@media (max-width: 420px) {
    .site-footer .container.footer-inner {
        grid-template-columns: 95px 1fr;
        gap: 12px;
    }

    .footer-logo-image {
        width: 90px;
    }

    .footer-title {
        font-size: 19px;
    }

    .footer-contact p {
        font-size: 13px;
    }
}

/** css gia single.php **/

.single-post-page {
    background: #f5efe3;
    padding: 50px 20px 70px;
}

.single-post-layout {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2.3fr) minmax(280px, 330px);
    gap: 48px;
    align-items: start;
}

.single-post-main {
    min-width: 0;
}

.single-post-article {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.single-post-thumbnail {
    margin-bottom: 22px;
}

.single-post-thumbnail img {
    display: block;
    width: 100%;
    max-width: 860px;
    height: 520px;
    object-fit: cover;
    border-radius: 6px;
}

.single-post-content-wrap {
    max-width: 860px;
    padding: 0;
}

.single-post-kicker {
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #8a6b4d;
}

.single-post-title {
    margin: 0 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    line-height: 0.98;
    letter-spacing: -0.5px;
    color: #3f2c1f;
}

.single-post-content {
    max-width: 760px;
    color: #4f4034;
    font-size: 18px;
    line-height: 1.95;
}

.single-post-content p {
    margin: 0 0 1.5em;
}

.single-post-content p:first-child::first-letter {
    float: left;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 68px;
    line-height: 0.9;
    font-weight: 700;
    margin: 6px 10px 0 0;
    color: #7b5a39;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    margin: 1.6em 0 0.7em;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.2;
    color: #3f2c1f;
}

.single-post-content h2 {
    font-size: 34px;
}

.single-post-content h3 {
    font-size: 28px;
}

.single-post-content h4 {
    font-size: 22px;
}

.single-post-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 24px auto;
    border-radius: 6px;
}

.single-post-content a {
    color: #7b5a39;
    text-decoration: underline;
}

.single-post-content ul,
.single-post-content ol {
    margin: 0 0 1.5em;
    padding-left: 24px;
}

.single-post-sidebar {
    min-width: 0;
    padding-top: 2px;
}

.single-post-sidebar .widget {
    background: #fffaf2;
    border: 1px solid #dbc8a8;
    border-radius: 6px;
    padding: 24px 22px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(60, 40, 20, 0.05);
}

.single-post-sidebar .widget-title {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eadbc2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.15;
    color: #3f2c1f;
}

.single-post-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single-post-sidebar li {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0e4cf;
}

.single-post-sidebar li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.single-post-sidebar a {
    color: #5c4330;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.25s ease;
}

.single-post-sidebar a:hover {
    color: #8a6846;
}

.single-post-sidebar .cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.single-post-sidebar .cat-item .children {
    margin-top: 10px;
    margin-left: 12px;
}

.single-post-sidebar .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    background: #efe2ca;
    color: #6f5338;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .single-post-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .single-post-content-wrap,
    .single-post-thumbnail img,
    .single-post-content {
        max-width: 100%;
    }

    .single-post-thumbnail img {
        height: 440px;
    }
}

@media (max-width: 768px) {
    .single-post-page {
        padding: 30px 14px 50px;
    }

    .single-post-layout {
        gap: 24px;
    }

    .single-post-thumbnail {
        margin-bottom: 18px;
    }

    .single-post-thumbnail img {
        height: 280px;
    }

    .single-post-title {
        font-size: 38px;
        line-height: 1.05;
    }

    .single-post-content {
        font-size: 16px;
        line-height: 1.8;
    }

    .single-post-content p:first-child::first-letter {
        font-size: 52px;
        margin: 4px 8px 0 0;
    }

    .single-post-sidebar .widget {
        padding: 18px 16px;
    }

    .single-post-sidebar .widget-title {
        font-size: 24px;
    }
}

/** css gia drastiriotites.php **/
.activities-page {
    background: #f5efe3;
    padding: 50px 20px 70px;
}

.activities-layout {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
}

.activities-main {
    min-width: 0;
}

.activities-header {
    margin-bottom: 60px;
    text-align: center;
}

.activities-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    color: #3f2c1f;
    line-height: 1.1;
}

.activities-year-section {
    margin-bottom: 70px;
}

.activities-year-title {
    margin: 0 0 26px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.2;
    color: #3f2c1f;
    border-bottom: 2px solid #dbc8a8;
    padding-bottom: 10px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.activity-card {
    background: #fffaf2;
    border: 1px solid #dbc8a8;
    box-shadow: 0 8px 24px rgba(60, 40, 20, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(60, 40, 20, 0.12);
}

.activity-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.activity-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eadfcf;
}

.activity-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.activity-card:hover .activity-card-image img {
    transform: scale(1.04);
}

.activity-card-body {
    padding: 16px 16px 18px;
}

.activity-card-title {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.25;
    color: #3f2c1f;
}

.activity-card-excerpt {
    color: #4f4034;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.activity-card-excerpt p {
    margin: 0;
}

.activity-card-button {
    display: inline-block;
    padding: 8px 14px;
    background: #6f5338;
    color: #fff8ee;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
}

.no-activities {
    color: #4f4034;
    font-size: 17px;
}

.activities-sidebar {
    min-width: 0;
}

.activities-sidebar .widget {
    background: #fffaf2;
    border: 1px solid #dbc8a8;
    padding: 22px 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(60, 40, 20, 0.06);
}

.activities-sidebar .widget-title {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    color: #3f2c1f;
}

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

.activities-sidebar li {
    margin-bottom: 10px;
}

.activities-sidebar li:last-child {
    margin-bottom: 0;
}

.activities-sidebar a {
    color: #5c4330;
    text-decoration: none;
}

.activities-sidebar a:hover {
    color: #8a6846;
}

.activities-sidebar .cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1400px) {
    .activities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .activities-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .activities-title {
        font-size: 38px;
    }

    .activities-year-title {
        font-size: 28px;
    }

    .activities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 560px) {
    .activities-page {
        padding: 30px 14px 50px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .activity-card-title {
        font-size: 22px;
    }

    .activities-sidebar .widget {
        padding: 18px 16px;
    }

    .activities-year-title {
        font-size: 24px;
    }
}

/** css gia archive.php **/

.archive-page {
    background: #f5efe3;
    padding: 50px 20px 70px;
}

.archive-layout {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
}

.archive-main {
    min-width: 0;
}

.archive-header {
    margin-bottom: 40px;
    text-align: center;
}

.archive-title {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    line-height: 1.1;
    color: #3f2c1f;
}

.archive-description {
    color: #6b5848;
    font-size: 17px;
    line-height: 1.7;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.archive-card {
    background: #fffaf2;
    border: 1px solid #dbc8a8;
    box-shadow: 0 8px 24px rgba(60, 40, 20, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.archive-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(60, 40, 20, 0.12);
}

.archive-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.archive-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eadfcf;
}

.archive-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.archive-card:hover .archive-card-image img {
    transform: scale(1.04);
}

.archive-card-body {
    padding: 16px 16px 18px;
}

.archive-card-title {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.25;
    color: #3f2c1f;
}

.archive-card-excerpt {
    color: #4f4034;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.archive-card-excerpt p {
    margin: 0;
}

.archive-card-button {
    display: inline-block;
    padding: 8px 14px;
    background: #6f5338;
    color: #fff8ee;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
}

.archive-pagination {
    margin-top: 34px;
}

.archive-pagination .page-numbers {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 10px 14px;
    background: #fffaf2;
    border: 1px solid #dbc8a8;
    color: #5c4330;
    text-decoration: none;
}

.archive-pagination .current {
    background: #6f5338;
    color: #fff8ee;
    border-color: #6f5338;
}

.archive-empty {
    color: #4f4034;
    font-size: 17px;
}

.archive-sidebar {
    min-width: 0;
}

.archive-sidebar .widget {
    background: #fffaf2;
    border: 1px solid #dbc8a8;
    padding: 22px 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(60, 40, 20, 0.06);
}

.archive-sidebar .widget-title {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    color: #3f2c1f;
}

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

.archive-sidebar li {
    margin-bottom: 10px;
}

.archive-sidebar li:last-child {
    margin-bottom: 0;
}

.archive-sidebar a {
    color: #5c4330;
    text-decoration: none;
}

.archive-sidebar a:hover {
    color: #8a6846;
}

@media (max-width: 1400px) {
    .archive-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .archive-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .archive-title {
        font-size: 38px;
    }

    .archive-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 560px) {
    .archive-page {
        padding: 30px 14px 50px;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-card-title {
        font-size: 22px;
    }

    .archive-sidebar .widget {
        padding: 18px 16px;
    }
}

/** css gia video.php **/

.videos-page {
    background: #f5efe3;
    padding: 50px 20px 70px;
}

.videos-layout {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
}

.videos-main {
    min-width: 0;
}

.videos-header {
    margin-bottom: 50px;
    text-align: center;
}

.videos-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    color: #3f2c1f;
    line-height: 1.1;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.video-card {
    background: #fffaf2;
    border: 1px solid #dbc8a8;
    box-shadow: 0 8px 24px rgba(60, 40, 20, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(60, 40, 20, 0.12);
}

.video-card-inner {
    height: 100%;
}

.video-card-thumb-link,
.video-card-thumb-link:hover {
    text-decoration: none;
}

.video-card-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #eadfcf;
}

.video-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card-embed {
    height: 220px;
    overflow: hidden;
    background: #000;
}

.video-card-embed iframe {
    display: block;
    width: 100%;
    height: 100% !important;
    border: 0;
}

.video-card-body {
    padding: 12px 14px 14px;
}

.video-card-title {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.25;
    color: #3f2c1f;
}

.video-card-excerpt {
    color: #4f4034;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.video-card-excerpt p {
    margin: 0;
}

.video-card-button {
    display: inline-block;
    padding: 8px 14px;
    background: #6f5338;
    color: #fff8ee;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
}

.video-card-button:hover {
    background: #8a6846;
    color: #fff8ee;
}

.videos-pagination {
    margin-top: 34px;
}

.videos-pagination .page-numbers {
    display: inline-block;
    margin-right: 8px;
    padding: 10px 14px;
    background: #fffaf2;
    border: 1px solid #dbc8a8;
    color: #5c4330;
    text-decoration: none;
}

.videos-pagination .current {
    background: #6f5338;
    color: #fff8ee;
    border-color: #6f5338;
}

.no-videos {
    color: #4f4034;
    font-size: 17px;
}

.videos-sidebar .widget {
    background: #fffaf2;
    border: 1px solid #dbc8a8;
    padding: 22px 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(60, 40, 20, 0.06);
}

.videos-sidebar .widget-title {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    color: #3f2c1f;
}

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

.videos-sidebar li {
    margin-bottom: 10px;
}

.videos-sidebar li:last-child {
    margin-bottom: 0;
}

.videos-sidebar a {
    color: #5c4330;
    text-decoration: none;
}

.videos-sidebar a:hover {
    color: #8a6846;
}

@media (max-width: 1100px) {
    .videos-layout {
        grid-template-columns: 1fr;
    }

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

    .video-card-embed {
        height: 200px;
    }
}

@media (max-width: 700px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-card-embed {
        height: 190px;
    }

    .videos-title {
        font-size: 40px;
    }
}

@media (max-width: 700px) {
    .videos-title {
        font-size: 38px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/** css gia episkeptes page.php **/
.visitors-page {
    background: #f5efe3;
    padding: 50px 20px 70px;
}

.visitors-layout {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
}

.visitors-main {
    min-width: 0;
}

.visitors-header {
    margin-bottom: 60px;
    text-align: center;
}

.visitors-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    color: #3f2c1f;
    line-height: 1.1;
}

.visitors-year-section {
    margin-bottom: 70px;
}

.visitors-year-title {
    margin: 0 0 26px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.2;
    color: #3f2c1f;
    border-bottom: 2px solid #dbc8a8;
    padding-bottom: 10px;
}

.visitors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.visitor-card {
    background: #fffaf2;
    border: 1px solid #dbc8a8;
    box-shadow: 0 8px 24px rgba(60, 40, 20, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.visitor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(60, 40, 20, 0.12);
}

.visitor-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.visitor-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eadfcf;
}

.visitor-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.visitor-card:hover .visitor-card-image img {
    transform: scale(1.04);
}

.visitor-card-body {
    padding: 16px 16px 18px;
}

.visitor-card-title {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.25;
    color: #3f2c1f;
}

.visitor-card-excerpt {
    color: #4f4034;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 14px;
}

.visitor-card-excerpt p {
    margin: 0;
}

.visitor-card-button {
    display: inline-block;
    padding: 8px 14px;
    background: #6f5338;
    color: #fff8ee;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
}

.no-visitors {
    color: #4f4034;
    font-size: 17px;
}

.visitors-sidebar {
    min-width: 0;
}

.visitors-sidebar .widget {
    background: #fffaf2;
    border: 1px solid #dbc8a8;
    padding: 22px 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(60, 40, 20, 0.06);
}

.visitors-sidebar .widget-title {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    color: #3f2c1f;
}

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

.visitors-sidebar li {
    margin-bottom: 10px;
}

.visitors-sidebar li:last-child {
    margin-bottom: 0;
}

.visitors-sidebar a {
    color: #5c4330;
    text-decoration: none;
}

.visitors-sidebar a:hover {
    color: #8a6846;
}

.visitors-sidebar .cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

@media (max-width: 1400px) {
    .visitors-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .visitors-layout {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .visitors-title {
        font-size: 38px;
    }

    .visitors-year-title {
        font-size: 28px;
    }

    .visitors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 560px) {
    .visitors-page {
        padding: 30px 14px 50px;
    }

    .visitors-grid {
        grid-template-columns: 1fr;
    }

    .visitor-card-title {
        font-size: 22px;
    }

    .visitors-sidebar .widget {
        padding: 18px 16px;
    }

    .visitors-year-title {
        font-size: 24px;
    }
}