/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Hw9aXp-p7K4GLvztg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Hw5aXp-p7K4GLs.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw9aXp-p7K4GLvztg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw5aXp-p7K4GLs.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w9aXp-p7K4GLvztg.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v31/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu173w5aXp-p7K4GLs.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  padding-top: 70px;
  font-family: "Montserrat", sans-serif;
}

ul, ol {
  list-style: none;
}
img {
	display: block;
	width: 100%;
    height: auto;  
}
a {
  text-decoration: none;
}

.nav-shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: white;
  box-shadow: 0 2px 8px 0 rgb(0 0 0 / 5%);
}
.navbar {
  background-color: #fff;
  /*position: sticky;
  top: 0;
  z-index: 999;*/
  max-width: 1200px;
  margin: auto;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
}

/* .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  flex-wrap: wrap;
  position: relative;
} */
.logo {
  z-index: 1002;
}
.logo img {
  width: 60px;
  height: 60px;
}
.logo-footer img {
	margin: 0 auto 20px;
	width: 60px;
	height: 60px;
}
.menu-toggle {
  display: none;
  position: relative;
  width: 28px;
  height: 20px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
}

.bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background-color: #333;
  transition: all 0.3s ease;
}


.bar:nth-child(1) { top: 0; }
.bar:nth-child(2) { top: 9px; }
.bar:nth-child(3) { bottom: 0; }


.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 9px; 
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0; 
}

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
  bottom: auto;
}

.main-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  position: relative;
  transform: none;
  white-space: nowrap;
}

/* .main-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
} */

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  display: block;
  padding: 15px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #444;
  letter-spacing: 0.3px;
}

.main-menu > li > a:hover {
	color: #000;
	/*border-bottom: 1px solid #c0272b;
    padding-bottom: 4px;*/
}
/*Original*/
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  margin: 0;
  padding: 0;
  width: 200px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}


.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  text-transform: capitalize;
  color: #000;
  letter-spacing: 1px;
}

.dropdown-menu li a:hover {
	color: #000;
  /*background-color: #555;*/
}

/*Original*/
.dropdown.open .dropdown-menu {
  max-height: 500px;
  opacity: 1;
  /*box-shadow: 0 1px 0 rgb(0 0 0);*/
  border-bottom: 1px solid #000;
}


.arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown.open .arrow {
  transform: rotate(180deg);
}
/*.btn-tel {
  padding: 10px 20px;
  border: 1px solid #c0272b;

  font-size: 14px;
  font-weight: 400;
  color: #c0272b;
 
  border-radius: 999px;
  transition: 0.3s ease;
  white-space: nowrap;
}*/
/*.tel-icon {
	display: none; 
}*/
/*.btn-tel:hover {
  color: #E70003;
  border: 1px solid #E70003;
  background-color: #E70003;
}*/

