/**
* Template Name: AgriCulture
* Template URL: https://bootstrapmade.com/agriculture-bootstrap-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Marcellus",  sans-serif;
  --nav-font: "Marcellus",  sans-serif;
}
 .hero-cta{
    background-color:#879076 !important;
    color:#fff !important;
   box-shadow: 0 4px 12px rgba(185, 149, 107, 0.15) !important;
    font-weight:600;
    letter-spacing:.3px;
  }
  .hero-cta:hover,.gomb{
    background-color:#404733 !important;
    color:#fbefe4 !important;
  }
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2d465e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #879076; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --accent-color: #8c6432;
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #116530; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #116530; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #2ea359;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);color:#879076!important;
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);background:#b89473;
  bottom: 0;
  left: 0;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);background-color:#879076  !important;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;background-color:#879076  !important;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);background-color:#879076  !important;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;background-color:#879076  !important;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 170px 0;
  text-align: center;
  position: relative;
  padding-bottom:50px;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 0px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
  font-family: var(--heading-font);
  font-size: 32px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 100px);
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .section-title h2 {
  color: var(--accent-color);
  font-size: 20px;
}

.services .content .service-item {
  background-color: var(--surface-color);
  padding: 20px 30px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.services .content .service-item .number {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .content .service-item .service-item-icon {
  position: relative;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.services .content .service-item .service-item-icon img {
  width: 50px;
}

.services .content .service-item .service-item-icon:before {
  position: absolute;
  content: "";
  transform: rotate(45deg);
  z-index: -1;
  left: -20px;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-right: 40px solid var(--accent-color);
  display: none;
}

.services .content .service-item .service-item-icon>span {
  color: var(--default-color);
  font-size: 4rem;
}

.services .content .service-item .service-item-content .service-heading {
  font-size: 20px;
  color: var(--default-color);
  font-weight: 400;
}

.services .content .service-item .service-item-content p {
  font-size: 15px;
}

@media (min-width: 769px) {
  .services .content [class^=col-]:nth-child(4n+4) .service-item {
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .services .content [class^=col-]:nth-last-child(-n+4) .service-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (max-width: 768px) {
  .services .content [class^=col-]:nth-child(2n+2) .service-item {
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .services .content [class^=col-]:last-child .service-item,
  .services .content [class^=col-]:nth-last-child(2) .service-item {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

@media (max-width: 576px) {
  .services .content [class^=col-] .service-item {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-title {
  margin-bottom: 60px;
  color:#A88E74 !important;
}

.about .content {
  /*background: var(--accent-color);
  background-color:#887B5C!important;
  color: var(--contrast-color);
  padding: 7rem 0;*/
  
  padding: 80px 0;background-color: #f6ece3;
  color: #A88E74 !important
}

.about .content .img-overlap {
  margin-top: -150px;
}

.about p {
  color: var(--contrast-color);color:#8a6b50 !important;
}

.about .content-title {
  color: var(--contrast-color);color:#8a6b50 !important;
  font-weight: 300;
  text-align: left;
}

.about .content-title strong {
  font-weight: 700;color:#8a6b50 !important;
}

.about .content-subtitle {
  font-weight: 300;
  color: var(--contrast-color);
  text-transform: uppercase;color:#8a6b50 !important;
  font-size: 1.3rem;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 {
  overflow: visible;
  margin-bottom: 200px;
}

.services-2 .section-title {
  text-align: left;
}

.services-2 .section-title h2 {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
  text-transform: uppercase;
  font-size: 20px;
}

.services-2 .section-title p {
  color: var(--contrast-color);
}

.services-2 .services-carousel-wrap {
  position: relative;
  margin-bottom: -200px;
}

.services-2 .swiper-wrapper {
  height: auto;
}

.services-2 .service-item {
  position: relative;
  overflow: hidden;
}

.services-2 .service-item:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s all ease;
}

.services-2 .service-item img {
  transition: 0.5s all ease;
  transform: scale(1);
}

.services-2 .service-item .service-item-contents {
  z-index: 9;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transition: 0.3s all ease;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.services-2 .service-item .service-item-contents .service-item-category {
  color: var(--accent-color);
  text-transform: uppercase;
}

.services-2 .service-item .service-item-contents .service-item-title {
  color: var(--contrast-color);
  margin-bottom: 0;
}

.services-2 .service-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.services-2 .service-item:hover .service-item-contents {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.services-2 .service-item:hover img {
  transform: scale(1.2);
}

.services-2 .navigation-prev,
.services-2 .navigation-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  background: var(--contrast-color);
  background-color: none;
  border: none;
  transition: 0.3s all ease;
}

.services-2 .navigation-prev i,
.services-2 .navigation-next i {
  font-size: 2rem;
}

.services-2 .navigation-prev:hover,
.services-2 .navigation-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.services-2 .navigation-prev {
  left: 10px;
}

.services-2 .navigation-next {
  right: 10px;
}

.services-2 .swiper {
  padding-bottom: 50px;
}

.services-2 .swiper-pagination {
  bottom: 0px;
}

.services-2 .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  width: 20px;
  height: 4px;
  background-color: color-mix(in srgb, var(--background-color), transparent 80%) !important;
  opacity: 1;
}

.services-2 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonials .testimonial blockquote p {
  font-size: 20px;
  color: var(--default-color);
  font-weight: 500;
}

.testimonials .testimonial .client-name {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-posts .post-item .post-content {
  padding: 30px;
}

.recent-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-posts .post-item:hover .post-title,
.recent-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .content {
  padding: 20px 0;
}

.call-to-action .content h3 {
  font-weight: 300;
  text-transform: uppercase;
}

.call-to-action .content .form-subscribe .form-control {
  border: 2px solid var(--accent-color);
  background: var(--surface-color);
  border-radius: 0;
}

.call-to-action .content .form-subscribe input[type=email] {
  height: 63px !important;
  color: var(--default-color);
}

.call-to-action .content .form-subscribe input[type=email]:focus {
  box-shadow: none;
}

.call-to-action .content .form-subscribe input[type=email]::placeholder {
  color: color-mix(in srgb, var(--contrast-color), transparent 50%);
}

.call-to-action .content .loading,
.call-to-action .content .error-message,
.call-to-action .content .sent-message {
  margin-top: 15px;
}

.call-to-action .content .btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 0;
}

.call-to-action .content .btn:hover,
.call-to-action .content .btn:active,
.call-to-action .content .btn:focus {
  box-shadow: none;
  outline: none;
  background-color: var(--contrast-color);
  border: 1px solid var(--contrrast-color);
}

/*--------------------------------------------------------------
# About 3 Section
--------------------------------------------------------------*/
.about-3 .content-title {
  color: var(--accent-color);
  margin-bottom: 30px;
  color:#879076;
}

.about-3 .btn-cta {
  text-transform: uppercase;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 6px;
}

.about-3 .list-check {
  margin-bottom: 50px;
}

.about-3 .list-check li {
  display: block;
  padding-left: 30px;
  position: relative;
}

.about-3 .list-check li:before {
  content: "\f26e";
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 0.1rem;
  font-size: 20px;
  left: 0;
  color: var(--accent-color);
}

.about-3 .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .person {
  position: relative;
}

