/* Custom styles for Cosmin Savu website */

/* Premium hamburger menu button styles */
.premium-menu-btn {
    padding: 0.5rem;
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.premium-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(34, 211, 238, 0.5);
    transform: translateY(-50%) translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.premium-menu-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.5);
}

.premium-menu-btn:active {
    transform: translateY(-50%);
}

.premium-menu-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
    stroke-width: 2;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-menu-btn:hover svg {
    color: #22d3ee;
    stroke-width: 2.5;
}

/* Logo positioning - left aligned and vertically centered */
.logo-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo-container a {
    display: block;
}

.logo-container img {
    display: block;
    vertical-align: top;
}

/* Navigation bar height adjustment - balanced thickness */
nav .flex.items-center {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    min-height: 4.5rem;
}

/* Adjust navigation offset to match new height */
.nav-offset {
    height: 4.5rem;
}