/* 
 Theme Name:   expert-bakers-shop-child
 Theme URI:    
 Description:  
 Author:       
 Author URI:   
 Template:     expert-bakers-shop
 Version:      1.0

 /* == Add your own styles below this line ==
--------------------------------------------*/
b, strong {
    font-weight: 700;
}
.main-navigation .menu {
    display: inline-block;

    position: relative;
    z-index: 999;
    padding: 0px 0px;
}
#site-navigation .menu ul li a {
    padding: 10px 8px;
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
    text-align: center;
}

.sidebar .widget {
    background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: none;
}


.headerbox{
  display: none;
}
.custom-section {
    margin-top: 60px;
  background-color: #FFF9EB;
  padding: 20px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.custom-section h2 {
  margin: 30px auto 20px auto;
  color: #222222;
  font-weight: bold;
  font-family: sans-serif;
  text-align: center;
  padding: 20px;
  background-color: #F5E2C8;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(160, 100, 40, 0.15);
  text-shadow: 1px 1px 2px rgba(255, 102, 0, 0.2);
  animation: fadeSlideIn 1s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.custom-section h2::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 4px;
  background: #94c0da;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.custom-section h3 {
  color: #4D2C17;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: 'Segoe UI', sans-serif;
  background-color: #F0D8B6;
  padding: 15px 20px;
  border-left: 6px solid #C38C5C;
  margin: 40px 0 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(140, 90, 30, 0.1);
  position: relative;
  animation: fadeSlideIn 1.2s ease-out;
}

/* Add a soft glow to h3 on hover */
.custom-section h3:hover {
  background-color: #E6C7A4;
  transform: translateY(-2px);
  transition: all 0.3s ease-in-out;
}

/* Keyframe animation */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



.styled-section {
    margin-top: 70px;
  background-color: #E6F3FA;
  padding: 60px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.styled-section:hover {
  background: linear-gradient(135deg, rgba(230, 243, 250, 1), rgba(214, 235, 245, 1));
}

.styled-section::before,
.styled-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.styled-section::before {
  width: 120px;
  height: 120px;
  top: -40px;
  left: -40px;
}

.styled-section::after {
  width: 100px;
  height: 100px;
  bottom: -30px;
  right: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

.styled-section h2 {
  margin: 40px 0 25px;
  color: #ffffff;
  background: linear-gradient(135deg, #5BBEFF, #006B9E);
  padding: 18px 25px;
  border-left: 8px solid #FFD166;
  border-radius: 12px 0 12px 0;
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  box-shadow: 0 6px 15px rgba(0, 107, 158, 0.3);
  position: relative;
  overflow: hidden;
  animation: h2Pop 0.7s ease forwards;
}

.styled-section h3 {
  margin: 30px 0 20px;
  color: #006B9E;
  background-color: #ffffff;
  border-left: 5px dashed #5BBEFF;
  padding: 15px 20px;
  border-radius: 8px;
  font-family: 'Verdana', sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(91, 190, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.styled-section h3:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(91, 190, 255, 0.3);
}

/* H2 animation */
@keyframes h2Pop {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}



.blue-box {
  background: linear-gradient(135deg, #E0F4FF, #C7E9F7);
  border-left: 6px solid #007BBA;
  border-radius: 12px;
  padding: 30px 25px;
  margin-top: 30px;
  box-shadow: 0 8px 20px rgba(0, 123, 186, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blue-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 123, 186, 0.25);
}

.blue-box h3 {
  color: #004E80;
  font-family: 'Segoe UI', sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.5);
}

.blue-box p {
  color: #222;
  line-height: 1.6;
  font-size: 16px;
}


.featuree {
  margin-top: 70px;
  background: url("/img/baile.jpg");
  background-position: center 94px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 30px;
  position: relative;
  display: block;
  overflow: hidden;
}

.featuree::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 35, 51, 0.062), rgba(0, 0, 0, 0.95));
  z-index: 0;
}

.featuree h2 {
  color: #5FD6FF;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  animation: fadeSlideDown 1s ease-out forwards;
}

.featuree h3 {
  color: #0771A5;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  border-left: 4px solid #0FA3BF;
  padding-left: 12px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 2px 2px 10px rgba(7, 113, 165, 0.3);
  animation: fadeSlideUp 1s ease-out forwards;
}

.featuree p {
  color: #C6F0FF;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  animation: fadeIn 1.2s ease-in;
  transition: color 0.3s ease;
}

.featuree p:hover {
  color: #ffffff;
}

.featuree ul {
  padding-left: 0;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.featuree ul li {
  list-style: none;
  color: #9CE2FF;
  font-size: 1.1rem;
  padding-left: 40px;
  margin-bottom: 15px;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}

.featuree ul li::before {
  content: "🔹";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1.3;
  transition: transform 0.3s ease;
}

.featuree ul li:hover {
  transform: translateX(6px);
  color: #FFFFFF;
}

.featuree ul li:hover::before {
  transform: scale(1.3);
  content: "💠";
  color: #5FD6FF;
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .featuree {
    padding: 60px 20px;
  }

  .featuree h2 {
    font-size: 2.2rem;
  }

  .featuree h3 {
    font-size: 1.4rem;
  }
}


.styled-title {
  margin-top: 60px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #044766, #0771A5);
  padding: 20px 30px;
  border-left: 8px solid #5FD6FF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 113, 165, 0.4);
  overflow: hidden;
  animation: fadeSlide 0.8s ease forwards;
}

.styled-title h2 {
  color: #ffffff;

}



/* Animations */
@keyframes shimmer {
  0% {
    right: -100px;
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    right: 100%;
    opacity: 0;
  }
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.dance-styles-section {
  margin: 60px auto;
  max-width: 900px;
  padding: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.dance-styles-section h2 {
  position: relative;
  color: #0771A5;
  font-size: 1.8rem;
  margin-top: 60px;
  padding-left: 60px;
  animation: slideIn 1s ease;
}

.dance-styles-section h2::before {
  content: "🕺";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2rem;
  animation: bounce 1.5s infinite;
}

.dance-styles-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  background: rgba(7, 113, 165, 0.08);
  padding: 15px 20px;
  border-left: 5px solid #0771A5;
  margin-top: 10px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(7, 113, 165, 0.15);
  animation: fadeIn 2s ease-in-out;
  transition: transform 0.3s ease;
}

.dance-styles-section p:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(7, 113, 165, 0.3);
}

/* Keyframe animations */
@keyframes slideIn {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive touch */
@media (max-width: 600px) {
  .dance-styles-section h2 {
    font-size: 1.4rem;
    padding-left: 45px;
  }

  .dance-styles-section h2::before {
    font-size: 1.6rem;
  }
}



/* Основна секция */
.sect-colorful {
  background: linear-gradient(135deg, #04577C, #0771A5);
  padding: 60px 20px;
  animation: fadeInBg 2s ease-in-out;
}

/* Заглавие */
.sect-heading {
  color: #ffffff;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
  animation: popIn 1s ease-out;
}

/* Карта */
.colorful-card {
  background-color: #0B3B61;
  border: 2px solid #0771A5;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 72, 128, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: slideUp 1.2s ease-in;
}

.colorful-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 72, 128, 0.5);
}

/* Тяло на картата */
.colorful-body {
  padding: 20px;
  background-color: #083552;
}

/* Заглавие в картата */
.colorful-title a {
  color: #6EC1E4;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.colorful-title a:hover {
  color: #ffffff;
}

/* Текст в картата */
.colorful-text {
  color: #dcefff;
  font-size: 1rem;
  line-height: 1.6;
}

/* Анимации */
@keyframes fadeInBg {
  from { opacity: 0; background-color: #021d30; }
  to { opacity: 1; background: linear-gradient(135deg, #04577C, #0771A5); }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

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