.team .person figure {
  margin-bottom: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.team .person img {
  transition: 0.3s all ease;
}

.team .person .person-contents {
  text-align: center;
}

.team .person .person-contents h3 {
  color: var(--heading-color);
  font-size: 24px;
}

.team .person .person-contents .position {
  color: var(--accent-color);
}

.team .person:hover img {
  transform: scale(1.05);
}

.team .person .social {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

.team .person .social a {
  display: block;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  background: var(--contrast-color);
  position: relative;
}

.team .person .social a>span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.team .person .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Posts 2 Section
--------------------------------------------------------------*/
.blog-posts-2 article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.blog-posts-2 .post-img img {
  transition: 0.5s;
}

.blog-posts-2 .post-content {
  padding: 30px;
}

.blog-posts-2 .post-title {
  font-size: 20px;
  line-height: 24px;
  color: var(--heading-color);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.blog-posts-2 .meta {
  position: relative;
  margin-top: -20px;
  padding: 0 30px;
}

.blog-posts-2 .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts-2 .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts-2 .meta .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  padding: 6px 12px;
  text-align: center;
  margin-right: 15px;
  border-radius: 4px;
}

.blog-posts-2 .meta .post-date span {
  display: block;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 20px;
}

.blog-posts-2 .readmore {
  display: flex;
  align-items: center;
  font-weight: 400;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts-2 .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts-2 article:hover .post-title,
.blog-posts-2 article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts-2 article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding-top: 10px;
}

.contact .info {
  background-color: var(--surface-color);
  background-color:var(--brand-card);
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 13px 50px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 10px 0;
  margin: 0 0 20px 0;
  position: relative;
}

.widget-title:before {
  content: "";
  position: absolute;
  display: block;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  left: 0;
  right: 0;
  bottom: 1px;
}

.widget-title:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
  left: 0;
  bottom: 1px;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.blog-author-widget img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author-widget h4 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author-widget .social-links {
  margin: 5px 0;
}

.blog-author-widget .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
  font-size: 18px;
}

.blog-author-widget .social-links a:hover {
  color: var(--accent-color);
}

.blog-author-widget p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 10px 0 0 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.recent-posts-widget-2 .post-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.recent-posts-widget-2 .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget-2 .post-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts-widget-2 .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget-2 .post-item h4 a:hover {
  color: var(--accent-color);
}
.about-3{
	background-color:#FFFCF9!important;
}
.recent-posts-widget-2 .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


.wow, .animated {
  animation-duration: 2s !important;
  
color: #879076 !important;
animation-delay: 0.1s;
  animation-name: bounceInUp;
}
.text-primary{
	
color: #879076 !important;

}
.btn-primary2{
	background-color: #879076 !important;
border-radius:5px;
color:white!important;}
.btn-primary2:hover{
}
.service-item{
	background-color:#fffcf8 !important;
	background-color:#FFFDFB !important;
	
}
h1{
	font-weight: 400 !important;
  font-family: 'Playball', cursive !important;
}
.mti{
	color:#879076 !important;
}
/*** service start ***/
.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: #879076  !important;
    border-radius: 8px;
    transition: 1s;
	box-shadow: 0 4px 15px rgba(182, 139, 90, 0.8);
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-item:hover .service-content-icon i {
    color: var(--bs-dark) ;
	--color:#A37D53!important;
	color:white!important;
}

.service-item:hover .service-content-icon p {
    color: var(--bs-white);
	--color:#7A6855;
	color:#fff!important;
}

.service-item:hover .service-content-icon a.btn-primary {
    background: var(--bs-white); --background:#A37D53;
    color: var(--bs-dark);--color:#A37D53;
}

.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}
/*** Services End ***/
.dt{
	--color:#A37D53!important;
	color:#879076 !important;
	min-height:60px;
}
.service-content-icon a p {
  height:135px;
}
.service-item:hover .dt {
  color: #fff!important; /* ekkor lesz fehér */
}

.service-item:hover .rounded-pill{
	background-color:#fff!important;
	color:#879076!important;
}

/* Process (How I Work) */
.process-item { background-color:#fffcf8!important; }
.process-item h5 { color: var(--heading-color); color:#887B5C;font-weight:600; }
.process-item p  { color: color-mix(in srgb, var(--default-color), transparent 20%); }

.process-ico{
  width:84px; height:84px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  background-color:#fbefe4;               /* brand-harmonizált világos */
  border:1px solid #E7D7C8;
  color:#91613A;                           /* ikon színe */
  font-size:34px;                          /* bi ikon méret */
}
.process-ico .step-num{
  position:absolute; bottom:-8px; right:-8px;
  width:30px; height:30px; border-radius:50%;
  background:#879076; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:700;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
}

/* kis finomság mobilra */
@media (max-width: 576px){
  .process-ico{ width:72px;height:72px;font-size:30px; }
}
/* --- Hogyan dolgozom? finomhangolás --- */

/* Szekció főcím – finom elválasztó */
#process h2.content-title,
#process .process-title { /* ha máshogy nevezted, cseréld */
  position: relative;
  color: #5f6f56;                /* lágy olívazöld cím */
}
#process h2.content-title::after,
#process .process-title::after{
  content:"";
  display:block;
  width:48px;
  height:2px;
  background:#879076;           /* brand-zöld */
  margin:10px auto 0;
  opacity:.35;
}

/* Kártya szöveg olvashatóság */
.process-card p{
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  line-height: 1.55;
}

