/*
 Theme Name: Twenty Twenty-Five Child (Minimal)
 Theme URI: https://example.com/
 Description: Minimal, update-proof child theme for Twenty Twenty-Five focused on custom code and clean CSS.
 Author: ChatGPT
 Version: 1.0.3
 Template: twentytwentyfive
 License: GPL-2.0-or-later
 Text Domain: twentytwentyfive-child-minimal
*/

/* =Header --------------------------- */
/* Initial header state */
header.wp-block-template-part {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
    background: white;
    padding:0;
}

/* Shrunk state when scrolling */
header.wp-block-template-part.scrolled {
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header.wp-block-template-part.scrolled .custom-logo-link img {
    max-width: 120px !important; /* Adjust this number to your preference */
    height: auto !important;
    transition: all 0.3s ease;
}