@font-face {
    font-family: 'BodoniModa';
    src: url('../fonts/BodoniModaBold.eot');
    src: local('BodoniModaBold'), local(''),
         url('../fonts/BodoniModaBold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/BodoniModaBold.woff') format('woff'),
         url('../fonts/BodoniModaBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'coolvetica';
    src: url('../fonts/coolvetica.eot');
    src: local('coolvetica'), local(''),
         url('../fonts/coolvetica.eot?#iefix') format('embedded-opentype'),
         url('../fonts/coolvetica.woff') format('woff'),
         url('../fonts/coolvetica.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --accent-color: #CFAD65;
    --dark-color: #000000;
    --light-color: #f5f5f5;
    --second-color: #9d9881;
}




body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--light-color);
}
.jdh-container {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}

h1, h2, h3 {
  line-height: 120%;
  
}
h1 {
  font-size: 42px;
  font-family: "Segoe UI", sans-serif;
}
h2 {
  font-size: 32px;
  font-family: "Segoe UI", sans-serif;
  margin-bottom: 15px;
}
h3 {
  font-size: 24px;
  font-family: monospace;
  margin-bottom: 15px;
}


.jdh-button-glare {
  display: inline-block;
  padding: 14px 36px;
  font-weight: bold;
  font-size: 15px;
  color: #000;
  background: linear-gradient(145deg, #CFAD65, #e6c985);
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 0 20px rgba(207,173,101, 0.4);
  transition: transform 0.3s ease;
}

.jdh-button-glare:hover {
  transform: scale(1.05);
}

.jdh-button-glare::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
  transform: skewX(-25deg);
  animation: glare 2s infinite ease-in-out;
}

@keyframes glare {
  0% {
    left: -75%;
  }
  50% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}


@media (max-width: 768px) {
  .jdh-button-glare {
    padding: 12px 28px;
    font-size: 14px;
  }
}



@keyframes shimmerBg {
  0% { background-position: 0 0; }
  100% { background-position: 1000px 0; }
}

.jdh-shimmer-bg {
  background: url('') repeat;
  background-size: cover;
  animation: shimmerBg 20s linear infinite;
  opacity: 0.05; /* можешь изменить под контраст */
}







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

.jdh-fade-in-lux {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInLux 0.8s ease-out forwards;
}







.inner-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  color: #fff;
}
.inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.inner-hero__container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.inner-hero__title {
  font-size: 40px;
  font-family: 'Georgia', serif;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(0,0,0,0.4);
  margin-bottom: 15px;
}





.standard-page {
  padding: 80px 20px;
  background: #0a0a0a;
  color: var(--light-color);
}



.standard-content {
  font-size: 17px;
  line-height: 1.8;
  color: #ddd;
}

.standard-content h2, 
.standard-content h3 {
  color: var(--accent-color);
  margin-top: 40px;
}





.jdh-breadcrumbs {
  font-size: 14px;
  margin-bottom: 30px;
  color: #aaa;
  text-align: center;
}

.jdh-breadcrumbs a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.jdh-breadcrumbs a:hover {
  color: var(--accent-color);
}

.jdh-breadcrumbs .divider {
  margin: 0 5px;
  color: #666;
}

.jdh-breadcrumbs .current {
  color: #fff;
  font-weight: 500;
}

