/*
 * ************************************************************
 * ************************************************************
 * ** Copyright (c) flavio.ferrara.it
 * ** All rights reserved.
 * **
 * ** Strict Proprietary Notice:
 * ** This website data, source code, and associated
 * ** assets are the exclusive property of flavio.ferrara.it.
 * ** Unauthorized copying, modification,
 * ** or distribution via any medium is strictly prohibited.
 * ************************************************************
 * ************************************************************
 */

/* ==========================
   LAYOUT / HEADER
========================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(255,255,255,0.97);
    backdrop-filter:blur(12px);
    border-bottom:1px solid var(--border);
    box-shadow:0 2px 10px rgba(15,23,42,0.05);
    transition:background 0.3s ease, box-shadow 0.3s ease;
}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:80px;
}

.logo{
    font-family:'Cormorant Garamond',serif;
    font-size:1.8rem;
    font-weight:700;
    color:var(--navy);
    z-index:1001;
}

.menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    width:44px;
    height:44px;
    background:none;
    border:none;
    cursor:pointer;
    z-index:1001;
}

.menu-toggle span{
    width:26px;
    height:2px;
    background:var(--navy);
    transition:0.3s ease;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}