.main-menu > li > .dropdown-toggle {
  display: block;
  padding: 15px 20px;
  text-transform: uppercase;
  color: #444;
  letter-spacing: 0.3px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
 .dropdown {
  font-size: 12px;
  font-weight: 600;
}

.main-menu > li > .dropdown-toggle:hover {
  color: #000;
  /*border-bottom: 1px solid #c0272b;
    padding-bottom: 4px;*/
}

/*????????????????????????????????????????????????????*/
/*carousel-Start*/
.carousel {
  position: relative;
  /*margin-top: 70px;*/
  max-width: 100%;
  height: 80vh;
  /*height: 600px;*/
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
 /* bottom: 50px;
  left: 50px;*/
 /* background: rgba(0, 0, 0, 0.6);*/
  color: #fff;
  padding: 15px 25px;
  font-size: 1.8rem;
  border-radius: 8px;
  /*max-width: 80%;*/
  width: 90%;
  text-align: center;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
}
.caption h1 {
	font-size: 4rem;
	color: #fff;
	font-weight: 400;
	line-height: 1.2;
  margin: 0 0 20px;
  /*font-size: 2rem;*/
}
.caption .title-carousel {
  margin: 0 0 20px;
  font-weight: 400;
  line-height: 1.2;
  font-size: 4rem;
 }

.caption p {
  font-size: 1.375rem;
  margin: 0 0 15px;
  letter-spacing: 0.1px;
  font-weight: bold;
  color: #fff;
  /*font-size: 1.1rem;*/
}
.caption span {
  display: block;
  font-size: 1.375rem;
  margin: 0 0 15px;
  letter-spacing: 4px;
  /*font-weight: bold;*/
  text-transform: uppercase;
  color: #ff0025;
}
.caption h1,
.caption p {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
.btn {
  display: inline-block;
  background: #d1122e;
  color: white;
  padding: 0.75rem 4rem;
  margin-top: 10px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  border-radius: 999px;
  transition: background 0.3s ease;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.btn:hover {
  background: rgb(199 0 29);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;      
  gap: 10px;          
  margin-top: 2px;
}

.btn-border {
  display: inline-block;
  background: #fff;
  color: #d1122e;
  border: 1px solid #d1122e;
  padding: 0.5rem 2rem;
  margin-top: 10px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 1px 1px 2px rgb(0 0 0 / 20%);
}

.btn-border:hover {
  color: #fff;
  background: #d1122e;
}

/*.micro-spacer {
    height: 1.25rem;
}*/

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

/* Image */
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  height: auto;          
  width: auto;          
  object-fit: contain;   
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

/* Close button (thin X) */
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 1.5px;
  background: #fff;
  transform-origin: center;
  transition: 0.2s ease;
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox-close:hover::before,
.lightbox-close:hover::after {
  background: #d1122e;
}

/* Arrows (thin, elegant) */
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.lightbox-prev::before,
.lightbox-next::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform-origin: center;
  transition: 0.2s ease;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-prev::before {
  left: 14px;
  transform: translateY(-50%) rotate(-135deg);
}

.lightbox-next {
  right: 30px;
}

.lightbox-next::before {
  right: 14px;
  transform: translateY(-50%) rotate(45deg);
}

.lightbox-prev:hover::before,
.lightbox-next:hover::before {
  border-color: #d1122e;
}



.caption {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}


.carousel-slide.active .caption {
  opacity: 1;
}


.caption h1,
.caption .title-carousel,
.caption p,
.caption .btn {
  opacity: 0;
  /*transform: translateX(-10px);*/ 
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.carousel-slide.active .caption h1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.carousel-slide.active .caption .title-carousel {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.carousel-slide.active .caption p {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.carousel-slide.active .caption .btn {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

/*carousel-End*/

p {
    margin: 0;
    padding: 0 0 10px;
    font-size: 18px;
    font-weight: 300;
    word-spacing: 1px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    color: #585858;
}

.site-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 10px;
}

.footer-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  /*gap: 70px;*/
  /*gap: clamp(0.5rem, 2vw, 2rem);*/
  gap: clamp(1rem, 5vw, 5rem);
}

.footer-column {
  flex: 1 1 27%;
}

.footer-title {
  margin-bottom: 1em;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.footer-text {
	color: #ccc;
	font-size: 16px;
}

.footer-column ul {
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}


.footer-column.left {
  text-align: left;
}


.footer-column.center {
  text-align: center;
}


.footer-column.right {
  text-align: right;
}

.footer-copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
}

.footer-copyright p {
  font-size: 14px;
  color: #ccc;
}
   
::selection {
    background: #c0272b;
    color: rgb(255, 255, 255);
    text-shadow: none;
}

.applelinks a { 
  color: #ccc !important; 
  text-decoration: none; 
 }
 
b {
	font-weight: 600;
}
.my-tel-icon {
  display: none;  
  width: 22px;        
  height: 22px;
  object-fit: contain;  
}

.space {
    margin: 10px auto;
    height: 20px;
}
.space-small {
    margin: 10px auto;
    height: 10px;
}
.space-medium {
    margin: 10px auto;
    height: 30px;
}
.space-large {
    margin: 10px auto;
    height: 40px;
}
.space-larger {
    margin: 10px auto;
    height: 60px;
}
/*????????????????????????????????????????????????????*/

/*.separator-icon {
  text-align: center;
  margin: 40px 0;
  position: relative;
}

.separator-icon::before,
.separator-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ff0025;
}

.separator-icon::before {
  left: 0;
}

.separator-icon::after {
  right: 0;
}

.separator-icon span {
  padding: 0 15px;
  font-size: 20px;
  color: #ff0025;
}*/

.separator-double {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ff0025, transparent);
  margin: 40px 0;
}
.separator-double-small {
  width: 30%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ff0025, transparent);
  margin: 30px  auto;
}
/*.separator-text {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ff0025;
  color: #ff0025;
  line-height: 0.1em;
  margin: 40px 0;
}

.separator-text span {
  background: #fff;
  padding: 0 15px;
  font-size: 18px;
}

.separator {
  width: 100%;
  height: 1px;
  background: #ff0025;
  margin: 40px 0;
}*/


/*????????????????????????????????????????????????????*/

.image-section {
  position: relative;
  width: 100%;
  height: 50vh; 
  overflow: hidden;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55); 
  z-index: 1;
}


.image-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 90%;
  max-width: 800px;
  padding: 20px;
}

/*.image-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #fff;
}*/

.image-content p {
  font-size: 20px;
  margin-bottom: 25px;
  color: #fff;
}

/*.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn:hover {
  background: #f1f1f1;
}*/



/*.wrap-products {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}*/

/*.shadow-box {
  padding: 30px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}*/

.wrap-products {
  width: 100%;
  display: flex;
  justify-content: center;
}
.shadow-box {
  width: 90%;
  max-width: 1200px;
  padding: 30px 50px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
  box-sizing: border-box; 
}

.border {
	border-radius: 50px;
	border: 1px solid #d1122e;
}

.product-section {
  display: flex;
  gap: 40px;
  align-items: center;        
  justify-content: center;    
  width: 100%;
  padding: 40px 0;
  /*text-align: center;*/         
}

.product-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;       
  justify-content: center;
}

