/* 
 Theme Name:   pet-child
 Theme URI:    
 Description:  
 Author:       
 Author URI:   
 Template:     pet-house
 Version:      1.0

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

h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
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;
}

section {
  margin: 30px 0;
}

ol,
ul {
  padding-left: 2rem !important;
}
body ul li {
  list-style: disc !important;
}
.blog-area {
  padding: 21px 0 !important;
}
.subhero {
  background: #f9fafb;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 15px;
}

.subhero p {
  margin: 0;
  padding: 0;
  color: #4c5057;
}
.heading {
  margin-bottom: 21px;
}
.heading h2 {
  display: inline-block;
  background: linear-gradient(135deg, #e63946, #457b9d);
  padding: 0.85rem 2rem;
  border-radius: 14px;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.heading p {
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}
.box {
  background: #ffffff;
  padding: 1rem 21px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 6px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
  height: 100%;
}

/* Red → Blue accent border */
.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(135deg, #e63946, #457b9d);
}

/* Heading inside box */
.box h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

/* Paragraph styling */
.box p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Hover effect */
.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.cust-bg {
  background: #ffffff;
  padding: 2rem 21px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}

/* Red → Blue gradient bar at top */
.cust-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  width: 100%;
  background: linear-gradient(135deg, #e63946, #457b9d);
}

.cust-bg h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.2rem;
}

.cust-bg p {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.cust-bg ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.cust-bg ul li {
  margin-bottom: 0.6rem;
  color: #374151;
  line-height: 1.6;
  font-size: 1rem;
  position: relative;
}

/* Custom bullet with softer red/blue tone */
.cust-bg ul li::marker {
  color: #e63946;
}
.flex-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  list-style-position: inside;
}
.title {
  font-weight: 800;
  color: #1e2835;
  text-align: left;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
  margin: 1rem 0 0.5rem;
}

/* Sleek red→blue underline aligned to the left */
.title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, #e63946, #457b9d);
  border-radius: 4px;
}
.bingos {
  background: #edecec;
  padding: 1.5rem 19px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  margin: 1rem 0;
}

/* Main H2 Title */
.bingos h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1e2835;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  position: relative;
  letter-spacing: 0.4px;
}

/* Red → Blue underline for H2 */
.bingos h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 160px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e63946, #457b9d);
}

/* Section description paragraph */
.bingos > p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 2rem;
}

/* Subheadings (H3) */
.bingos h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e3a5f; /* deep modern blue */
  margin-top: 0.8rem;
  margin-bottom: 0.4rem;
  position: relative;
  padding-left: 14px;
}

/* Thin red accent bar beside H3 */
.bingos h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: 70%;
  border-radius: 3px;
  background: #e63946;
}

/* Paragraphs under each subheading */
.bingos h3 + p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4b5563;
}
.faq-section .accordion-button {
  color: #8b0000;
  font-weight: 600;
}
.faq-section .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 26, 26, 0.25);
}
.breadcrumb-section {
  margin-top: 0 !important;
}
.logo-lucky {
  background: url("/wp-content/themes/pet-child/assets/images/lucky-pants.svg");
}
.bg-lucky {
  background-color: #fff;
}
.logo-betfred {
  background: url("/wp-content/themes/pet-child/assets/images/betfred.svg");
}
.bg-betfred {
  background-color: linear-gradient(to right, #dd1b3c, #044890);
}
.logo-mr-q {
  background: url("/wp-content/themes/pet-child/assets/images/mr-q.svg");
}
.bg-mr-q {
  background-color: #fff;
}
[class*="logo-"] {
  display: block;
  text-indent: -9999px;
  text-align: left;
  background-size: 80%;
  background-position: center center !important;
  background-repeat: no-repeat;
}
[class*="brand-"][class*="bg-"] {
  margin: 0 auto;
  padding: 5px;
  border-radius: 4px;
  width: 230px;
  height: 100px;
}
/* Section wrapper */
.operators {
    padding: 1rem 1rem;
    background: #ffffff;
}

/* Operator card */
.operator {
    background: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

/* Hover effect */
.operator:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* Logo holder */
.operator .brand-size {
    display: block;
    width: 200px;
    height: 85px;
    margin: 0 auto 1rem;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Operator name */
.operator h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f; /* modern deep blue */
    margin-top: 0.8rem;
}
.site-footer {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

/* Text */
.footer-text {
    color: #475569;
    font-size: 0.95rem;
}

/* Titles */
.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
}

.footer-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #e63946, #457b9d);
    border-radius: 3px;
    margin-top: 6px;
}

/* Links */
.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #e63946;
}

/* Newsletter */
.newsletter-form input {
    border-radius: 8px;
}

.footer-btn {
    background: linear-gradient(90deg, #e63946, #457b9d);
    color: #fff;
    border: none;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    transition: 0.3s;
}

.footer-btn:hover {
    opacity: 0.9;
}

/* Social icons */
.social-icons span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.6rem;
    transition: 0.3s;
    font-size: 1rem;
}

.social-icons span:hover {
    background: linear-gradient(90deg, #e63946, #457b9d);
    color: #fff;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #e2e8f0;
}

.footer-bottom p {
    color: #475569;
    font-size: 0.9rem;
}
