/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 5,700+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.11.9.1755435418
Updated: 2025-08-17 07:56:58

*/

/*-----------------------------------
General Classes
-----------------------------------*/
.griffin-max-600 {
    max-width: 600px;
}
.griffin-max-800 {
    max-width: 800px;
}
.griffin-margin-0 {
    margin: 0 !important;
}
.griffin-cursor-pointer * {
  cursor: default;
}
.griffin-padding-0 {
  padding: 0 !important;
}
.griffin-margin-0 {
  padding: 0 !important;
}
.griffin-display-none {
  display: none !important;
}
.griffin-border-radius-10 {
  border-radius: 10px;
  overflow: hidden;
}


/*-----------------------------------
My Brevo Styles
-----------------------------------*/
.griffin-brevo-footer-container p {
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 25px;
    font-size: 18px;
}
.griffin-brevo-footer-container input::placeholder {
    color: #8f8f8f;
}
.griffin-brevo-footer-container button:hover {
    background-color: #A87F1F !important;
}


/*-----------------------------------
Site Footer
-----------------------------------*/
/* Link color */
.site-below-footer-wrap a {
    color: #CDAA27;
    cursor: pointer;
}
.site-below-footer-wrap a:hover {
    color: #A87F1F;
}


/*-----------------------------------
Shiny button
-----------------------------------*/

.griffin-shiny-button .wp-block-button__link {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  font-weight: bold;
  text-align: center;
  color: #000;
  background-color: #CDAA27;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.3s ease; /* add transform transition */
}

.griffin-shiny-button .wp-block-button__link:hover {
  background-color: #A87F1F;
  transform: scale(1.05); /* subtle zoom in */
}

.griffin-shiny-button .wp-block-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  30% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}



/*-----------------------------------
Social icon over
-----------------------------------*/

.ahfb-svg-iconset svg path {
  transition: fill 0.3s ease;
}

.ahfb-svg-iconset:hover svg path {
  fill: #CDAA27;
}


/*-----------------------------------
Site title
-----------------------------------*/

/* Target Astra site title */
.site-title a {
    font-family: 'Cinzel', serif;
    letter-spacing: 1px; /* Optional spacing */
    text-transform: uppercase; /* Optional */
    color: gray !important;
}


/*-----------------------------------
WordPress table
-----------------------------------*/
/* Modern Table Styling – Clean Version */

.wp-block-table, table {
  width: 100%;
  border-collapse: collapse; /* collapses all borders into single lines */
  font-family: 'Arial', sans-serif; 
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
}

.wp-block-table th, table th {
  background-color: #f5f5f5;
  color: #333;
  text-align: left;
  padding: 12px 15px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  border-right: none; /* remove right border for header cells */
}

.wp-block-table td, table td {
  background-color: #fff;
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  border-right: none; /* remove right border for data cells */
  border-left: solid #eee;
  color: #333;
}

.wp-block-table tr:last-child td, table tr:last-child td {
  border-bottom: none; /* remove border on last row */
}

.wp-block-table tr:hover td, table tr:hover td {
  background-color: #f9f9f9; 
  transition: background-color 0.2s ease-in-out;
}

/* Remove any empty pseudo-elements added by WP blocks */
.wp-block-table tr:empty {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wp-block-table, table {
    font-size: 14px;
  }
  .wp-block-table th, table th,
  .wp-block-table td, table td {
    padding: 10px;
  }
}


/*-----------------------------------
Footer
-----------------------------------*/
/* Force veritcal middle alignment - surecart product pages were wonky */

/* Target the below-footer row specifically */
.site-below-footer-wrap.ast-builder-grid-row-container .ast-builder-grid-row-container-inner {
    display: flex !important;
    align-items: center !important; /* vertical centering */
    justify-content: space-between; /* keeps items spread out horizontally */
}

/* Optional: ensure each child takes up equal space */
.site-below-footer-wrap.ast-builder-grid-row-container .ast-builder-footer-grid-columns > div {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centers content within each column */
}


/*-----------------------------------
Override default Brevo scroll behavior
-----------------------------------*/
.sib-form-message-panel--active {
  scroll-behavior: auto !important;
}


/*-----------------------------------
Darken video
-----------------------------------*/
.vg-radial-darken {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Overlay for the radial darkening */
.vg-radial-darken::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    pointer-events: none; /* ✅ lets clicks through */
}

/* Ensure inner blocks appear above the overlay */
.vg-radial-darken .uagb-container-inner-blocks-wrap {
    position: relative;
    z-index: 2;
}


/*-----------------------------------
Account header link
-----------------------------------*/
.ast-header-account-link svg {
  transition: all 0.3s ease;
}
.ast-header-account-link:hover {
  transform: scale(1.15);
}