.product-image {
  max-width: 400px;
  border-radius: 12px;
}

.product-caption {
  margin-top: 15px;
  font-size: 16px;
  color: #555;
}
.product-caption span {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #d1122e;
  text-transform: uppercase;
}

.product-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  justify-content: center;
  text-align: left;
}

.product-right p {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #d1122e;
  text-transform: uppercase;
}

.spec-list {
  padding: 0;
  margin: 0;
  width: 100%; /* най-важното */ 
  /*padding-right: 50px;*/ /* ако искаш отстъп */ 
  /*box-sizing: border-box;*/
}

.spec-list li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.3;
  padding-bottom: 10px;
  color: #777;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.spec-list strong {
  color: #555;
}

.container-text {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 40px;
}
.pizza-academy {
  display: block;
  font-size: 1.375rem;
  margin: 0 0 5px;
  letter-spacing: 4px;
  /*font-weight: bold;*/
  text-transform: uppercase;
  color: #ff0025;
}
.text-center { 
text-align: center;
}
.title-large {
	font-size: 4rem;
	color: #fff;
	font-weight: 400;
	line-height: 1.2;
    margin: 0 0 15px;
}
.title-xl {
  font-size: clamp(1.3rem, calc(3vw + 1rem), 4rem);
  line-height:1.2;
  font-weight: 400;
  color: #777;
  margin-bottom: 10px;
}


.three-columns {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  width: 90%;
  max-width: 1230px;
  margin: 0 auto;
  /*padding: 20px;*/
}

.column {
  flex: 1;
  text-align: center;
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  color: inherit;
  transition: box-shadow 0.3s ease;
  box-shadow: none; /* ???? ????? ?? ???????????? */
  cursor: pointer;
}

.column:hover {
  box-shadow: 0 8px 20px rgb(0 0 0 / 10%);
}

.column img {
  border-radius: 15px;
  margin-bottom: 15px;
}

/*.column h3 {
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #d1122e;
  text-transform: uppercase;
}*/
.column-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding: 0;
  color: #d1122e;
  text-transform: uppercase;
 }
/*.column p {
  font-size: 0.95rem;
  color: #555;
}*/
.column-paragraph {
  font-size: 0.95rem;
  color: #555;
}
/* Image wrapper for overlay text */
.img-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

/* Image */
.img-wrapper img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

/* Centered text on image */
.img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 30px 40px;
  /*padding: 10px 15px;*/
  background: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
}


@media (max-width: 768px) {
  .three-columns {
    flex-direction: column;
    gap: 40px;
  }
}
.about-wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
 /* padding: 40px 20px;*/
}

.about-block {
  /*margin-bottom: 40px;*/
  overflow: hidden; 
}

.about-img {
  /*width: 400px;*/
  width: 40%;
  border-radius: 15px;
  margin: 0 30px 10px 0;
  float: left;
}

.about-img.right {
  float: right;
  margin: 0 0 10px 30px;
}

/*.about-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}*/

/* ? Mobile responsive */
@media (max-width: 768px) {
  .about-img,
  .about-img.right {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
    width: 100%;
  }

  .about-block p {
    text-align: center;
  }
}
/* ????????????? ??????? ???????????? */
.course-section {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  width: 100%;
  padding: 50px 0;
  position: relative;
}

/* ???? */
.course-date {
  position: absolute;
  top: -15px;
  left: 0;
  background: #d1122e;
  color: #fff;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  font-size: 1rem;
  /*font-weight: 600;
  text-transform: uppercase;*/
  letter-spacing: 0.5px;
}


