/*
Theme Name: Twenty Twenty-Five Child
Theme URI: https://example.com/
Description: Child theme for Twenty Twenty-Five (includes Rinnetal Home template).
Author: Bee1
Author URI: https://example.com/
Template: twentytwentyfive
Version: 1.0.0
Text Domain: twentytwentyfive-child
*/

/* Add your custom CSS below */

section#top .bc-hero-card {
 display:none;
}

/* ==========================================
   AI Gallery Lightbox - extra action icons
   (AI + Test) next to Close, same circle size
========================================== */

.bc-ai-lightbox__actions{
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 60;
}

/* close button moves into the flex row (override absolute positioning) */
.bc-ai-lightbox__actions .bc-ai-lightbox__close{
  position: static;
  top: auto;
  right: auto;
}

/* shared circle style (same size as close) */
.bc-ai-lightbox__icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  display: grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
}

.bc-ai-lightbox__icon:hover{
  background: rgba(255,255,255,1);
}

.bc-ai-lightbox__icon svg{
  width: 22px;
  height: 22px;
  fill: #111;
  display: block;
}

/* Tooltip */
.bc-ai-lightbox__icon[data-tooltip]{
  position: relative;
}

.bc-ai-lightbox__icon[data-tooltip]::after{
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  white-space: nowrap;
  background: #fff;
  color: #000;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.bc-ai-lightbox__icon[data-tooltip]:hover::after{
  opacity: 1;
  transform: translateY(0);
}

/* Mobile sizing to match your close button mobile rule */
@media (max-width: 768px){
  .bc-ai-lightbox__actions{
    top: 10px;
    right: 10px;
    gap: 8px;
  }
  .bc-ai-lightbox__icon{
    width: 42px;
    height: 42px;
  }
  .bc-ai-lightbox__icon svg{
    width: 20px;
    height: 20px;
  }
}


