/*
Theme Name: Twenty Twenty-Five
Theme URI: https://wordpress.org/themes/twentytwentyfive/
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
Requires at least: 6.7
Tested up to: 6.8
Requires PHP: 7.2
Version: 1.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: 1px !important;
	text-underline-offset: .1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
	outline-width: 2px;
	outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
	margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
	outline-offset: 4px;
}

/* Stop the anajustable indentation meaning the text is out of line with the heading. Steve */
.wp-block-post-content.has-global-padding {
	padding-left: 0.5em;
	padding-right: 0.5em;
}
.fullwidthblock {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.padding, p.padding {
	padding-left: var(--wp--style--root--padding-left);
	padding-right: var(--wp--style--root--padding-right);
}
.bs { /*black shadow*/
    text-shadow: 2px 2px 3px #000;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
	text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
	display: block;
}

/* Custom added by Steve below */
#gutenslider-ux53bonfb {
    max-width: 104.95%; /* 104.95% for desktop */
}

@media only screen and (max-width: 600px) {
    #gutenslider-ux53bonfb {
            max-width: 108%;
            /* 10% for mobile */
    }
}

:root {
    --header-height: 100px; /* Default value */
    --footer-height: 180px;  
}
#vimeoembed2 { /*Using vimeoembed2 as alternative styling to vimeoembed */
    width: 100%;
    /* min-height: 500px; */
    height: calc(100vh - var(--header-height) - var(--footer-height) - 93px);
    /* Default height */
    
}
#vimeoembed {
    width: 100%;
    min-height: 6400px; /* Default height */
    overflow-y: visible;
}

/*This is for the wider part of 1 column of videos show */
@media (min-width: 600px) {
    #vimeoembed {
        min-height: 7850px;
    }
}
/*This is when 2 columns of videos show */
@media (min-width: 830px) {
    #vimeoembed {
        min-height: 3570px;
    }
}
/*This is when 3 columns of videos show */
@media (min-width: 1280px) {
    #vimeoembed {
        min-height: 2450px;
    }
}
/*This is when 3 wider columns of videos show */
@media (min-width: 1700px) {
    #vimeoembed {
        min-height: 1750px;
    }
}