.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.hamburger {
    font-size: 1.9rem;
    cursor: pointer;
    color: #fff;
    background: none;
    border: none;
    padding: 8px 12px;
    margin: -8px 0;
}

.home-icon {
    font-size: 1.7rem;
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    display: none;           /* Hidden on desktop */
}

@media (max-width: 768px) {
    .home-icon {
        display: block;
    }
}

/* Image - Preserve original 2373:3053 portrait ratio on desktop */
img.main-photo {
    max-width: 100%;
    height: auto;           /* Critical: preserves aspect ratio */
    width: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Mobile portrait - limit height but keep ratio */
@media (max-width: 768px) {
    img.main-photo {
        max-height: 420px;   /* Adjust if needed */
        max-width: 100%;
        object-fit: contain;
    }
}