/* Kártya keret/hover – finom brand-es kiemelés */
.process-card{
  border:1px solid rgba(135,144,118,.25);
  transition: box-shadow .25s ease, transform .2s ease, border-color .25s ease;
}
.process-card:hover{
  border-color:#879076;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

/* Ikon-badzs háttere picit kontrasztosabb bézs */
.process-icon-badge{
  background:#fbefe4;           /* a hero CTA bézse – egységesítés */
  border:1px solid rgba(145,97,58,.15); /* finom terrakotta kontúr */
}

/* CTA gomb – jól látható brand változat */
.process-cta.btn{
  background:#879076;           /* brand-zöld */
  color:#fff;
  border:1px solid #879076;
  box-shadow: 0 4px 16px rgba(135,144,118,.25);
}
.process-cta.btn:hover{
  background:#6e7a62;
  border-color:#6e7a62;
}

/* Ha kell bézs, akkor legyen “outline” szerepben */
.process-cta--light{
  background:#fbefe4;
  color:#91613A;
  border:1px solid #E7D7C8;
}
.process-cta--light:hover{
  background:#f6e6d9;
  color:#7e4f2b;
  border-color:#e2cdbd;
}





/* FAQ (GYIK) */
.faq-accordion .accordion-item{
  border:1px solid rgba(135,144,118,.25);
  border-radius: 12px;
  overflow: hidden;
  background:#fffcf8; /* a service kártyákhoz igazítva */
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
  marg-in-bottom: 14px;
}
.faq-accordion .accordion-button{
  font-family: var(--heading-font);
  font-size: 1.05rem;
  padding: 16px 18px;
  background:#f6f6f6;
  color:#2d465e;color:#879076!important;
}
.faq-accordion .accordion-button:focus{
  box-shadow:none;
}
.faq-accordion .accordion-button:not(.collapsed){
  background:#fbefe4;
  color:#91613A;
  background:#879076 !important;color:#fff!important;
  border-bottom:1px solid #E7D7C8;
}
.faq-accordion .accordion-body{
  color: color-mix(in srgb, var(--default-color), transparent 10%);color:#7A6855!important;
  line-height:1.6;
  padding: 16px 18px 20px;
}
.faq-accordion .accordion-button::after{
  filter: invert(38%) sepia(8%) saturate(522%) hue-rotate(56deg) brightness(90%) contrast(88%); /* zöldes chevron */
}

:root{
  --brand-olive:#879076;
  --brand-olive-dark:#5f6f56;
  --brand-cream:#fbefe4;
  --brand-card:#fffcf8;
  --brand-border:#E7D7C8;
}

.train-card{
  background:var(--brand-card);
  border:1px solid var(--brand-border);
  border-radius:14px;
  padding:1.25rem 1.25rem 1rem;
  box-shadow:0 4px 18px rgba(0,0,0,.06);
}

.train-head{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-bottom:.5rem;
}

.train-head i{
  font-size:1.5rem;
  color:var(--brand-olive);
}

.train-head h3{
  margin:0;
  font-size:1.15rem;
  color:var(--brand-olive-dark);
  font-weight:700;
}

.train-list{
  margin:0;
  padding-left:1.25rem;color:#7A6855 !important;
}

.train-list li{
  margin:.25rem 0;
  line-height:1.5;
}
@media (min-width: 1200px) {
  .header {
    position: fixed!important;
   top:0px;left:0px;
    z-index: 1030;
	width:100%;
  }
 
}
/* Testimonials finomhangolás */
.testimonial-card .avatar{
  width:48px;height:48px;display:inline-flex;align-items:center;justify-content:center;
  background:#fbefe4;color:#91613A;font-weight:700;
}
.testimonial-card .stars i{ color:#879076; margin-right:2px; }
.testimonial-card:hover{ transform: translateY(-2px); transition:.2s ease; }


    .contact-card {
      background:#fffcf8;
      border:1px solid rgba(0,0,0,.04);
      border-radius: 12px;
    }
    .contact-card i {
      font-size: 22px;
      color:#879076;
      width: 44px; height:44px; border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      background:#fbefe4;
    }
    .form-control, .form-select {
      border-radius: 10px;
      border-color: rgba(0,0,0,.12);
    }
    .form-control:focus, .form-select:focus {
      box-shadow: 0 0 0 .2rem rgba(135,144,118,.15);
      border-color:#879076;
    }
    .btn-brand {
      background-color:#879076; color:#fff; border:1px solid #879076;
      border-radius: 999px; padding:.85rem 2rem; font-weight:600;
    }
    .btn-brand:hover { background-color:#5f6f56; border-color:#5f6f56; color:#fff; }

    .map-wrap {
      border-radius: 14px; overflow: hidden;
      box-shadow: 0 10px 24px rgba(0,0,0,.08);
    }
    .required-badge {
      font-size:.8rem; color:#91613A; background:#fbefe4; border:1px solid #E7D7C8;
      border-radius: 999px; padding:.1rem .6rem; margin-left:.3rem;
    }
.fade-soft {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.fade-soft img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  ),
  linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  ),
  linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  
  filter: drop-shadow(0 6px 12px rgba(185, 149, 107, 0.15));
}
.info-card {
  background: linear-gradient(180deg, #fff7f1 0%, #fdf3eb 100%);background:#dee0d7!important;
  border: none;
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 8px 20px rgba(217, 190, 160, 0.25);
  color: #4b3f33;
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 10px 25px rgba(217, 190, 160, 0.35);
  transform: translateY(-2px);
}

/* Cím */
.info-card h5 {
  color: #726f56;
  font-weight: 600;
  font-size: 1.25rem;
  border-bottom: 1px solid rgba(217, 190, 160, 0.4);
  padding-bottom: 8px;
  margin-bottom: 18px;
}
.info-card a{
	 color: #5f5d47!important;
}
/* Tartalom */
.info-card p {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 12px !important;
  color: #5f5d47;
  line-height: 1.65;
}

.info-card i {
  color: #8c8b6f;
  margin-right: 10px;
  font-size: 17px;
  width: 22px;
  text-align: center;
}

.info-card hr {
  border: none;
  border-top: 1px solid rgba(217, 190, 160, 0.25);
  margin: 16px 0;
}

/*Galéria*/
/* --- Galéria szekció --- */
.gallery-section {
  background-color: #fffaf6;
  padding: 60px 0 80px;
  margin-top:80px;
}

.gallery-title {
  font-family: 'Playfair Display', serif;
  color: #726f56!important;;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 10px;
}

.gallery-subtitle {
  color: #7a6247;
  font-size: 1.05rem;
  margin-bottom: 50px;
}

/* --- Album kártyák --- */
.album-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #fffdfb;
  box-shadow: 0 4px 12px rgba(217, 190, 160, 0.15);
  transition: all 0.4s ease;
  cursor: pointer;
}

.album-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.album-card:hover img {
  transform: scale(1.03);
  filter: brightness(1.07);
}

/* --- Felirat / overlay --- */
.album-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 60%, rgba(255,240,225,0.95) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 22px;
  padding-bottom: 25px;
}

.album-card:hover .album-overlay {
  opacity: 1;
}

.album-overlay h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #7a6247;
  background: #fff1e3;
  padding: 10px 26px;
  border-radius: 40px;
  box-shadow: 0 3px 8px rgba(217, 190, 160, 0.25);
}

/* --- Hover árnyék / mozgás --- */
.album-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(217, 190, 160, 0.3);
}

/* --- Mobil finomhangolás --- */
@media (max-width: 991px) {
  .album-card img { height: 320px; }
  .album-overlay h5 { font-size: 1rem; }
  /* --- Galéria szekció --- */
.gallery-section {
  
  margin-top:40px;
}

}

@media (max-width: 575px) {
  .album-card img { height: 250px; }
  .gallery-section { padding: 40px 0 60px; }
}

/* Lightbox színei */
.lb-data .lb-caption {
  font-family: 'Playfair Display', serif;
  color: #726f56!important;
}

.lb-nav a.lb-prev, 
.lb-nav a.lb-next,
.lb-close {
  filter: brightness(0) saturate(100%) invert(69%) sepia(17%) saturate(475%) hue-rotate(341deg) brightness(95%) contrast(89%);
}
/*Pricing*/
.text-brown {
 color:#464d38 !important
}

.pricing-section {
  background-color: #fff;margin-top:80px; background-color: #fffaf6;
}

.pricing-table {
  width: 100%;
  background-color: #dee0d7;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.pricing-table thead {
  background-color: #f9eee5;
  color: #8a5a3b;
  font-weight: 600;
}

.pricing-table th{
	padding: 1.2rem 1.5rem;
  vertical-align: middle;
  border: 1px solid #f1e4d9; background-color: #fffaf6;color:#8a5a3b;color:#464d38 !important;border:1px solid #ddd6c1 !important;color:#7A6855!important;
  background:#879076 !important;color:#fff!important;
}
.pricing-table td {
  padding: 1.2rem 1.5rem;
  vertical-align: middle;
  border: 1px solid #f1e4d9; background-color: #fffaf6;color:#8a5a3b;color:#464d38 !important;border:1px solid #ddd6c1 !important;color:#7A6855!important;
  background:#fff;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover {
  background-color: #fff5ed;
  transition: 0.3s;
}

.pricing-table .highlight {
  background-color: #fdf4ed;
  box-shadow: inset 0 0 0 2px #f1dacb;
}

@media (max-width: 768px) {
  .pricing-table th, .pricing-table td {
    font-size: 0.95rem;
    padding: 0.8rem;
  }
}


/* --- Tested titkai oldal stílus --- */
.page-hero {
  background-color: #fffaf6;
}

.page-hero .lead {
  color: #7a6247;
}

.content-section {
  background-color: #ffffff;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: #8a5a3b;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: 'Playfair Display', serif;
  color: #7a6247;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.topic-title {
  font-size: 1.2rem;
  color: #8a5a3b;
  margin-top: 1.5rem;
  font-weight: 600;
}

p {
  color: #7A6855!important;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.divider {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, #f1e3d5, #fffaf6);
  margin: 2.5rem 0;
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  .section-subtitle {
    font-size: 1.25rem;
  }
  .topic-title {
    font-size: 1.1rem;
  }
}

.harmony-section {
  background-color: #fffaf6;
  border-radius: 20px;
  padding: 4rem 0;
}

.harmony-text p {
  color: #4b3f33;
  font-size: 1.05rem;
  line-height: 1.7;
}

