/*
Theme Name: Editorial Video Platform
Theme URI: https://matilda-effect.org
Author: Matilda Effect Team
Author URI: https://matilda-effect.org
Description: A cinematic editorial video platform theme for showcasing stories of brilliant women erased from history. Features full site editing, custom post types for video portraits, and a dramatic dark design with editorial typography.
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: editorial-video
Tags: full-site-editing, block-themes, custom-header, custom-menu, featured-images, footer-widgets, portfolio, blog, entertainment, education
*/

/* 
This theme uses Full Site Editing (FSE) and theme.json for styling.
All visual customization should be done through the Site Editor or theme.json.
*/

/* Additional global styles */
.font-editorial {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Smooth transitions */
* {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

/* Typography refinements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Image hover effects */
.wp-block-image img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-block-image:hover img {
    transform: scale(1.05);
}
