/*
Theme Name: My Child
Theme URI: 
Author: Alexandre Albisser
Author URI: 
Description: 
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: twentytwentyfour
Text Domain: my-child
Tags: 
*/

html {
    scroll-behavior: smooth;
}

/* Sticky Header */
#site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -8px 27px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: top 0.8s ease, opacity 0.7s ease;
}

#site-header.hidden {
    top: -100px;
    /* Adjust the value as per your header height */
    opacity: 0;
}