.harmony-text h2 {
  color: #8a5a3b;
  font-weight: 600;
  font-size: 1.8rem;
}

.harmony-image {
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.harmony-image:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* Reszponzív finomítás */
@media (max-width: 768px) {
  .harmony-text {
    text-align: center;
  }
  .harmony-image {
    margin-top: 1.5rem;
  }
}



.house-rules-section {
  background-color: #fffaf6;
  border-radius: 20px;
  padding: 4rem 0;
}

.house-rules-section .section-title {
  color: #8a5a3b;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0px!important;
  padding-bottom:30px!important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  color: #c49b74;
}

.rules-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.rules-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  color: #4b3f33;color:#7A6855 !important;
  line-height: 1.6;
}

.rules-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #7A6855 !important;
  font-size: 1.4rem;
  line-height: 1.2;
}

.divider {
  border: 0;
  height: 1px;
  background-color: #e6d8c7;
  margin: 2.5rem 0;
}

.important-box {
  background-color: #fef2e9;background:var(--brand-card);
  border-left: 5px solid #5f6f56 !important;
  border-radius: 10px;
  padding: 1.8rem 2rem;
  color: #4b3f33;
}

.important-box h3 {
  font-size: 1.4rem;
  color: #5f6f56;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.important-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.important-box li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
}

.important-box li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #8a5a3b;
  font-size: 1rem;
}

/* Reszponzív finomítás */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.4rem;
    text-align: center;
    justify-content: center;
  }

  .rules-list li {
    font-size: 1rem;
  }

  .important-box {
    padding: 1.5rem;
  }
}

.contact-section {
  background-color: #f6f7f4;
  border-radius: 20px;
}

/* Dobozok */
.contact-info-box,
.contact-form-box {
  background-color: #dee0d7;
  background-color:var(--brand-card);background-color: #dee0d7;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Címek */
.contact-info-box h2,
.contact-form-box h2 {
  color: #5f6f56;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  color:#7A6855 !important;
}

.contact-info-box li {
  margin-bottom: 0.8rem;
  color: #4b4b3a;
  font-size: 1.05rem;
  color:#7A6855 !important;
}

.contact-info-box i {
  color: #879076;color:#7A6855 !important;
  margin-right: 8px;
}

.contact-info-box a {
  color: #5f6f56;color:#7A6855 !important ;
  text-decoration: none;
}

.contact-info-box a:hover {
  color: #879076;
  text-decoration: underline;
}

/* Űrlap */
.form-group {
  margin-bottom: 1.3rem;
}

label {
  font-weight: 600;
  color: #5f6f56;
  margin-bottom: 0.4rem;
  display: block;
}

.form-control {
  width: 100%;
  border: 1px solid #cfd2c6;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #3e3e30;
  background-color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
  border-color: #879076;
  box-shadow: 0 0 0 3px rgba(135, 144, 118, 0.25);
  outline: none;
}

.invalid-feedback {
  color: #c84c4c;
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

/* Gomb */
.btn-submit {
  background-color: #5f6f56;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 10px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
  background-color: #879076;
  transform: translateY(-2px);
}

/* Validálás */
.was-validated .form-control:invalid {
  border-color: #c84c4c;
}

.was-validated .form-control:valid {
  border-color: #879076;
}

/* Térkép */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e6d8c7;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
  filter: sepia(0.15) saturate(1.1) brightness(0.97);
  transition: transform 0.3s ease;
}

.map-container iframe:hover {
  transform: scale(1.01);
}

/* Reszponzív */
@media (max-width: 992px) {
  .map-container iframe {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .contact-info-box,
  .contact-form-box {
    padding: 1.5rem;
  }

  .contact-info-box h2,
  .contact-form-box h2 {
    font-size: 1.3rem;
    justify-content: center;
    text-align: center;
  }

  .contact-info-box ul {
    text-align: center;
  }

  .map-container {
    margin-top: 1rem;
  }

  .btn-submit {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .contact-section .row {
    flex-direction: column;
  }

  .contact-info-box,
  .contact-form-box {
    width: 100%;
  }

  .map-container {
    margin-top: 1rem;
  }
}




/*ADMIN*/
.center_signo_admin{
	font-family:"written";
	font-size:14pt;
	color:white;
	position:fixed;
	left:38%;
	z-index:2;
	top:7px;
}
.main_menu_admin{
	width:90%;
	margin:auto;
	font-size:13pt;
	font-weight:bold;
	line-height:2;
	letter-spacing:2px;
	color:#65605C;
	background-color:white;
}

ul.main_menu_admin li{
	display:inline-block;
	margin-left:20px;
}
li img{
	vertical-align:middle;
}
#nav_admin{	
	background-color:white;
	width:100%;
	min-width:100%;
	min-height:auto!important;
	height:auto!important;
	padding-top:5px;
	border-bottom:1px dotted #9AD8CF;
	border-top:1px solid #598ba6;
	text-align:center;
	z-index:4;
	margin-top:45px;
	overflow-x:hidden;
}
#nav_admin a{
	color:#65605C;
}
#nav_admin a:hover{
	color:#0050a4;
	
}

#nav_admin li{
	bodrder-bottom:3px solid transparent;
}
#nav_admin li:hover{
	border-bottom:3px solid #0050a4;
}
.admin_container{
	width:980px;
	max-width:980px;
	min-width:980px;
	background-color:white;
	padding:15px;
	margin:auto;
	text-align:center;
}

.login_admin{
	width:600px;
	margin:auto;
	border-top:2px solid #5bacff;
	border-left:2px solid #5bacff;
		border-right:2px solid #5bacff;
			border-bottom:2px solid #5bacff;
		background-color:skyblue;
}
.login_admin{
	color:white;
	font-weight:bold;
	
}
.c_ad{
	text-align:center;
}
.login_admin h1{
	text-align:center;
	background-image:url('images/fixed_on_top_bg.jpg');
	height:45px;
	color:#fff;
	text-shadow:1px 1px 1px black;
}
.login_admin form{
	width:250px;	
	margin:auto;
}
.login_admin_btn{
	margin-left:90px;
}

.login_admin input.inp{
	background-color:white;
	border-top:2px solid black;
	border-left:2px solid black;
	border-right:1px solid gray;
	border-bottom:1px solid gray;
}
.admin_content_sub{
	width:1280px;
	margin:auto;
	background-color:white;
	padding:15px;
}
.admin_content_sub h1{
	text-align:center;
}
.edit_table{
	width:1000px;
	margin:auto;
	border:2px solid  #5bacff;
	text-align:center;
}
.edit_table th{
	text-align:center;
	font-weight:bold;
	font-size:14pt;
	border:2px solid #5bacff;
	
	background-color:#b7dbff;
}
.edit_table input{
	float:left;
	width:200px;
}
.icon_sm{
	width:30px;
	vertical-align:middle;
}
.submit_admin{
	height:50px;
	width:100%!important;
	letter-spacing:3px;
	font-weight:bold;
}
.status_msg{
	text-align:center;
	font-weight:bold;
}
.edit_table a{
	color:#5bacff;
	font-weight:bold;
}
.edit_table a:hover{
	color:#2b94ff;
	text-decoration:underline;
	font-weight:bold;
}
a.admin_icon_add{
	font-weight:bold;
}
a.admin_icon_add img{
	margin-top:-10px;
	margin-bottom:5px;
	margin-right:5px;
}
a.average{
	color:#65605C;
	font-weight:bold;
}
a.average:hover{
	color:black;
	font-weight:bold;
}

h2.written{
	font-family:"written";
	color:#7E2246;
	text-align:center;
	text-decoration:underline;
}
.status{
	padding:20px;
	font-weight:bold;
}
.green_bold{
	color:green;
}
.red_bold{
	color:red;
}
.aktualis_kep{
	width:250px;
}

