/* 
 Theme Name:   massage-parlor-child
 Theme URI:    
 Description:  
 Author:       
 Author URI:   
 Template:     massage-parlor
 Version:      1.0

 /* == Add your own styles below this line ==
--------------------------------------------*/







.header-image-box.header-image-box
 {
    background-image: url(/img/kaffe-bg.webp) !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    height: 250px;
    display: flex;
    align-items: center;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
.fancy-section {
    padding: 50px 20px;
    background: linear-gradient(145deg, #f7f4ef, #f1ece4);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(60, 50, 40, 0.08);
    font-family: "Georgia", serif;
    line-height: 1.8;
    color: #3e3a34;
    position: relative;
    animation: fadeSoft 1.2s ease forwards;
}
@keyframes fadeSoft {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fancy-section p {
    margin-bottom: 1.4em;
    font-size: 17px;
    color: #4a463f;
}
.fancy-section h2 {
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 600;
    position: relative;
    color: #5a4d3f;
    padding-left: 22px;
    letter-spacing: 0.5px;
}
.fancy-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    height: 70%;
    width: 6px;
    background: linear-gradient(to bottom, #b89b7a, #8c7358);
    border-radius: 4px;
    animation: accentGrow 0.8s ease forwards;
}
.fancy-section h2::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 22px;
    width: 60px;
    height: 2px;
    background: #c8b6a3;
    transition: width 0.4s ease;
}
.fancy-section h2:hover::after {
    width: 120px;
}
@keyframes accentGrow {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: 70%;
        opacity: 1;
    }
}
.fancy-section strong {
    color: #7a6248;
    font-weight: 600;
}
@media (max-width: 768px) {
    .fancy-section {
        padding: 35px 25px;
    }
    .fancy-section h2 {
        font-size: 22px;
    }
    .fancy-section p {
        font-size: 16px;
    }
}
.related-post {
    background: #f7f4ef;
    border-radius: 18px;
    padding: 40px;
}
.related-post h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #5a4d3f;
    position: relative;
    font-weight: 600;
}
.related-post h3::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #c8b6a3;
    position: absolute;
    bottom: -8px;
    left: 0;
}
.post-box {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(60, 50, 40, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}
.post-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(60, 50, 40, 0.12);
}
.post-title a {
    color: #4a463f;
    text-decoration: none;
    transition: color 0.3s ease;
}
.post-title a:hover {
    color: #8c7358;
}
.post-content {
    font-size: 15px;
    color: #6a645c;
    line-height: 1.6;
}
.slider-button a {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #8c7358;
    text-decoration: none;
    transition: all 0.3s ease;
}
.slider-button a:hover {
    color: #5a4d3f;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .related-post {
        padding: 25px;
    }
}
.section-two {
    background-color: #F5F3EE;
    padding: 60px 0;
}
.section-two .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.section-two .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}
.section-two .card img {
    object-fit: cover;
    height: 250px;
    transition: transform 0.4s ease;
}
.section-two .card:hover img {
    transform: scale(1.05);
}
.section-two .card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
}
.section-two .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.section-two .card-title a {
    text-decoration: none;
    color: #3F3F3F;
    transition: color 0.3s ease;
}
.section-two .card-title a:hover {
    color: #6E6A4B;
}
.section-two .card-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.section-two .read-more a {
    font-weight: 500;
    color: #6E6A4B;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.section-two .read-more a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -4px;
    background-color: #6E6A4B;
    transition: width 0.3s ease;
}
.section-two .read-more a:hover::after {
    width: 100%;
}
@media (max-width: 768px) {
    .section-two {
        padding: 40px 0;
    }
    .section-two .card-body {
        padding: 20px;
    }
}
.page-linking {
  background: #f8f7f2;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(77, 72, 44, 0.15);
  box-shadow: 0 8px 25px rgba(77, 72, 44, 0.08);
}
.page-linking h3 {
  color: #4D482C;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}
.page-linking h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #4D482C;
  margin-top: 8px;
  border-radius: 2px;
}
.linking-pages {
  list-style: none;
  padding: 0;
  margin: 0;
}
.linking-pages li {
  margin-bottom: 12px;
}
.linking-pages a {
  color: #4D482C;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  display: block;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.linking-pages a:hover {
  background: rgba(77, 72, 44, 0.1);
  padding-left: 16px;
}
.searchform input[type="search"] {
  width: 100%;
  padding: 12px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  outline: none;
}
.searchform input[type="search"]:focus {
  border-color: #4D482C;
}