.course-left {
  text-align: center;
}

.course-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 10px rgba(0,0,0,0.10);
}

.course-subtitle {
  margin-top: 12px;
  font-size: 1.3rem;
  font-weight: 400;
  color: #333;
}


.course-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.course-title {
    font-size: 1.6em;
    font-weight: 400;
    margin-bottom: 20px;
    color: #d1122e;
    text-transform: uppercase;
}
.course-paragraph {
	margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.3;
    padding-bottom: 10px;
    color: #333;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.course-paragraph span {
    font-size: 1.1rem;
	font-weight: 400;
}

.course-description {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Course details list */
.course-details {
  list-style: inside;
  margin: 0 0 20px 0;
}

.course-details li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 6px;
}

.course-details li strong {
  color: #555;
}


/* ????? ?? ??????? � ??? ???, ?????? ????? */
.course-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #d1122e;
  padding: 0.5rem 2rem;
  border-radius: 30px;
  border: 1px solid #d1122e;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 10px;
  width: auto;
  max-width: fit-content;

  /* ???? ????????? ???? ???? ????? */
  animation: pulseSoft 2.2s infinite ease-in-out;
}

/* Hover ????? */
.course-phone-btn:hover {
  background: #d1122e;
  color: #fff;
}

/* SVG ???????? � ??????? */
.phone-icon {
  width: 22px;
  height: 22px;
  fill: #d1122e;
  transition: fill 0.3s ease;
}

/* ??? hover ???????? ????? ???? */
.course-phone-btn:hover .phone-icon {
  fill: #fff;
}

/* ????? ???? ????????? � ??? ??????????? ?? ?????? */
@keyframes pulseSoft {
  0% {
    box-shadow: 0 0 0 0 rgba(209, 18, 46, 0.25);
  }
  50% {
    box-shadow: 0 0 12px 6px rgba(209, 18, 46, 0.18);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(209, 18, 46, 0.25);
  }
}



@media (max-width: 768px) {
  .course-section {
    grid-template-columns: 1fr;
	gap: 20px;
    text-align: center;
    padding: 30px 0;
  }

  .course-date {
	width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }

  .course-right {
    text-align: center;
  }

  .course-phone-btn {
    margin-left: auto;         
    margin-right: auto;      
  }
}

/* Circular call button */
.phone-circle-btn {
  width: 55px;
  height: 55px;
  background: #fff;
  border: 2px solid #d1122e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;

  /* Soft pulsing glow */
  animation: pulseCircle 2.2s infinite ease-in-out;

  /* Smooth hover transition */
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Phone icon inside the circle */
.phone-circle-icon {
  width: 26px;
  height: 26px;
  fill: #d1122e;
  transition: fill 0.3s ease;
}

/* Hover effect */
.phone-circle-btn:hover {
  background: #d1122e;
  transform: translateY(-2px);
}

.phone-circle-btn:hover .phone-circle-icon {
  fill: #fff;
}

/* Pulsing animation */
@keyframes pulseCircle {
  0% {
    box-shadow: 0 0 0 0 rgba(209, 18, 46, 0.25);
  }
  50% {
    box-shadow: 0 0 12px 6px rgba(209, 18, 46, 0.18);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(209, 18, 46, 0.25);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .phone-circle-btn {
    width: 50px;
    height: 50px;
  }
  .phone-circle-icon {
    width: 22px;
    height: 22px;
  }
}
/* Wrapper */
.order {
  padding: 5px 0;
  order: 3;
  z-index: 9999;
}

/* Desktop button (default) */
.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #d1122e;
  color: #d1122e;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;

  /* Soft pulse for desktop */
  animation: pulseSoft 2.2s infinite ease-in-out;
}

/* Desktop hover */
.btn-tel:hover {
  background: #d1122e;
  color: #fff;
}

.btn-tel:hover .tel-icon {
  fill: #fff;
}

/* Icon */
.tel-icon {
  width: 18px;
  height: 18px;
  fill: #d1122e;
  transition: fill 0.3s ease;
}

/* Soft pulse animation */
@keyframes pulseSoft {
  0% {
    box-shadow: 0 0 0 0 rgba(209, 18, 46, 0.25);
  }
  50% {
    box-shadow: 0 0 12px 6px rgba(209, 18, 46, 0.18);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(209, 18, 46, 0.25);
  }
}

/* ---------- MOBILE VERSION ---------- */
@media (max-width: 1200px) {

  /* Circular mobile button */
  .btn-tel {
    /*width: 55px;
    height: 55px;*/
	width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;

    /* Same soft pulse */
    animation: pulseSoft 2.2s infinite ease-in-out;
  }

  /* Hide text on mobile */
  .tel-text {
    display: none;
  }

  /* Icon stays visible */
  .tel-icon {
    width: 22px;
    height: 22px;
    fill: #d1122e;
  }
}

.map-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.10);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 350px;
  border: 0;
}
@media (max-width: 1200px) {
.map-container {
  width: 90%;
  box-shadow: 0 0 10px rgba(0,0,0,0.10);
	}
}
.contacts-paragraph {
	margin-bottom: 10px 0;
    font-size: 1rem;
    line-height: 1.3;
    padding-bottom: 10px;
    color: #333;
   /* border-bottom: 1px solid rgba(0,0,0,0.1);*/
}
.contacts-paragraph span {
    font-size: 1.1rem;
	font-weight: 400;
}

