@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

/*body {*/
/*    background-color: skyblue;*/
/*}*/

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    padding-top: 25px;
    height: 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Audio control button styles */
#obra-hero-toggle {
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
}

#obra-hero-toggle:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translate(-50%, -50%) scale(1.05);
}

#obra-hero-toggle.button-active {
    background: var(--f7-theme-color, #007aff);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.4);
}

#obra-hero-toggle.button-active:hover {
    background: var(--f7-theme-color-shade, #0056d3);
}

/* Icon visibility classes */
.play-icon, .pause-icon {
    display: inline-block;
    line-height: 1;
    font-size: 1.5em;
}

.play-icon.hidden, .pause-icon.hidden {
    display: none !important;
}

/* Ensure icons are visible in button */
#obra-hero-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

#obra-hero-toggle .play-icon,
#obra-hero-toggle .pause-icon {
    color: white;
}

/* Specific centering for pause icon */
#obra-hero-toggle .pause-icon {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
}

/* Utility Classes */

.font-serif {
    font-family: Bricolage Grotesque, Georgia, Times New Roman, Times, serif;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-900 {
    font-weight: 900 !important;
}

.media-container {
    align-items: center;
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
    text-align: center;
}

.size-40 {
    height: 40px;
    width: 40px;
}

.size-64 {
    height: 64px;
    width: 64px;
}

.size-80 {
    height: 80px;
    width: 80px;
}

.mask {
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.mask-squircle {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMjAwJyBoZWlnaHQ9JzIwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBkPSdNMTAwIDBDMjAgMCAwIDIwIDAgMTAwczIwIDEwMCAxMDAgMTAwIDEwMC0yMCAxMDAtMTAwUzE4MCAwIDEwMCAwWicvPjwvc3ZnPg==);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMjAwJyBoZWlnaHQ9JzIwMCcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJz48cGF0aCBkPSdNMTAwIDBDMjAgMCAwIDIwIDAgMTAwczIwIDEwMCAxMDAgMTAwIDEwMC0yMCAxMDAtMTAwUzE4MCAwIDEwMCAwWicvPjwvc3ZnPg==);
}

.object-fit-cover {
    object-fit: cover;
}

.text-capitalize {
    text-transform: capitalize;
}

.font-style-normal {
    font-style: normal;
}

.white-space-normal {
    white-space: normal !important;
}

.multi-line-text {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    overflow: hidden !important;
    word-break: break-word !important;
}