/**
 * Main SCSS file for Synpact Theme
 * This file imports all partials and compiles to custom.css
 */
/* Arial Font Family */
@font-face {
  font-family: "Arial";
  src: url("../fonts/arial/Arial.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arial";
  src: url("../fonts/arial/Arial-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Arial";
  src: url("../fonts/arial/Arial-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Arial";
  src: url("../fonts/arial/Arial-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
/* PT Serif Font Family */
@font-face {
  font-family: "PT Serif";
  src: url("../fonts/pt-serif/PTSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PT Serif";
  src: url("../fonts/pt-serif/PTSerif-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PT Serif";
  src: url("../fonts/pt-serif/PTSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PT Serif";
  src: url("../fonts/pt-serif/PTSerif-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: clamp(14px, 1vw + 12px, 16px);
}
@media (min-width: 1200px) {
  body {
    font-size: 16px;
  }
}

a {
  color: #5eaa00;
  transition: color 0.3s ease;
}
a:hover {
  color: #005177;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

.site-header {
  position: relative;
  background-color: #F1F2EB;
  padding: 0;
  min-height: 100px;
}

.header-background {
  position: relative;
  width: 100%;
  height: 130px;
  overflow: visible;
  z-index: 2;
}
.header-background svg {
  width: auto;
  min-width: 100%;
  height: 130px;
  display: block;
}
.header-background svg path {
  filter: drop-shadow(0px 2px 2px rgba(35, 44, 51, 0.3));
}
@media (max-width: 768px) {
  .header-background {
    height: 100px;
  }
  .header-background svg {
    height: 100px;
  }
}
@media (min-width: 1280px) {
  .header-background {
    height: auto;
  }
  .header-background svg {
    height: 100%;
  }
}

.header-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 5px 10px 0px;
  margin: 0 20px;
  min-width: 320px;
}
@media (max-width: 768px) {
  .header-content {
    flex-wrap: wrap;
    padding: 5px 0;
    margin: 0 30px;
  }
}
@media (min-width: 1280px) {
  .header-content {
    padding-top: 15px;
  }
}

.site-branding {
  flex: 0 0 auto;
  max-width: 300px;
}
.site-branding .site-logo {
  margin-left: 15px;
  margin-top: 10px;
  height: clamp(50px, 6vw, 100px);
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .site-branding {
    max-width: 150px;
  }
  .site-branding .site-logo {
    max-height: 50px;
  }
}
@media (min-width: 1280px) {
  .site-branding .site-logo {
    margin-left: 15px;
    margin-top: 0;
    max-height: 100px;
  }
}

.main-navigation {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.main-navigation .nav-menu {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  font-size: clamp(14px, 1.5vw, 30px);
  font-family: "Arial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
.main-navigation .nav-menu .menu-item {
  position: relative;
}
.main-navigation .nav-menu .menu-item a {
  color: #232C33;
  text-decoration: none;
  font-weight: 500;
  padding: clamp(0px, 0.5vw, 3px) clamp(10px, 1vw, 30px);
  display: block;
}
.main-navigation .nav-menu .menu-item a:hover {
  color: #F1F2EB;
  background-color: #AE2761;
  border-radius: 8px;
}
@media (min-width: 1280px) {
  .main-navigation .nav-menu .menu-item a {
    padding: 0 clamp(10px, 1vw, 30px);
  }
}
.main-navigation .nav-menu .menu-item .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0;
  font-style: italic;
  list-style: none;
  font-size: 1vw;
}
.main-navigation .nav-menu .menu-item .sub-menu .menu-item {
  padding: 0;
}
.main-navigation .nav-menu .menu-item .sub-menu .menu-item a {
  display: block;
  padding: 10px 15px;
  white-space: normal;
  word-wrap: break-word;
}
.main-navigation .nav-menu .menu-item.menu-item-has-children:hover > a {
  background: #AE2761;
  color: #F1F2EB;
  border-radius: 8px 8px 0 0;
}
.main-navigation .nav-menu .menu-item.menu-item-has-children:hover > .sub-menu {
  display: block;
  background: #AE2761;
  border-radius: 0 0 8px 8px;
}
.main-navigation .nav-menu .menu-item.menu-item-has-children:hover > .sub-menu .menu-item a {
  color: #F1F2EB;
}
.main-navigation .nav-menu .menu-item.menu-item-has-children:hover > .sub-menu .menu-item a:hover {
  color: rgba(241, 242, 235, 0.6);
  border-radius: 0 0 8px 8px;
}
.main-navigation .menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}
.main-navigation .menu-toggle .screen-reader-text {
  position: absolute;
  left: -9999px;
}
.main-navigation .menu-toggle .menu-toggle-icon {
  display: block;
  width: 25px;
  height: 2.5px;
  background: #232C33;
  position: relative;
  border-radius: 10px;
}
.main-navigation .menu-toggle .menu-toggle-icon::before {
  content: "";
  display: block;
  width: 25px;
  height: 2.5px;
  background: #232C33;
  position: absolute;
  border-radius: 10px;
  top: -6px;
}
.main-navigation .menu-toggle .menu-toggle-icon::after {
  content: "";
  display: block;
  width: 25px;
  height: 2.5px;
  background: #232C33;
  position: absolute;
  border-radius: 10px;
  top: 6px;
}
.main-navigation .menu-toggle:hover .menu-toggle-icon,
.main-navigation .menu-toggle:hover .menu-toggle-icon::before,
.main-navigation .menu-toggle:hover .menu-toggle-icon::after {
  background: rgba(35, 44, 51, 0.6);
}
@media (max-width: 768px) {
  .main-navigation .menu-toggle {
    display: block;
  }
  .main-navigation .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F1F2EB;
    flex-direction: column;
    gap: 0px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .main-navigation .nav-menu.toggled {
    display: flex;
  }
  .main-navigation .nav-menu .menu-item {
    width: 100%;
  }
  .main-navigation .nav-menu .menu-item a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #ddd;
  }
  .main-navigation .nav-menu .menu-item .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 20px;
  }
  .main-navigation .nav-menu .menu-item .sub-menu a {
    padding: 10px 15px;
  }
  .main-navigation .nav-menu .menu-item.menu-item-has-children > a {
    cursor: pointer;
  }
  .main-navigation .nav-menu .menu-item.menu-item-has-children.open > .sub-menu {
    display: block;
  }
}

.site-footer {
  background-color: #F1F2EB;
}

.footer-content {
  background-color: #AE2761;
  border-radius: 10vw 10vw 0 0;
  padding: 3vh 10vw;
  margin-top: 5vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
}

.footer-contact {
  margin: 0;
  margin-top: 3vh;
  font-family: "Arial", sans-serif;
  font-size: clamp(14px, 1.5vw, 28px);
  font-weight: 400;
}
.footer-contact a {
  color: #AE2761;
  text-decoration: none;
}

.footer-contact-info {
  background-color: #F1F2EB;
  color: #AE2761;
  padding: 0.5vh 2vw;
  border-radius: 5vw;
  transition: opacity 0.3s ease;
}
.footer-contact-info:hover {
  background-color: rgba(241, 242, 235, 0.9);
}

.footer-logo {
  width: clamp(80px, 18vw, 220px);
  height: auto;
}

.footer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-copyright {
  margin-top: 2vh;
  padding: 1vh 30vw 2vh 0;
  border-top: 1px solid rgba(241, 242, 235, 0.3);
}
.footer-copyright p {
  margin: 0;
  color: #F1F2EB;
  font-family: "Arial", sans-serif;
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 400;
}

@media (max-width: 480px) {
  .site-footer {
    border-radius: 15vw 15vw 0 0;
  }
  .footer-logo {
    width: clamp(80px, 25vw, 220px);
    height: auto;
  }
  .footer-copyright {
    padding: 1vh 5vw 2vh 0;
  }
}
.home {
  background-color: #F1F2EB;
}
.home .site-main {
  margin: 0 15vw;
}
@media (max-width: 768px) {
  .home .site-main {
    margin: 0 5vw;
  }
}

html:has(.page-template-page-about) {
  background-color: #F1F2EB !important;
}

.page-template-page-about {
  background-color: #F1F2EB !important;
  min-height: 100vh;
}
.page-template-page-about .site {
  background-color: #F1F2EB !important;
  min-height: 100vh;
}
.page-template-page-about #page {
  background-color: #F1F2EB !important;
  min-height: 100vh;
}
.page-template-page-about #content {
  background-color: #F1F2EB !important;
}

.about-page {
  background-color: #F1F2EB;
  padding: 0 15vw;
}
@media (max-width: 768px) {
  .about-page {
    padding: 3vh 5vw;
  }
}

.intro {
  margin: 2.5vh 0;
  height: 35vw;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .intro {
    margin: 4vh 5vw;
    height: auto;
    overflow: visible;
  }
}

.intro-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .intro-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .intro-image img {
    opacity: 0.3;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.intro-text {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
  padding: 8% 0;
  box-sizing: border-box;
  gap: 3vw;
}
.intro-text h1 {
  background: transparent !important;
  margin: 0;
  font-size: 2.8vw;
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
  line-height: 1.3;
  color: #232C33;
  font-weight: bold;
  max-width: 100%;
}
@media (max-width: 768px) {
  .intro-text h1 {
    font-size: 6vw;
  }
}
.intro-text p {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 24px);
  line-height: 1.5;
  color: #232C33;
  max-width: 90%;
  font-weight: 400;
  font-family: "Arial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
@media (max-width: 768px) {
  .intro-text p {
    font-size: 3.5vw;
  }
}
@media (max-width: 768px) {
  .intro-text {
    position: relative;
    width: 100%;
    height: auto;
    padding: 5vh 3vw;
    align-items: flex-start;
    text-align: left;
    gap: 3vh;
  }
}

.intro-button {
  background-color: #AE2761;
  color: #F1F2EB;
  border: none;
  padding: clamp(10px, 2vh, 20px) clamp(20px, 3.5vw, 60px);
  border-radius: 7vw;
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 24px);
  font-family: "Arial", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-end;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}
.intro-button:hover {
  background-color: rgba(174, 39, 97, 0.8);
  color: #F1F2EB;
}
@media (max-width: 768px) {
  .intro-button {
    font-size: clamp(16px, 4vw, 20px);
    padding: clamp(12px, 2vh, 16px) clamp(24px, 6vw, 40px);
    align-self: flex-start;
  }
}

.blog-updates-slider {
  padding: 60px 0;
  background: #f7f7f7;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.blog-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.blog-slide {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.blog-slide .slide-image img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-slide .slide-content {
  padding: 30px;
}
.blog-slide .slide-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}
.blog-slide .slide-title {
  margin: 0 0 15px;
  font-size: 24px;
}
.blog-slide .slide-title a {
  color: #333;
  text-decoration: none;
}
.blog-slide .slide-title a:hover {
  color: #5eaa00;
}
.blog-slide .slide-excerpt {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.blog-slide .read-more {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-decoration: none;
  color: #5eaa00;
  background: transparent;
  padding: 0;
}
.blog-slide .read-more:hover {
  color: #005177;
}

.slider-navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-prev,
.slider-next {
  background: #5eaa00;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s ease;
}
.slider-prev:hover,
.slider-next:hover {
  background: #005177;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.post-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.post-card .post-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.post-card .post-content {
  padding: 20px;
}
.post-card .entry-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}
.post-card .entry-title {
  font-size: 20px;
  margin: 10px 0;
}
.post-card .entry-title a {
  color: #333;
  text-decoration: none;
}
.post-card .entry-title a:hover {
  color: #5eaa00;
}
.post-card .entry-excerpt {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}
.post-card .read-more {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-decoration: none;
  color: #5eaa00;
  background: transparent;
  padding: 0;
}
.post-card .read-more:hover {
  color: #005177;
}

.entry-header {
  margin-bottom: 30px;
}
.entry-header .entry-title {
  font-size: 32px;
  margin-bottom: 15px;
}
.entry-header .entry-meta {
  font-size: 14px;
  color: #666;
}
.entry-header .entry-meta .posted-on,
.entry-header .entry-meta .byline {
  margin-right: 15px;
}

.post-thumbnail {
  margin-bottom: 30px;
}
.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.entry-content {
  line-height: 1.8;
  margin-bottom: 30px;
}
.entry-content p {
  margin-bottom: 20px;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}

.entry-footer {
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 14px;
}
.entry-footer .cat-links,
.entry-footer .tags-links {
  display: block;
  margin-bottom: 10px;
}

.post-navigation {
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.post-navigation .nav-subtitle {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.page-header {
  margin-bottom: 40px;
  text-align: center;
}
.page-header .page-title {
  font-size: 32px;
  margin-bottom: 15px;
}
.page-header .archive-description {
  color: #666;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px 0;
}
.pagination .page-numbers {
  padding: 10px 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
  background: #5eaa00;
  color: #fff;
  border-color: #5eaa00;
}

@media (max-width: 768px) {
  .posts-grid {
    grid-template-columns: 1fr;
  }
  .entry-header .entry-title {
    font-size: 24px;
  }
}
.synpact-image-slider {
  position: relative;
  max-width: 100%;
  margin: 20px 0;
  overflow: hidden;
}
.synpact-image-slider .slider-item {
  display: none;
  width: 100%;
}
.synpact-image-slider .slider-item.active {
  display: block;
}
.synpact-image-slider .slider-item img {
  width: 100%;
  height: auto;
  display: block;
}
.synpact-image-slider .slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}
.synpact-image-slider .slider-btn {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s ease;
}
.synpact-image-slider .slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}
.synpact-image-slider .slider-btn.prev {
  margin-right: auto;
}
.synpact-image-slider .slider-btn.next {
  margin-left: auto;
}

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