/*
Theme Name: Passionelle
Description: Custom-coded theme for Passionelle, built step by step to replace the Elementor/OceanWP visual layer while keeping all WooCommerce data intact.
Author: Passionelle
Version: 0.1
Text Domain: passionelle
*/

* { box-sizing: border-box; }
body { margin: 0; }

#pass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    background-color: #000000;
    margin: 0;
    display: flex;
    align-items: flex-start;
    transition-property: height, background;
    transition-duration: 1s, 1s;
    transition-timing-function: ease-out, ease-out;
    transition-delay: 0s, 0s;
}

#pass-header.large {
    height: 180px;
}

#pass-header.small {
    height: 100px;
}

#pass-logo {
    display: inline-block;
}

#pass-header.large #pass-logo img {
    width: 300px;
    margin: 20px 0 10px 30px;
    height: auto;
}

#pass-header.small #pass-logo img {
    width: 140px;
    margin: 20px 0 10px 30px;
    height: auto;
}

#pass-logo img {
    transition-property: width, height;
    transition-duration: 1s, 1s;
    transition-timing-function: ease-out, ease-out;
    transition-delay: 0s, 0s;
}

/* body offset so fixed header doesn't overlap content */
body {
    padding-top: 180px;
    transition: padding-top 1s ease-out;
}
