/*
Theme Name: Blanc Pastry
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: A custom WordPress theme for Blanc Pastry Baking Studio
Version: 1.0
Text Domain: blanc-pastry
*/

:root {
    --primary: #273244;
    --secondary: #7a9980;
    --accent: rgba(255, 255, 255, 0.5);
    --dark: #3c2f2f;
    --light: #fff;
  }

  .custom-logo {
    max-height: 50px;
    width: auto;
    object-fit: cover;
  }

  .bg-primary {
    background-color: var(--primary) !important;
  }

  .bg-secondary {
    background-color: var(--secondary) !important;
  }

  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    padding-top: 34px;
    line-height: 1.5;
  }

  .navbar {
    background-color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
  }

  .navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
  }

  /* Mobile sidebar menu */
  .offcanvas {
    background-color: var(--light);
    width: 280px !important;
  }

  .offcanvas-header {
    background-color: var(--secondary);
    color: white;
    padding: 1.2rem 1.5rem;
  }

  .offcanvas-title {
    font-weight: 700;
    font-size: 1.4rem;
  }

  .offcanvas-body .nav-link {
    color: var(--dark);
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid rgba(125, 90, 80, 0.1);
    transition: all 0.3s;
  }

  .offcanvas-body .nav-link:hover {
    background-color: var(--primary);
    padding-left: 2rem;
  }

  .offcanvas-body .nav-link i {
    width: 25px;
    text-align: center;
    margin-right: 10px;
  }


  .feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .class-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .class-card:hover {
    transform: translateY(-10px);
  }

  .class-card .card-header {
    color: white;
    font-weight: bold;
    padding: 1.5rem;
    border: none;
  }

  .package-card {
    border: 2px solid var(--accent);
    border-radius: 15px;
    transition: all 0.3s;
  }

  .package-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .package-card .price {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.8rem;
  }

  .btn-primary {
    background-color: var(--secondary);
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    font-weight: 600;
  }

  .btn-primary:hover {
    background-color: #6b4c43;
  }

  .testimonial-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin: 1rem 0;
  }

  .testimonial-card .quote {
    font-style: italic;
    color: #555;
  }

  .contact-info {
    background-color: var(--primary);
    border-radius: 15px;
    padding: 2rem;
  }

  .social-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 0 10px;
    transition: color 0.3s;
  }

  .social-icon:hover {
    color: var(--dark);
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin: 2rem 0;
  }

  .product-item {
    height: 120px;
    border-radius: 10px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    padding: 10px;
  }

  .section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
  }

  .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
  }

  footer {
    background-color: var(--dark);
    color: white;
    padding-top: 2rem;
  }

  .nav-toggler {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
  }

  .b-0 {
  bottom : 0px;
  }
  .max-w-[500px] {
    max-width: 500px;
  }

  @media (max-width: 990px) {
    .navbar-brand {
      font-size: 1.2rem;
    }

    .offcanvas {
      width: 250px !important;
    }
    .nav-toggler{
      display: block !important;
    }
    .item-product{
      display: flex;
      justify-content: center;
    }
  }

  .nav-toggler{
    display: none;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  .nav-link {
    color: inherit !important;
    text-transform: uppercase;
    font-weight: 600;
  }

  .nav-link:hover {
    color: var(--secondary) !important;
  }

  .menu-mbl.nav-link:hover {
    color: var(--secondary) !important;
    transform: scale(1.1) !important;
  }

  .h-100vh {
    height: calc(100vh - 56px);
  }

  .hover-1 {
    transition: all 0.3s ease;
  }

  .hover-1:hover {
    transform: scale(1.1);
  }
  .card-thumb:hover img {
      z-index: 3 !important;
 }

 .sow-background-element{
    visibility: visible !important;
 }

.lp-archive-courses{
    min-height: 80vh;
}
.lp-section-instructor {
    display: none;
}

.lp-single-course-sidebar {
    display: none;
}

#whatsapp-float-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: transparent;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
  }

  #wa-chat-box {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    padding: 10px;
    z-index: 9998;
  }

  #wa-chat-box ul {
    max-height: 200px;
    overflow-y: auto;
    padding-left: 20px;
    margin-bottom: 10px;
    color: black;
    list-style: none;
  }

  #wa-send-btn {
    width: 100%;
    padding: 8px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
  }


    