
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
body{
    min-height: 200vh; 
    background: url('../img/DSC02974.JPG') no-repeat center/contain
}


.header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 4rem;
    background: var(--nav-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}


.logo{
    font-size: 1.6rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
}


.navbar{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar a{
    position: relative;
    font-size: 18px;
    color: var(--accent);
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
    padding: 6px 0;
    transition: color .25s ease;
}


.navbar a::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .28s cubic-bezier(.4,0,.2,1);
}

.navbar a:hover::before{
    width: 100%;
}

.navbar a.hover-pop:hover{
    transform: translateY(-4px) scale(1.03);
    color: var(--accent);
}

@media (max-width: 720px){
    .header{ padding: 16px 20px; }
    .logo{ font-size: 1.2rem; }
    .navbar a{ font-size: 16px; margin-left: 20px; }
}


:root{
    --nav-bg: rgba(0,0,0,0.6);
    --accent: #ffb400;
}