/*Article*/
h3.title{
	color:#1E5AA6;
	}
#mutato:hover{
	cursor:pointer;
}
.detailed_art_img{
	width:30%;
	float:right;
	margin-top:10px;
	margin-left:10px;
}
.starred_news_img img{
	max-height:165px;
}
.article_detailed img{
	max-width:100%;
}

@media (min-width: 1024px) and (max-width:1024px){
	/*SUB*/

.submenu_cont{
	position:absolute;
	background-color:#1e5aa6;
	color:white;
	padding:5px;
	left:137px;
	margin-top:5px;
	border-radius:0px 0px 10px 10px;
	-moz-border-radius:0px 0px 10px 10px;
	z-index:999;
	border-bottom:20px solid black;
}
.submenu_cont2{
	position:absolute;
	background-color:#1e5aa6;
	color:white;
	padding:5px;
	left:230px;
	margin-top:5px;
	border-radius:0px 0px 10px 10px;
	-moz-border-radius:0px 0px 10px 10px;
	z-index:999;
	border-bottom:20px solid black;
}
.submenu_cont3{
	position:absolute;
	background-color:#1e5aa6;
	color:white;
	padding:5px;
	left:310px;
	margin-top:5px;
	border-radius:0px 0px 10px 10px;
	-moz-border-radius:0px 0px 10px 10px;
	z-index:999;
	border-bottom:20px solid black;
}
.submenu_cont4{
	position:absolute;
	background-color:#1e5aa6;
	color:white;
	padding:5px;
	left:400px;
	margin-top:5px;
	border-radius:0px 0px 10px 10px;
	-moz-border-radius:0px 0px 10px 10px;
	z-index:999;
	border-bottom:20px solid black;
}
.submenu_cont5{
	position:absolute;
	background-color:#1e5aa6;
	color:white;
	padding:5px;
	left:500px;
	margin-top:5px;
	border-radius:0px 0px 10px 10px;
	-moz-border-radius:0px 0px 10px 10px;
	z-index:999;
	border-bottom:20px solid black;
}
.submenu_cont6{
	position:absolute;
	background-color:#1e5aa6;
	color:white;
	padding:5px;
	left:300px;
	margin-top:5px;
	border-radius:0px 0px 10px 10px;
	z-index:999;
	-moz-border-radius:0px 0px 10px 10px;
	border-bottom:20px solid black;
}
.submenu_cont7{
	position:absolute;
	background-color:#1e5aa6;
	color:white;
	padding:5px;
	left:685px;
	margin-top:5px;
	border-radius:0px 0px 10px 10px;
	-moz-border-radius:0px 0px 10px 10px;
	z-index:999;
	border-bottom:20px solid black;
}
.submenu_cont8{
	position:absolute;
	background-color:#1e5aa6;
	color:white;
	padding:5px;
	left:780px;
	margin-top:5px;
	border-radius:0px 0px 10px 10px;
	-moz-border-radius:0px 0px 10px 10px;
	z-index:999;
	border-bottom:20px solid black;
}
.submenu_cont9{
	position:absolute;
	background-color:#1e5aa6;
	color:white;
	padding:5px;
	left:875px;
	margin-top:5px;
	border-radius:0px 0px 10px 10px;
	-moz-border-radius:0px 0px 10px 10px;
	z-index:999;
	border-bottom:20px solid black;
}
.submenu{
	position:relative;
	padding-right:20px;
	padding-top:5px;
	padding-bottom:5px;
}
.submenu2,.submenu3,.submenu4,.submenu5,.submenu6,.submenu7,.submenu8,.submenu9{
	position:relative;
	padding-right:20px;
	padding-top:5px;
	padding-bottom:5px;
}
.hirek_upper,.hirek_upper2,.hirek_upper3,.hirek_upper4,.hirek_upper5,.hirek_upper6,.hirek_upper7,.hirek_upper8,.hirek_upper9{
	position:absolute;
}
}
.likeold{
		text-align:center;
}
.likeold a{

	font-weight:bold;
	font-size:14pt;
}

/* ======= FELSŐ ADMIN FEJLÉC ======= */
.fixed_on_top {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #f7f6f2;
  border-bottom: 2px solid #b7b597;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.center_signo_admin {
  font-family: "Segoe UI", sans-serif;
  color: #6b705c;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.right_top_admin {
  display: flex;
  align-items: center;
  gap: 20px;
}

.right_top_admin a {
  color: #5bacff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.right_top_admin a:hover {
  color: #3a8ee0;
}

.right_top_admin img {
  vertical-align: middle;
  margin-left: 5px;
}

/* ======= FŐ NAVIGÁCIÓ ======= */
#nav_admin {
  background-color: #ffffff;
  border-bottom: 2px solid #b7b597;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  text-align: center;
  z-index: 999;
}

.main_menu_admin {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.main_menu_admin a {
  text-decoration: none;
}

.main_menu_admin li {
  display: inline-block;
  padding: 14px 22px;
  font-size: 15px;
  color: #6b705c;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
  border-bottom: 3px solid transparent;
}

.main_menu_admin li:hover {
  background-color: #f9f9f7;
  color: #4f553e;
  border-bottom: 3px solid #a5a58d;
  cursor: pointer;
}

/* ======= KIJELENTKEZÉS GOMB STÍLUSA ======= */
.main_menu_admin li[name="9"] {
  background-color: #a5a58d;
  color: white;
  border-radius: 0 0 0 0;
  margin-left: 15px;
  transition: all 0.25s;
}

.main_menu_admin li[name="9"]:hover {
  background-color: #6b705c;
}

/* ======= FELSŐ ADMIN FEJLÉC (vékonyabb verzió) ======= */
.fixed_on_top {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #f7f6f2;
  border-bottom: 1px solid #b7b597;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  padding: 6px 20px; /* vékonyabb sáv */
  display: box;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

/* középső cím */
.center_signo_admin {
  font-family: "Segoe UI", sans-serif;
  color: #6b705c;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #f7f6f2;
  border-bottom: 1px solid #b7b597;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.admin-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 25px;
  
  margin: 0 auto;
  position: relative;
}

.admin-topbar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Segoe UI", sans-serif;
  color: #6b705c;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.admin-topbar-right {
  display: flex;
  align-items: right;
  gap: 20px;
  margin-left: auto;
}

.admin-link {
  color: #7a7f67;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease-in-out;
}

.admin-link:hover {
  color: #4f553e;
}

.admin-link img {
  height: 20px;
  vertical-align: middle;
}

.admin-logout img {
  height: 32px;
  transition: transform 0.2s;
}

.admin-logout img:hover {
  transform: scale(1.1);
}
/* ======= ADMIN NAVIGÁCIÓ ======= */
#nav_admin {
  background-color: #ffffff;
  border-bottom: 2px solid #b7b597;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  text-align: center;
  z-index: 900;
}

.main_menu_admin {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #ffffff;
}

/* Linkek */
.main_menu_admin a {
  text-decoration: none;
}

.main_menu_admin li {
  display: inline-block;
  padding: 14px 22px;
  margin: 0 2px;
  font-size: 15px;
  color: #6b705c;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
  border-bottom: 3px solid transparent;
  border-radius: 6px 6px 0 0;
}

/* Hover effekt */
.main_menu_admin li:hover {
  background-color: #f9f9f7;
  color: #4f553e;
  border-bottom: 3px solid #a5a58d!important; /* olívás, nem kék */
  cursor: pointer;
}

/* Kijelentkezés gomb */
.main_menu_admin li[name="9"] {
  background-color: #a5a58d;
  color: white;
  border-radius: 0;
  margin-left: 15px;
  transition: all 0.25s;
}