/*????????????????????????????????????????????????????*/
@media (max-width: 1600px) {
	.carousel {
    height: 70vh;
  }
}
@media (max-width: 1200px) {
  /*Original*/
  /*.main-menu {
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: margin-top 0.3s ease, max-height 0.6s ease, opacity 0.6s ease;
	pointer-events: none;
  }*/
 /*Original*/
 /* .main-menu.show {
	margin-top: 1rem;
    max-height: 500px;
    opacity: 1;
	pointer-events: auto;
  }*/
  body {
  padding-top: 60px;
}
  .main-menu {
    position: fixed;
    top: 0;
	left: 0;
    /*right: 0;*/
    height: 100vh;          
    width: 100%;             
    /*max-width: 320px;*/      
    background-color: #fff;
    flex-direction: column;
    padding-top: 100px;      
    transform: translateX(-100%); 
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
  }
 .main-menu.show {
    transform: translateX(0); 
  }
  .dropdown-menu {
    position: static;
    width: 100%;
  }
  
 /*Original*/
  /*.main-menu > li > a {
    padding: 12px 16px;
	text-align: right;
  }*/
 /*Original*/
  /*.dropdown-menu li a {
    text-align: right;
  }*/
  .main-menu > li > a,
  .dropdown-menu li a {
    /*padding: 15px 20px;*/
    text-align: center;
	font-size: 12px;
    /*border-bottom: 1px solid #eee;*/
  }
.dropdown {
	font-size: 12px;
}
  .menu-toggle {
    display: flex;
    /*margin-left: auto;*/
    z-index: 1003; 
	order: 1;
  }
  .logo {
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
	order: 2;
}
/*.btn-tel {
	padding: 7px 10px;
	border-radius: 50%;
}*/
/*.btn-tel {
	padding: 7px 10px;
  display: flex;
  align-items: center;  
  justify-content: center;
  gap: 6px;
  border-radius: 50%;
}*/

/*.order {
	padding: 5px 0;
	order: 3;
	z-index: 9999;
}*/
/*.tel-text {
    display: none;
  }*/
  /*.my-tel-icon {
    display: block; 
  }*/
  /*.tel-icon {
    display: inline-block;
    line-height: 1;        
    font-size: 28px; 
  }*/
  /*.nav-container {
    flex-direction: row;
    align-items: center;
  }*/
  
 .dropdown button {
	  margin: auto;
  /*margin-left: auto;*/ 
}
  .logo img {
	width: 45px;
    height: 45px;
  } 
}

@media (max-width: 768px) {
	.carousel {
    height: 90vh;
  }
  .caption h1 {
	font-size: 1.8rem;
	font-weight: 600;
}
.title-large {
	font-size: 1.8rem;
	font-weight: 600;
}
.caption .title-carousel {
	font-size: 1.8rem;
	font-weight: 600;
}
.image-section {
  height: 70vh; 
}
.product-section {
    flex-direction: column;
    text-align: center;
  }
.shadow-box {
  padding: 30px;
}
  .product-right {
    margin-top: 20px;
  }
  .about-wrap {
	  text-align: center;
}
.product-right p {
  font-size: 1.4rem;
}
  .footer-content {
    flex-direction: column;
    align-items: stretch;
	gap: 20px;
  }

  .footer-column {
    text-align: center;
    margin-bottom: 20px;
  }

}
@media (max-width: 320px) {
	.caption h1 {
	font-size: 1.8rem;
}
.caption .title-carousel {
  font-size: 1.8rem;
 }

.caption p {
  font-size: 1rem;
}
.caption span {
  font-size: 1rem;
}
	.image-section {
  height: 90vh; 
}
}
