/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Paragraph Margin Bottom Fix */

.elementor-widget-text-editor p:last-child{ 
	margin-bottom:0px;
} 

a {
	color: unset;
}

button:focus {
	background: #D4AF37;
}


/* Video Modal Acts Page */

#video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, .82);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#video-modal.is-open {
  display: flex;
}
#video-modal .video-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
#video-modal iframe,
#video-modal video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#video-modal .video-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 999;
}

#video-modal .video-close  svg { width: 16px; height: 16px; }

#video-modal .video-close:hover {
    background: rgba(255,255,255,0.22);
    transform: scale(1.1) rotate(90deg);
}


/* Audio Tracks CSS */

@media only screen and (max-width:767px) {
.audio-tracks .jet-listing-dynamic-repeater__item {
    width: 100%;
}

}

@media only screen and (min-width:768px) {
    .audio-tracks .jet-listing-dynamic-repeater__item {
        width: 50%;
    }
    .jet-listing-dynamic-repeater__items {
        flex-wrap: wrap;
    }
}


/* 1. Initialize the counter on the main container holding the items */
.jet-listing-grid__items {
    counter-reset: act-counter;
}

/* 2. Hide the hardcoded '01' text inside the paragraph */
.jet-listing-grid__item .act-number p {
    font-size: 0; /* Shrinks the original '01' to invisibility */
}

/* 3. Inject the auto-incrementing numbers */
.jet-listing-grid__item .act-number p::before {
    counter-increment: act-counter;
    content: counter(act-counter, decimal);
    
    /* 4. Restore font-size & styling so it displays correctly */
    font-size: 1rem; /* Adjust this to match your design's font size */
    /* Add any color, font-weight, or font-family here if needed */
}


.watchnow {
    cursor: pointer;
}


/* Border for weddings page */

.auraborder {
  background: linear-gradient( var(--angle), rgba(201,168,106,0.6), rgba(154,129,81,0.5), rgba(247,239,212,0.8), rgba(201,168,106,0.6), rgba(154,129,81,0.5), rgba(247,239,212,0.8) );
  border: 2px solid;
    border-image-outset: 0;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
  border-image: linear-gradient( var(--angle), #c9a86a, #9a8151, #f7efd4, #c9a86a, #9a8151, #f7efd4 ) 1;
  animation: 10s rotate linear infinite;
}

/* Img overlay for video fix */

.video-img .elementor-custom-embed-image-overlay {
    background-position: 10% 30% !important;
}