.main_menu_admin li[name="9"]:hover {
  background-color: #6b705c;
}

/* Mobilbarát viselkedés */
@media (max-width: 768px) {
  .main_menu_admin {
    flex-direction: column;
  }

  .main_menu_admin li {
    width: 100%;
    text-align: center;
    border-radius: 0;
  }
}
  /* ===== TOPBAR ===== */
    .admin-topbar {
      position: sticky;
      top: 0;
      width: 100%;
      background-color: #f7f6f2;
      border-bottom: 1px solid #b7b597;
      box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
      z-index: 1000;
    }

    .admin-topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 6px 25px;
      
      margin: 0 auto;
      position: relative;
    }

    .admin-topbar-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      font-family: "Segoe UI", sans-serif;
      color: #6b705c;
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.3px;
      white-space: nowrap;
    }

    .admin-topbar-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .admin-link {
      color: #7a7f67;
      font-weight: 600;
      text-decoration: none;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all 0.25s ease-in-out;
    }

    .admin-link:hover {
      color: #4f553e;
    }
	
	
	   .admin-link img {
      height: 20px;
      vertical-align: middle;
    }

    .admin-logout img {
      height: 32px;
      transition: transform 0.2s;
    }

    .admin-logout img:hover {
      transform: scale(1.1);
    }

    /* ===== NAVIGÁCIÓ ===== */
    #nav_admin {
      background-color: #ffffff;
      border-bottom: 2px solid #b7b597;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      width: 100%;
      text-align: center;
    }

    .main_menu_admin {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      background-color: #ffffff;
    }

    .main_menu_admin a {
      text-decoration: none;
    }

    .main_menu_admin li {
      display: inline-block;
      padding: 14px 22px;
      margin: 0 2px;
      font-size: 15px;
      color: #6b705c;
      font-weight: 500;
      border-bottom: 3px solid transparent;
      background: transparent;
      transition: all 0.25s ease-in-out;
      border-radius: 6px 6px 0 0;
    }

    .main_menu_admin li:hover {
      background-color: #f9f9f7;
      color: #4f553e;
      border-bottom: 3px solid #a5a58d;
    }

    /* ===== AKTÍV FÜL ===== */
    .main_menu_admin li.active {
      background-color: #f7f6f2;
      color: #4f553e;
      font-weight: 600;
      border-bottom: 3px solid #6b705c;
    }

    /* ===== KIJELENTKEZÉS ===== */
    .main_menu_admin li[name="9"] {
      background-color: #a5a58d;
      color: white;
      border-radius: 0;
      margin-left: 15px;
      transition: all 0.25s;
    }

    .main_menu_admin li[name="9"]:hover {
      background-color: #6b705c;
    }

    /* ===== MOBILBARÁT ===== */
    @media (max-width: 768px) {
      .main_menu_admin {
        flex-direction: column;
      }

      .main_menu_admin li {
        width: 100%;
        text-align: center;
        border-radius: 0;
      }
    }

	
	body { background:#f7f6f2; font-family: "Segoe UI", sans-serif; }
.slides-container {
  max-width: 1000px; margin: 40px auto; background: #fff;
  border: 2px solid #b7b597; border-radius: 12px;
  padding: 25px 30px; box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.slides-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.slides-header h2 { color: #6b705c; margin: 0; }
.add-slide-btn {
  background-color: #a5a58d; color: #fff; border: none; border-radius: 6px;
  padding: 8px 16px; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.add-slide-btn:hover { background-color: #6b705c; }

.slides-table { width:100%; border-collapse:collapse; font-size:15px; }
.slides-table th, .slides-table td {
  border-bottom:1px solid #ddd; padding:10px; text-align:center;
}
.slides-table th { background:#f7f6f2; color:#6b705c; }
.slide-thumb { width:100px; border-radius:6px; }

.slide-actions button {
  border:none; background:none; font-size:18px; cursor:pointer; margin:0 5px;
}
.edit-btn:hover { color:#6b705c; }
.delete-btn:hover { color:#c0392b; }

/* ======= MODAL ======= */
.modal {
  display:none; position:fixed; top:0; left:0; width:100%; height:100%;
  background:rgba(0,0,0,0.4); z-index:9999;
}
.modal-content {
  background:#fff; border:2px solid #b7b597; border-radius:10px;
  padding:25px; width:400px; margin:100px auto; position:relative;
}
.close { position:absolute; right:15px; top:10px; cursor:pointer; font-size:20px; }
label { display:block; margin-top:10px; font-weight:500; color:#6b705c; color:#7A6855 !important;}
input, textarea, select {
  width:100%; border:1px solid #b7b597; border-radius:6px;
  padding:8px; margin-top:4px; font-size:14px; background-color:#f9f9f7;
}
.save-btn {
  margin-top:15px; background-color:#a5a58d; color:white; border:none;
  border-radius:6px; padding:10px 25px; font-size:15px; cursor:pointer;
}
.save-btn:hover { background-color:#6b705c; }
.preview { display:block; width:100%; border-radius:6px; margin-top:10px; }
.error-box {
  background:#f9dede; border:1px solid #c0392b; padding:10px; color:#a00;
  margin-bottom:10px; border-radius:6px;
}
.success-box {
  background:#d4edda; border:1px solid #6b705c; padding:10px; color:#3a3a3a;
  margin-bottom:10px; border-radius:6px;
}
/* Mobil hero extra kompakt méretben */
@media (max-width: 768px) {
  .page-title {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    background-position: center top;
  }
}

/* Kis mobilok (iPhone SE stb.) */
@media (max-width: 480px) {
  .page-title {
    padding-top: 25px !important;
    padding-bottom: 30px !important;
  }
}


ul {
  list-style-position: outside!important;
}
.icon-text-list {
  color: #726f56;
}

.icon-row {
  display: flex !important;
  align-items: flex-start !important;
  margin-bottom: 12px;
}

.icon-row i {
  flex: 0 0 26px !important;
  font-size: 1.1em;
  line-height: 1.4;
  margin-top: 2px;
}

.icon-row .text {
  flex: 1;
}
.icon-text-list {
  color: #7A6855;
}

.icon-text-list .icon-row {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.icon-text-list .icon-row i {
  flex: 0 0 18px;
  margin-top: 2px;
  color: #879076;
}

.icon-text-list .icon-row .text {
  flex: 1;
}
/* ===== HERO RESPONSIVE SWITCH ===== */

/* alapból: mobil hero rejtve */
.hero-mobile {
  display: none;
  position: relative;
}

.hero-mobile img {
  width: 100%;
  height: 180px;              /* lapos, nem zabál */
  object-fit: cover;
}

.hero-mobile-overlay {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

/* DESKTOP */
@media (min-width: 992px) {
  .hero-desktop {
    display: block;
  }
}

/* MOBIL */
@media (max-width: 991px) {
 /*  .hero-desktop {
    display: none !important;
  }
*/
.nomob{
	display:none!important;
}
  .hero-mobile {
    display: block;
	padding:0px!important;
  }
}
/* ===== ABOUT DESKTOP / MOBILE SWITCH ===== */
/* ===== ABOUT CLEAN ===== */

.about-clean {
  background: #faf9f6;
}

.about-clean-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.about-clean-image img {
  width: 100%;
  max-width: 370px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* CONTENT */
.about-clean-content {
  max-width: 520px;
}

.about-title {
  font-family: "Playball", cursive;
  font-size: 2.2rem;
  color: #5f6f56;
  margin-bottom: 20px;
}

.about-text {
  color: #7A6855;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* LIST */
.about-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  color: #7A6855;
}

.about-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #879076;
  font-weight: 600;
}

/* CTA */
.about-cta {
  display: inline-block;
  background: #879076;
  color: #fff;
  padding: 14px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(185,149,107,0.15);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .about-clean-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

 /* .about-clean-image {
    display: none;
  }*/

  .about-clean-content {
    margin: 0 auto;
  }

  .about-list {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 420px;
  }
}
@media (max-width: 768px) {

  .about-list {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
  }

  .about-list li {
    padding-left: 26px;   /* pipa + levegő */
    line-height: 1.5;
  }

  .about-list li::before {
    left: 6px;            /* nem lóg ki */
  }
}



/* ===== ADMIN LOGIN ===== */

.admin-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf9f6;
  padding: 20px;
  box-sizing: border-box;
}

/* CARD */
.admin-login-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* TITLE */
.admin-title {
  text-align: center;
  font-size: 1.8rem;
  color: #5f6f56;
  margin-bottom: 6px;
}

/* SUBTITLE */
.admin-subtitle {
  text-align: center;
  color: #879076;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* ALERTS */
.admin-alert {
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.admin-alert-success {
  background: #e6f0e8;
  color: #3f6f4f;
}

.admin-alert-error {
  background: #fdecea;
  color: #8a2c2c;
}

/* FORM */
.admin-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-form label {
  font-size: 0.85rem;
  color: #6f6f6f;
}

/* INPUTS */
.admin-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d8d8;
  font-size: 1rem;
  box-sizing: border-box;
}

.admin-form input:focus {
  outline: none;
  border-color: #879076;
  box-shadow: 0 0 0 2px rgba(135,144,118,0.15);
}

/* BUTTON */
.admin-btn {
  margin-top: 10px;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: #879076;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-btn:hover {
  background: #6f7f64;
  transform: translateY(-1px);
}

/* LINK */
.admin-link {
  color: #5f6f56;
  font-weight: 600;
  text-decoration: none;
}

/* MOBILE FINETUNE */
@media (max-width: 480px) {
  .admin-login-card {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .admin-title {
    font-size: 1.6rem;
  }
}
/* ===== ADMIN TOP BAR ===== */

.fixed_on_top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: #5f6f56;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.center_signo_admin {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.center_signo_admin a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* ===== HAMBURGER ===== */

.admin-hamburger {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 18px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.admin-hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ===== DESKTOP NAV ===== */

.admin-desktop-nav {
  margin-top: 56px;
  background: #879076;
}

.main_menu_admin {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main_menu_admin li a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.main_menu_admin li a:hover {
  background: rgba(255,255,255,0.15);
}

/* ===== OFFCANVAS MENU (MOBILE) ===== */

.admin-side-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100%;
  background: #ffffff;
  box-shadow: -2px 0 20px rgba(0,0,0,0.15);
  z-index: 2000;
  transition: right 0.3s ease;
  padding-top: 56px;
}

.admin-side-menu.active {
  right: 0;
}

/* OFFCANVAS HEADER */
.admin-offcanvas-header {
  position: absolute;
  top: 0;
  left: 0;
  height: 56px;
  width: 100%;
  background: #5f6f56;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.admin-offcanvas-title {
  font-weight: 600;
}

.admin-offcanvas-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* OFFCANVAS LIST */
.admin-side-menu ul {
  list-style: none;
  padding: 16px;
  margin: 0;
}

.admin-side-menu ul li a {
  display: block;
  padding: 12px 10px;
  color: #5f6f56;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
}

.admin-side-menu ul li a:hover {
  background: #f0f2ee;
}

.admin-side-menu ul li.danger a {
  color: #8a2c2c;
}

/* ===== ADMIN MAIN CONTENT ===== */

.admin-main {
  margin-top: 86px;
  padding: 20px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

  .admin-desktop-nav {
    display: none;
  }

  .admin-hamburger {
    display: flex;
  }

  .admin-main {
    margin-top: 66px;
  }
}
.admin-page {
  max-width: 1100px;
  margin: 0 auto;
}

.admin-page-title {
  margin-bottom: 20px;
}

/* TABLE */
.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
}

/* BUTTONS */
.admin-btn-sm {
  padding: 6px 12px;
  background: #879076;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
}

.admin-btn {
  margin-top: 16px;
  padding: 12px 26px;
  border-radius: 999px;
  border: none;
  background: #879076;
  color: #fff;
  font-weight: 600;
}

/* FORM */
.admin-form input,
.admin-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 14px;
}
.tox tox-tinymce{
	min-height:350px!important;
}
.service-short {
  white-space: pre-line;
}

/* MOBILE */
.mobile-only { display: none; }
.desktop-only { display: block; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }

  .admin-card {
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    margin-bottom: 14px;
  }

  .admin-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.admin-main{margin-top:100px;padding:20px}
.admin-page{max-width:1100px;margin:0 auto}
.admin-page-title{margin-bottom:20px}
.desktop-only{display:block}
.mobile-only{display:none}
.admin-table{width:100%;border-collapse:separate;border-spacing:0;background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 8px 24px rgba(0,0,0,0.06)}
.admin-table thead{background:#f4f6f1}
.admin-table th{padding:14px 16px;font-size:.9rem;font-weight:600;color:#5f6f56;text-align:left}
.admin-table td{padding:14px 16px;border-bottom:1px solid #e6e6e6;vertical-align:middle}
.admin-table tbody tr:hover{background:#f9faf7}
.td-center{text-align:center}
.inline-form{display:inline}
.admin-table input[type="checkbox"],
.admin-card input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #879076;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.admin-table input[type="checkbox"]:checked,
.admin-card input[type="checkbox"]:checked {
  background: #879076;
  border-color: #879076;
}

.admin-table input[type="checkbox"]:checked::after,
.admin-card input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: -2px;
  left: 3px;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.admin-btn-sm{padding:6px 14px;background:#879076;color:#fff;border-radius:999px;text-decoration:none;font-size:.8rem;transition:.2s}
.admin-btn-sm:hover{background:#6f7f66}
.service-short{white-space:pre-line;font-size:.9rem;color:#555}
.admin-card{background:#fff;padding:16px;border-radius:16px;box-shadow:0 6px 20px rgba(0,0,0,0.08);margin-bottom:14px}
.admin-card-meta{display:flex;justify-content:space-between;align-items:center;margin-top:10px}
@media(max-width:768px){
.desktop-only{display:none}
.mobile-only{display:block}
.admin-main{margin-top:60px!important;}
.admin-page-title{margin-top:20px!important;}
}
.admin-page-title {
  text-align: center;
}
.admin-delete-btn {
  font-size: 18px;
  color: #b35c5c;
  text-decoration: none;
}
.admin-delete-btn:hover {
  color: #8c2f2f;
}
.admin-edit-card{
  background:#ffffff;
  border-radius:24px;
  padding:32px 36px;
  max-width:980px;
  margin:0 auto 40px auto;
  box-shadow:0 12px 40px rgba(0,0,0,.06);
  border:1px solid #eceee8;
}

@media (max-width:768px){
  .admin-edit-card{
    padding:22px 18px;
    border-radius:18px;
  }
}
.icon-picker{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
  gap:14px;
  margin-bottom:24px
}

.icon-option{
  border:2px solid #e2e2e2;
  border-radius:16px;
  padding:14px 10px;
  text-align:center;
  cursor:pointer;
  background:#fff;
  transition:all .2s ease;
  position:relative
}

.icon-option i{
  font-size:22px;
  color:#879076;
  display:block;
  margin-bottom:6px
}

.icon-option span{
  font-size:.8rem;
  color:#5f6f56
}

.icon-option input{
  display:none
}

/* HOVER */
.icon-option:hover{
  border-color:#879076;
  background:#f4f6f2
}

/* ✅ AKTÍV / CHECKED */
.icon-option input:checked ~ i,
.icon-option input:checked ~ span{
  color:#3f4a37;
  font-weight:600
}

.icon-option input:checked ~ i{
  transform:scale(1.15)
}

.icon-option input:checked ~ span{
  font-weight:700
}

.icon-option input:checked ~ i::after{
  content:"✓";
  position:absolute;
  top:8px;
  right:10px;
  font-size:14px;
  color:#3f4a37;
  background:#e6eadf;
  border-radius:50%;
  width:20px;
  height:20px;
  display:flex;
  align-items:center;
  justify-content:center
}

/* KÁRTYA KIEMELÉS */
.icon-option input:checked{
  display:none
}

.icon-option input:checked ~ i,
.icon-option input:checked ~ span{
  pointer-events:none
}

.icon-option:has(input:checked){
  border-color:#879076;
  background:#f1f4ec;
}

.admin-switch{display:flex;align-items:center;gap:12px;font-weight:600;color:#4e5c44;margin:20px 0}
.admin-switch input{display:none}
.admin-switch span{width:42px;height:24px;background:#ccc;border-radius:999px;position:relative;transition:.3s;cursor:pointer}
.admin-switch span::before{content:"";width:18px;height:18px;background:#fff;border-radius:50%;position:absolute;top:3px;left:3px;transition:.3s}
.admin-switch input:checked + span{background:#879076}
.admin-switch input:checked + span::before{left:21px}
.admin-add-wrap{
  display:flex;
  justify-content:center;
  margin:28px 0 40px;
}

.inline-form{margin:0}
.inline-form input[type=checkbox]{
    width:18px;
    height:18px;
    accent-color:#879076;
    cursor:pointer;
}
/* ===== ADMIN GOMBOK HOVER FIX ===== */
.admin-btn,
.admin-btn-sm,
.admin-delete-btn,
.order-btn {
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

/* ZÖLD marad hoveren is */
.admin-btn:hover,
.admin-btn:focus,
.admin-btn:active,
.admin-btn-sm:hover,
.admin-btn-sm:focus,
.admin-btn-sm:active {
    background-color:#879076 !important;
    color:#ffffff !important;
    box-shadow:0 6px 18px rgba(135,144,118,.25);
    text-decoration:none;
}

/* MOZGATÁS NYILAK */
.order-btn:hover{
    color:#3f4a37 !important;
    background:transparent;
}

/* TÖRLÉS KUKA – PIROS HOVER */
.admin-delete-btn{
    font-size:18px;
    text-decoration:none;
}
.admin-delete-btn:hover{
    color:#c0392b !important;
}
/* ===== ADMIN DESKTOP MENU COMPACT ===== */

.admin-desktop-nav {
  width: 220px;
  padding-top: 60px;
}

.main_menu_admin {
  padding: 0;
  margin: 0;
}

.main_menu_admin li {
  margin: 0;
}
ul.main_menu_admin li {
  display: inline-block;
  margin-left: 0px!important;
  padding: 4px !important;
    padding-top: 4px;
  padding-top: 10px !important;;
}

.main_menu_admin li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.2;
}
/* ===== ADMIN DESKTOP MENU COMPACT ===== */

.admin-desktop-nav {
  width: 220px;
  padding-top: 60px;
}

.main_menu_admin {
  padding: 0;
  margin: 0;
}

.main_menu_admin li {
  margin: 0;
}

.main_menu_admin li a {
  display: block;
  padding: 4px 4px;
  font-size: 14px;
  line-height: 1.2;
}
/* ===== ADMIN MOBILE MENU COMPACT ===== */

.admin-side-menu {
  width: 240px;
  padding-top: 10px;
}

.admin-side-menu ul {
  padding: 0;
}

.admin-side-menu li a {
  padding: 10px 14px;
  font-size: 14px;
}


/* ===== MOBILE SLIDER CARDS ===== */

.mobile-only{display:none}
.desktop-only{display:block}

@media(max-width:768px){

  .desktop-only{display:none}
  .mobile-only{display:block}

  .admin-card{
    background:#fff;
    padding:16px;
    border-radius:16px;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    margin-bottom:16px
  }

  .admin-card-img img{
    width:100%;
    border-radius:12px;
    margin-bottom:12px
  }

  .admin-card h3{
    font-size:16px;
    margin-bottom:8px
  }

  .admin-card p{
    font-size:14px;
    margin-bottom:10px
  }

  .admin-card-meta{
    display:flex;
    justify-content:space-between;
    font-size:13px;
    color:#5f6f56;
    margin-bottom:10px
  }

  .admin-card-actions{
    display:flex;
    gap:10px;
    align-items:center;
    flex-wrap:wrap
  }
}
/* ===== MOBILE ADMIN CARDS ===== */

.mobile-only{display:none}
.desktop-only{display:block}

@media(max-width:768px){

  .desktop-only{display:none}
  .mobile-only{display:block}

  .admin-card{
    background:#fff;
    padding:16px;
    border-radius:16px;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    margin-bottom:16px
  }

  .admin-card h3{
    font-size:16px;
    margin-bottom:8px
  }

  .admin-card p{
    font-size:14px;
    margin-bottom:10px
  }

  .admin-card-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    color:#5f6f56;
    margin-bottom:10px
  }

  .admin-card-actions{
    display:flex;
    gap:10px;
    align-items:center;
    flex-wrap:wrap
  }
}
/* ===== MOBILE ADMIN CARDS ===== */

.mobile-only{display:none}
.desktop-only{display:block}

@media(max-width:768px){

  .desktop-only{display:none}
  .mobile-only{display:block}

  .admin-card{
    background:#fff;
    padding:16px;
    border-radius:16px;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    margin-bottom:16px
  }

  .admin-card h3{
    font-size:16px;
    margin-bottom:10px
  }

  .admin-card-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
    color:#5f6f56;
    margin-bottom:10px
  }

  .admin-card-actions{
    display:flex;
    gap:10px;
    align-items:center;
    flex-wrap:wrap
  }
}
.admin-card{
  background:#fff;
  border-radius:18px;
  padding:18px;
  margin-bottom:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.06)
}

.admin-card-title{
  margin:0 0 6px;
  font-size:1.05rem;
  color:#7a8a6a
}

.admin-card-text{
  margin:0 0 14px;
  font-size:.9rem;
  color:#5f6f56
}

/* ===== FOOTER ===== */
.admin-card-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap
}

/* BAL */
.admin-card-left{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:.85rem;
  color:#4e5c44
}

.admin-check{
  display:flex;
  align-items:center;
  gap:6px
}

.admin-order{
  opacity:.7
}

/* JOBB */
.admin-card-right{
  display:flex;
  align-items:center;
  gap:12px
}

.admin-move a{
  text-decoration:none;
  font-size:14px;
  color:#879076;
  margin:0 2px
}

.admin-move a:hover{color:#3f4a37}

.admin-btn-sm{
  padding:6px 14px;
  border-radius:999px;
  background:#879076;
  color:#fff;
  text-decoration:none;
  font-size:.8rem
}

.admin-btn-sm:hover{
  background:#6f7a60;
  color:#fff
}

.admin-delete-btn{
  color:#b94a48;
  font-size:18px
}

.admin-delete-btn:hover{
  color:#7a1f1d;
  transform:scale(1.15)
}
.admin-card-actions-right{
 float:right!important;
}
.response-wrapper {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fffaf6;
    padding: 20px;
}

.response-box {
    max-width: 520px;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.response-box h2 {
    margin-bottom: 15px;
    font-size: 26px;
}

.response-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b5a47;
}

.response-box.success h2 {
    color: #6f8f6a;
}

.response-box.error h2 {
    color: #b55b5b;
}

.btn-back {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    border-radius: 30px;
    background-color: #879076;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: #6f7e61;
    color: #fff;
}
